diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index c10b09d0fa..0a6848a23f 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -98,4 +98,4 @@ runs: - name: Run invoke update if: ${{ inputs.update == 'true' }} shell: bash - run: invoke update --uv + run: invoke update --uv --skip-backup --skip-static diff --git a/.github/scripts/version_check.py b/.github/scripts/version_check.py index 68e2ff1e25..9e81d3885c 100644 --- a/.github/scripts/version_check.py +++ b/.github/scripts/version_check.py @@ -97,6 +97,9 @@ if __name__ == '__main__': ) text = version_file.read_text() results = re.findall(r"""INVENTREE_API_VERSION = (.*)""", text) + # If 2. args is true lower the version number by 1 + if len(sys.argv) > 2 and sys.argv[2] == 'true': + results[0] = str(int(results[0]) - 1) print(results[0]) exit(0) # GITHUB_REF_TYPE may be either 'branch' or 'tag' diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 25034a1413..858c3da60d 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -68,7 +68,7 @@ jobs: - name: Check out repo uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4.1.7 - name: Set Up Python ${{ env.python_version }} - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # pin@v5.1.0 + uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # pin@v5.1.1 with: python-version: ${{ env.python_version }} - name: Version Check @@ -124,10 +124,10 @@ jobs: rm -rf InvenTree/_testfolder - name: Set up QEMU if: github.event_name != 'pull_request' - uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # pin@v3.0.0 + uses: docker/setup-qemu-action@5927c834f5b4fdf503fca6f4c7eccda82949e1ee # pin@v3.1.0 - name: Set up Docker Buildx if: github.event_name != 'pull_request' - uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # pin@v3.3.0 + uses: docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4 # pin@v3.4.0 - name: Set up cosign if: github.event_name != 'pull_request' uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 # pin@v3.5.0 @@ -166,7 +166,7 @@ jobs: - name: Push Docker Images id: push-docker if: github.event_name != 'pull_request' - uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # pin@v6.1.0 + uses: docker/build-push-action@a254f8ca60a858f3136a2f1f23a60969f2c402dd # pin@v6.4.0 with: context: . file: ./contrib/container/Dockerfile diff --git a/.github/workflows/qc_checks.yaml b/.github/workflows/qc_checks.yaml index 43e0943bea..afbf24635e 100644 --- a/.github/workflows/qc_checks.yaml +++ b/.github/workflows/qc_checks.yaml @@ -94,7 +94,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4.1.7 - name: Set up Python ${{ env.python_version }} - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # pin@v5.1.0 + uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # pin@v5.1.1 with: python-version: ${{ env.python_version }} cache: "pip" @@ -115,7 +115,7 @@ jobs: - name: Checkout Code uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4.1.7 - name: Set up Python ${{ env.python_version }} - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # pin@v5.1.0 + uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # pin@v5.1.1 with: python-version: ${{ env.python_version }} - name: Check Config @@ -159,20 +159,32 @@ jobs: - name: Export API Documentation run: invoke schema --ignore-warnings --filename src/backend/InvenTree/schema.yml - name: Upload schema - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # pin@v4.3.3 + uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # pin@v4.3.4 with: name: schema.yml path: src/backend/InvenTree/schema.yml - name: Download public schema - if: needs.paths-filter.outputs.api == 'false' run: | pip install --require-hashes -r contrib/dev_reqs/requirements.txt >/dev/null 2>&1 - version="$(python3 .github/scripts/version_check.py only_version 2>&1)" + version="$(python3 .github/scripts/version_check.py only_version ${{ needs.paths-filter.outputs.api }} 2>&1)" echo "Version: $version" url="https://raw.githubusercontent.com/inventree/schema/main/export/${version}/api.yaml" echo "URL: $url" - curl -s -o api.yaml $url + code=$(curl -s -o api.yaml $url --write-out '%{http_code}' --silent) + if [ "$code" != "200" ]; then + exit 1 + fi echo "Downloaded api.yaml" + - name: Running OpenAPI Spec diff action + id: breaking_changes + uses: oasdiff/oasdiff-action/diff@main + with: + base: 'api.yaml' + revision: 'src/backend/InvenTree/schema.yml' + format: 'html' + - name: Echoing diff to step + run: echo "${{ steps.breaking_changes.outputs.diff }}" >> $GITHUB_STEP_SUMMARY + - name: Check for differences in API Schema if: needs.paths-filter.outputs.api == 'false' run: | @@ -200,11 +212,12 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + name: Checkout Code with: repository: inventree/schema token: ${{ secrets.SCHEMA_PAT }} - name: Download schema artifact - uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 + uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 with: name: schema.yml - name: Move schema to correct location @@ -213,8 +226,9 @@ jobs: mkdir export/${version} mv schema.yml export/${version}/api.yaml - uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5.0.1 + name: Commit schema changes with: - commit_message: "Update API schema for ${version}" + commit_message: "Update API schema for ${{ env.version }} / ${{ github.sha }}" python: name: Tests - inventree-python @@ -267,7 +281,8 @@ jobs: continue-on-error: true # continue if a step fails so that coverage gets pushed strategy: matrix: - python_version: [3.9, 3.12] + python_version: [3.9] + # python_version: [3.9, 3.12] # Disabled due to requirement issues env: INVENTREE_DB_NAME: ./inventree.sqlite @@ -520,7 +535,7 @@ jobs: - name: Run Playwright tests id: tests run: cd src/frontend && npx nyc playwright test - - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # pin@v4 + - uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # pin@v4 if: ${{ !cancelled() && steps.tests.outcome == 'failure' }} with: name: playwright-report @@ -556,7 +571,7 @@ jobs: run: | cd src/backend/InvenTree/web/static zip -r frontend-build.zip web/ web/.vite - - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # pin@v4.3.3 + - uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # pin@v4.3.4 with: name: frontend-build path: src/backend/InvenTree/web/static/web diff --git a/.github/workflows/scorecard.yaml b/.github/workflows/scorecard.yaml index 916a3b1bbe..d423f608c5 100644 --- a/.github/workflows/scorecard.yaml +++ b/.github/workflows/scorecard.yaml @@ -59,7 +59,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: "Upload artifact" - uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 + uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 with: name: SARIF file path: results.sarif @@ -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@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3.25.10 + uses: github/codeql-action/upload-sarif@4fa2a7953630fd2f3fb380f21be14ede0169dd4f # v3.25.12 with: sarif_file: results.sarif diff --git a/.pkgr.yml b/.pkgr.yml index 88f27034a5..4ddf0a86f5 100644 --- a/.pkgr.yml +++ b/.pkgr.yml @@ -14,6 +14,7 @@ env: - INVENTREE_BACKUP_DIR=/opt/inventree/backup - INVENTREE_PLUGIN_FILE=/opt/inventree/plugins.txt - INVENTREE_CONFIG_FILE=/opt/inventree/config.yaml +before_install: contrib/packager.io/preinstall.sh after_install: contrib/packager.io/postinstall.sh before: - contrib/packager.io/before.sh diff --git a/README.md b/README.md index f329c20758..3f6b0dd27c 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ InvenTree is designed to be **extensible**, and provides multiple options for **
  • Django
  • DRF
  • Django Q
  • -
  • Django-Allauth
  • +
  • Django-Allauth
  • diff --git a/contrib/container/requirements.txt b/contrib/container/requirements.txt index b5956e2763..3fff5044df 100644 --- a/contrib/container/requirements.txt +++ b/contrib/container/requirements.txt @@ -4,9 +4,9 @@ asgiref==3.8.1 \ --hash=sha256:3e1e3ecc849832fe52ccf2cb6686b7a55f82bb1d6aee72a58826471390335e47 \ --hash=sha256:c343bd80a0bec947a9860adb4c432ffa7db769836c64238fc34bdc3fec84d590 # via django -django==4.2.11 \ - --hash=sha256:6e6ff3db2d8dd0c986b4eec8554c8e4f919b5c1ff62a5b4390c17aff2ed6e5c4 \ - --hash=sha256:ddc24a0a8280a0430baa37aff11f28574720af05888c62b7cfe71d219f4599d3 +django==4.2.14 \ + --hash=sha256:3ec32bc2c616ab02834b9cac93143a7dc1cdcd5b822d78ac95fc20a38c534240 \ + --hash=sha256:fc6919875a6226c7ffcae1a7d51e0f2ceaf6f160393180818f6c95f51b1e7b96 # via django-auth-ldap django-auth-ldap==4.8.0 \ --hash=sha256:4b4b944f3c28bce362f33fb6e8db68429ed8fd8f12f0c0c4b1a4344a7ef225ce \ @@ -184,9 +184,9 @@ pyyaml==6.0.1 \ --hash=sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585 \ --hash=sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d \ --hash=sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f -setuptools==69.5.1 \ - --hash=sha256:6c1fccdac05a97e598fb0ae3bbed5904ccb317337a51139dcd51453611bbb987 \ - --hash=sha256:c636ac361bc47580504644275c9ad802c50415c7522212252c033bd15f301f32 +setuptools==70.3.0 \ + --hash=sha256:f171bab1dfbc86b132997f26a119f6056a57950d058587841a0082e8830f9dc5 \ + --hash=sha256:fe384da74336c398e0d956d1cae0669bc02eed936cdb1d49b57de1990dc11ffc sqlparse==0.5.0 \ --hash=sha256:714d0a4932c059d16189f58ef5411ec2287a4360f17cdd0edd2d09d4c5087c93 \ --hash=sha256:c204494cd97479d0e39f28c93d46c0b2d5959c7b9ab904762ea6c7af211c8663 diff --git a/contrib/dev_reqs/requirements.txt b/contrib/dev_reqs/requirements.txt index f578fd1882..8a0299a351 100644 --- a/contrib/dev_reqs/requirements.txt +++ b/contrib/dev_reqs/requirements.txt @@ -1,8 +1,8 @@ # This file was autogenerated by uv via the following command: # uv pip compile contrib/dev_reqs/requirements.in -o contrib/dev_reqs/requirements.txt -certifi==2024.2.2 \ - --hash=sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f \ - --hash=sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1 +certifi==2024.7.4 \ + --hash=sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b \ + --hash=sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90 # via requests charset-normalizer==3.3.2 \ --hash=sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027 \ diff --git a/contrib/packager.io/functions.sh b/contrib/packager.io/functions.sh index 9149754a66..9087e1e0aa 100755 --- a/contrib/packager.io/functions.sh +++ b/contrib/packager.io/functions.sh @@ -4,6 +4,8 @@ # Color_Off='\033[0m' On_Red='\033[41m' +PYTHON_FROM=9 +PYTHON_TO=12 function detect_docker() { if [ -n "$(grep docker

    A Part is defined in the system by the following parameters: @@ -38,7 +37,7 @@ A Part is defined in the system by the following parameters: **Description** - Longer form text field describing the Part -**Revision** - An optional revision code denoting the particular version for the part. Used when there are multiple revisions of the same master part object. +**Revision** - An optional revision code denoting the particular version for the part. Used when there are multiple revisions of the same master part object. Read [more about part revisions here](./revision.md). **Keywords** - Optional few words to describe the part and make the part search more efficient. @@ -62,7 +61,7 @@ Parts can have multiple defined parameters. If a part is a *Template Part* then the *Variants* tab will be visible. -[Read about Part templates](./template.md) +[Read about Part templates and variants](./template.md) ### Stock diff --git a/docs/docs/settings/SSO.md b/docs/docs/settings/SSO.md index 351c594b5f..2832ba1950 100644 --- a/docs/docs/settings/SSO.md +++ b/docs/docs/settings/SSO.md @@ -4,13 +4,13 @@ title: InvenTree Single Sign On ## Single Sign On -InvenTree provides the possibility to use 3rd party services to authenticate users. This functionality makes use of [django-allauth](https://django-allauth.readthedocs.io/en/latest/) and supports a wide array of OpenID and OAuth [providers](https://django-allauth.readthedocs.io/en/latest/socialaccount/providers/index.html). +InvenTree provides the possibility to use 3rd party services to authenticate users. This functionality makes use of [django-allauth](https://docs.allauth.org/en/latest/) and supports a wide array of OpenID and OAuth [providers](https://docs.allauth.org/en/latest/socialaccount/providers/index.html). !!! tip "Provider Documentation" - There are a lot of technical considerations when configuring a particular SSO provider. A good starting point is the [django-allauth documentation](https://django-allauth.readthedocs.io/en/latest/socialaccount/providers/index.html) + There are a lot of technical considerations when configuring a particular SSO provider. A good starting point is the [django-allauth documentation](https://docs.allauth.org/en/latest/socialaccount/providers/index.html) !!! warning "Advanced Users" - The SSO functionality provided by django-allauth is powerful, but can prove challenging to configure. Please ensure that you understand the implications of enabling SSO for your InvenTree instance. Specific technical details of each available SSO provider are beyond the scope of this documentation - please refer to the [django-allauth documentation](https://django-allauth.readthedocs.io/en/latest/socialaccount/providers/index.html) for more information. + The SSO functionality provided by django-allauth is powerful, but can prove challenging to configure. Please ensure that you understand the implications of enabling SSO for your InvenTree instance. Specific technical details of each available SSO provider are beyond the scope of this documentation - please refer to the [django-allauth documentation](https://docs.allauth.org/en/latest/socialaccount/providers/index.html) for more information. ## SSO Configuration @@ -31,8 +31,8 @@ There are two variables in the configuration file which define the operation of | Environment Variable |Configuration File | Description | More Info | | --- | --- | --- | --- | -| INVENTREE_SOCIAL_BACKENDS | `social_backends` | A *list* of provider backends enabled for the InvenTree instance | [django-allauth docs](https://django-allauth.readthedocs.io/en/latest/installation/quickstart.html) | -| INVENTREE_SOCIAL_PROVIDERS | `social_providers` | A *dict* of settings specific to the installed providers | [provider documentation](https://django-allauth.readthedocs.io/en/latest/socialaccount/providers/index.html) | +| INVENTREE_SOCIAL_BACKENDS | `social_backends` | A *list* of provider backends enabled for the InvenTree instance | [django-allauth docs](https://docs.allauth.org/en/latest/installation/quickstart.html) | +| INVENTREE_SOCIAL_PROVIDERS | `social_providers` | A *dict* of settings specific to the installed providers | [provider documentation](https://docs.allauth.org/en/latest/socialaccount/providers/index.html) | In the example below, SSO provider modules are activated for *google*, *github* and *microsoft*. Specific configuration options are specified for the *microsoft* provider module: @@ -44,7 +44,7 @@ In the example below, SSO provider modules are activated for *google*, *github* Note that the provider modules specified in `social_backends` must be prefixed with `allauth.socialaccounts.providers` !!! warning "Provider Documentation" - We do not provide any specific documentation for each provider module. Please refer to the [django-allauth documentation](https://django-allauth.readthedocs.io/en/latest/socialaccount/providers/index.html) for more information. + We do not provide any specific documentation for each provider module. Please refer to the [django-allauth documentation](https://docs.allauth.org/en/latest/socialaccount/providers/index.html) for more information. !!! tip "Restart Server" As the [configuration file](../start/config.md) is only read when the server is launched, ensure you restart the server after editing the file. @@ -57,7 +57,7 @@ The next step is to create an external authentication app with your provider of The provider application will be created as part of your SSO provider setup. This is *not* the same as the *SocialApp* entry in the InvenTree admin interface. !!! info "Read the Documentation" - The [django-allauth documentation](https://django-allauth.readthedocs.io/en/latest/socialaccount/providers/index.html) is a good starting point here. There are also a number of good tutorials online (at least for the major supported SSO providers). + The [django-allauth documentation](https://docs.allauth.org/en/latest/socialaccount/providers/index.html) is a good starting point here. There are also a number of good tutorials online (at least for the major supported SSO providers). In general, the external app will generate a *key* and *secret* pair - although different terminology may be used, depending on the provider. @@ -132,6 +132,31 @@ In the [settings screen](./global.md), navigate to the *Login Settings* panel. H Note that [email settings](./email.md) must be correctly configured before SSO will be activated. Ensure that your email setup is correctly configured and operational. +## SSO Group Sync Configuration + +InvenTree has the ability to synchronize groups assigned to each user directly from the IdP. To enable this feature, navigate to the *Login Settings* panel in the [settings screen](./global.md) first. Here, the following options are available: + +| Setting | Description | +| --- | --- | +| Enable SSO group sync | Enable synchronizing InvenTree groups with groups provided by the IdP | +| SSO group key | The name of the claim containing all groups, e.g. `groups` or `roles` | +| SSO group map | A mapping from SSO groups to InvenTree groups as JSON, e.g. `{"/inventree/admins": "admin"}`. If the mapped group does not exist once a user signs up, a new group without assigned permissions will be created. | +| Remove groups outside of SSO | Whether groups should be removed from the user if they are not present in the IdP data | + +!!! warning "Remove groups outside of SSO" + Disabling this feature might cause security issues as groups that are removed in the IdP will stay assigned in InvenTree + +### Keycloak OIDC example configuration + +!!! tip "Configuration for different IdPs" + The main challenge in enabling the SSO group sync feature is for the SSO admin to configure the IdP such that the groups are correctly represented in in the Django allauth `extra_data` attribute. The SSO group sync feature has been developed and tested using integrated Keycloak users/groups and OIDC. If you are utilizing this feature using another IdP, kindly consider documenting your configuration steps as well. + +Keycloak groups are not sent to the OIDC client by default. To enable such functionality, create a new client scope named `groups` in the Keycloak admin console. For this scope, add a new mapper ('By Configuration') and select 'Group Membership'. Give it a descriptive name and set the token claim name to `groups`. + +For each OIDC client that relies on those group, explicitly add the `groups` scope to client scopes. The groups will now be sent to client upon request. + +**Note:** A group named `foo` will be displayed as `/foo`. For this reason, the example above recommends using group names like `appname/rolename` which will be sent to the client as `/appname/rolename`. + ## Security Considerations You should use SSL for your website if you want to use this feature. Also set your callback-endpoints to `https://` addresses to reduce the risk of leaking user's tokens. diff --git a/docs/docs/settings/global.md b/docs/docs/settings/global.md index ae5107ca89..967651e46d 100644 --- a/docs/docs/settings/global.md +++ b/docs/docs/settings/global.md @@ -37,6 +37,10 @@ Change how logins, password-forgot, signups are handled. | Enable registration | Boolean | Enable self-registration for users on the login-pages | False | | Enable SSO | Boolean | Enable SSO on the login-pages | False | | Enable SSO registration | Boolean | Enable self-registration for users via SSO on the login-pages | False | +| Enable SSO group sync | Boolean | Enable synchronizing InvenTree groups directly from the IdP | False | +| SSO group key | String | The name of the groups claim attribute provided by the IdP | | +| SSO group map | String (JSON) | A mapping from SSO groups to local InvenTree groups | {} | +| Remove groups outside of SSO | Boolean | Whether groups assigned to the user should be removed if they are not backend by the IdP. Disabling this setting might cause security issues | True | | Enable password forgot | Boolean | Enable password forgot function on the login-pages.

    This will let users reset their passwords on their own. For this feature to work you need to configure E-mail | True | | E-Mail required | Boolean | Require user to supply e-mail on signup.

    Without a way (e-mail) to contact the user notifications and security features might not work! | False | | Enforce MFA | Boolean | Users must use multifactor security.

    This forces each user to setup MFA and use it on each authentication | False | diff --git a/docs/docs/stock/stock.md b/docs/docs/stock/stock.md index 4c6605e2c7..8e9690b5ec 100644 --- a/docs/docs/stock/stock.md +++ b/docs/docs/stock/stock.md @@ -6,6 +6,10 @@ title: Stock A stock location represents a physical real-world location where *Stock Items* are stored. Locations are arranged in a cascading manner and each location may contain multiple sub-locations, or stock, or both. +## Stock Location Type + +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. + ## Stock Item A *Stock Item* is an actual instance of a [*Part*](../part/part.md) item. It represents a physical quantity of the *Part* in a specific location. diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 14c8ddd832..75974387d7 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -106,6 +106,7 @@ nav: - 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 - Pricing: part/pricing.md diff --git a/docs/requirements.txt b/docs/requirements.txt index fb82e79b30..c4408b8252 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -14,9 +14,9 @@ bracex==2.4 \ --hash=sha256:a27eaf1df42cf561fed58b7a8f3fdf129d1ea16a81e1fadd1d17989bc6384beb \ --hash=sha256:efdc71eff95eaff5e0f8cfebe7d01adf2c8637c8c92edaf63ef348c241a82418 # via wcmatch -certifi==2024.2.2 \ - --hash=sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f \ - --hash=sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1 +certifi==2024.7.4 \ + --hash=sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b \ + --hash=sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90 # via # httpcore # httpx @@ -173,9 +173,9 @@ idna==3.7 \ # anyio # httpx # requests -importlib-metadata==7.1.0 \ - --hash=sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570 \ - --hash=sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2 +importlib-metadata==8.0.0 \ + --hash=sha256:15584cf2b1bf449d98ff8a6ff1abef57bf20f3ac6454f431736cd3e660921b2f \ + --hash=sha256:188bd24e4c346d3f0a933f275c2fec67050326a856b9a359881d7c2a697e8812 # via # markdown # mkdocs @@ -539,15 +539,15 @@ termcolor==2.4.0 \ --hash=sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63 \ --hash=sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a # via mkdocs-macros-plugin -typing-extensions==4.11.0 \ - --hash=sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0 \ - --hash=sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a +typing-extensions==4.12.2 \ + --hash=sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d \ + --hash=sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8 # via # anyio # mkdocstrings -urllib3==2.2.1 \ - --hash=sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d \ - --hash=sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19 +urllib3==2.2.2 \ + --hash=sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472 \ + --hash=sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168 # via requests watchdog==4.0.0 \ --hash=sha256:11e12fafb13372e18ca1bbf12d50f593e7280646687463dd47730fd4f4d5d257 \ @@ -584,7 +584,7 @@ wcmatch==8.5.2 \ --hash=sha256:17d3ad3758f9d0b5b4dedc770b65420d4dac62e680229c287bf24c9db856a478 \ --hash=sha256:a70222b86dea82fb382dd87b73278c10756c138bd6f8f714e2183128887b9eb2 # via mkdocs-include-markdown-plugin -zipp==3.18.2 \ - --hash=sha256:6278d9ddbcfb1f1089a88fde84481528b07b0e10474e09dcfe53dad4069fa059 \ - --hash=sha256:dce197b859eb796242b0622af1b8beb0a722d52aa2f57133ead08edd5bf5374e +zipp==3.19.2 \ + --hash=sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19 \ + --hash=sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c # via importlib-metadata diff --git a/src/backend/InvenTree/InvenTree/api.py b/src/backend/InvenTree/InvenTree/api.py index dd5bca8243..cba3727c9e 100644 --- a/src/backend/InvenTree/InvenTree/api.py +++ b/src/backend/InvenTree/InvenTree/api.py @@ -311,8 +311,26 @@ class BulkDeleteMixin: - Speed (single API call and DB query) """ + def validate_delete(self, queryset, request) -> None: + """Perform validation right before deletion. + + Arguments: + queryset: The queryset to be deleted + request: The request object + + Returns: + None + + Raises: + ValidationError: If the deletion should not proceed + """ + pass + def filter_delete_queryset(self, queryset, request): - """Provide custom filtering for the queryset *before* it is deleted.""" + """Provide custom filtering for the queryset *before* it is deleted. + + The default implementation does nothing, just returns the queryset. + """ return queryset def delete(self, request, *args, **kwargs): @@ -371,6 +389,9 @@ class BulkDeleteMixin: if filters: queryset = queryset.filter(**filters) + # Run a final validation step (should raise an error if the deletion should not proceed) + self.validate_delete(queryset, request) + n_deleted = queryset.count() queryset.delete() @@ -383,42 +404,6 @@ class ListCreateDestroyAPIView(BulkDeleteMixin, ListCreateAPI): ... -class APIDownloadMixin: - """Mixin for enabling a LIST endpoint to be downloaded a file. - - To download the data, add the ?export= to the query string. - - The implementing class must provided a download_queryset method, - e.g. - - def download_queryset(self, queryset, export_format): - dataset = StockItemResource().export(queryset=queryset) - - filedata = dataset.export(export_format) - - filename = 'InvenTree_Stocktake_{date}.{fmt}'.format( - date=datetime.now().strftime("%d-%b-%Y"), - fmt=export_format - ) - - return DownloadFile(filedata, filename) - """ - - def get(self, request, *args, **kwargs): - """Generic handler for a download request.""" - export_format = request.query_params.get('export', None) - - if export_format and export_format in ['csv', 'tsv', 'xls', 'xlsx']: - queryset = self.filter_queryset(self.get_queryset()) - return self.download_queryset(queryset, export_format) - # Default to the parent class implementation - return super().get(request, *args, **kwargs) - - def download_queryset(self, queryset, export_format): - """This function must be implemented to provide a downloadFile request.""" - raise NotImplementedError('download_queryset method not implemented!') - - class APISearchViewSerializer(serializers.Serializer): """Serializer for the APISearchView.""" diff --git a/src/backend/InvenTree/InvenTree/api_version.py b/src/backend/InvenTree/InvenTree/api_version.py index c0af7f8b98..0079fb39be 100644 --- a/src/backend/InvenTree/InvenTree/api_version.py +++ b/src/backend/InvenTree/InvenTree/api_version.py @@ -1,11 +1,61 @@ """InvenTree API version information.""" # InvenTree API version -INVENTREE_API_VERSION = 210 +INVENTREE_API_VERSION = 225 """Increment this API version number whenever there is a significant change to the API that any clients need to know about.""" + INVENTREE_API_TEXT = """ +v225 - 2024-07-17 : https://github.com/inventree/InvenTree/pull/7671 + - Adds "filters" field to DataImportSession API + +v224 - 2024-07-14 : https://github.com/inventree/InvenTree/pull/7667 + - Add notes field to ManufacturerPart and SupplierPart API endpoints + +v223 - 2024-07-14 : https://github.com/inventree/InvenTree/pull/7649 + - Allow adjustment of "packaging" field when receiving items against a purchase order + +v222 - 2024-07-14 : https://github.com/inventree/InvenTree/pull/7635 + - Adjust the BomItem API endpoint to improve data import process + +v221 - 2024-07-13 : https://github.com/inventree/InvenTree/pull/7636 + - Adds missing fields from StockItemBriefSerializer + - Adds missing fields from PartBriefSerializer + - Adds extra exportable fields to BuildItemSerializer + +v220 - 2024-07-11 : https://github.com/inventree/InvenTree/pull/7585 + - Adds "revision_of" field to Part serializer + - Adds new API filters for "revision" status + +v219 - 2024-07-11 : https://github.com/inventree/InvenTree/pull/7611 + - Adds new fields to the BuildItem API endpoints + - Adds new ordering / filtering options to the BuildItem API endpoints + +v218 - 2024-07-11 : https://github.com/inventree/InvenTree/pull/7619 + - Adds "can_build" field to the BomItem API + +v217 - 2024-07-09 : https://github.com/inventree/InvenTree/pull/7599 + - Fixes bug in "project_code" field for order API endpoints + +v216 - 2024-07-08 : https://github.com/inventree/InvenTree/pull/7595 + - Moves API endpoint for contenttype lookup by model name + +v215 - 2024-07-09 : https://github.com/inventree/InvenTree/pull/7591 + - Adds additional fields to the BuildLine serializer + +v214 - 2024-07-08 : https://github.com/inventree/InvenTree/pull/7587 + - Adds "default_location_detail" field to the Part API + +v213 - 2024-07-06 : https://github.com/inventree/InvenTree/pull/7527 + - Adds 'locked' field to Part API + +v212 - 2024-07-06 : https://github.com/inventree/InvenTree/pull/7562 + - Makes API generation more robust (no functional changes) + +v211 - 2024-06-26 : https://github.com/inventree/InvenTree/pull/6911 + - Adds API endpoints for managing data import and export + v210 - 2024-06-26 : https://github.com/inventree/InvenTree/pull/7518 - Adds translateable text to User API fields diff --git a/src/backend/InvenTree/InvenTree/apps.py b/src/backend/InvenTree/InvenTree/apps.py index 85d42bf18d..0cd448361f 100644 --- a/src/backend/InvenTree/InvenTree/apps.py +++ b/src/backend/InvenTree/InvenTree/apps.py @@ -11,6 +11,8 @@ from django.core.exceptions import AppRegistryNotReady from django.db import transaction from django.db.utils import IntegrityError, OperationalError +from allauth.socialaccount.signals import social_account_added, social_account_updated + import InvenTree.conversion import InvenTree.ready import InvenTree.tasks @@ -70,6 +72,12 @@ class InvenTreeConfig(AppConfig): self.add_user_on_startup() self.add_user_from_file() + # register event receiver and connect signal for SSO group sync. The connected signal is + # used for account updates whereas the receiver is used for the initial account creation. + from InvenTree import sso + + social_account_updated.connect(sso.ensure_sso_groups) + def remove_obsolete_tasks(self): """Delete any obsolete scheduled tasks in the database.""" obsolete = [ diff --git a/src/backend/InvenTree/InvenTree/forms.py b/src/backend/InvenTree/InvenTree/forms.py index ff4babe3bf..cffb987e1f 100644 --- a/src/backend/InvenTree/InvenTree/forms.py +++ b/src/backend/InvenTree/InvenTree/forms.py @@ -190,7 +190,7 @@ class CustomSignupForm(SignupForm): # check for two password fields if not get_global_setting('LOGIN_SIGNUP_PWD_TWICE'): - self.fields.pop('password2') + self.fields.pop('password2', None) # reorder fields set_form_field_order( @@ -269,7 +269,9 @@ class RegistratonMixin: # Check if a default group is set in settings start_group = get_global_setting('SIGNUP_GROUP') - if start_group: + if ( + start_group and user.groups.count() == 0 + ): # check that no group has been added through SSO group sync try: group = Group.objects.get(id=start_group) user.groups.add(group) diff --git a/src/backend/InvenTree/InvenTree/helpers.py b/src/backend/InvenTree/InvenTree/helpers.py index a3ca2ffaf5..ae72f59578 100644 --- a/src/backend/InvenTree/InvenTree/helpers.py +++ b/src/backend/InvenTree/InvenTree/helpers.py @@ -429,8 +429,8 @@ def MakeBarcode(cls_name, object_pk: int, object_data=None, **kwargs): def GetExportFormats(): - """Return a list of allowable file formats for exporting data.""" - return ['csv', 'tsv', 'xls', 'xlsx', 'json', 'yaml'] + """Return a list of allowable file formats for importing or exporting tabular data.""" + return ['csv', 'xlsx', 'tsv', 'json'] def DownloadFile( diff --git a/src/backend/InvenTree/InvenTree/helpers_mixin.py b/src/backend/InvenTree/InvenTree/helpers_mixin.py index 59c88785ed..d3f5c06d06 100644 --- a/src/backend/InvenTree/InvenTree/helpers_mixin.py +++ b/src/backend/InvenTree/InvenTree/helpers_mixin.py @@ -2,8 +2,10 @@ import inspect from pathlib import Path +from typing import Any, Callable from django.conf import settings +from django.core.cache import cache from plugin import registry as plg_registry @@ -104,3 +106,37 @@ class ClassProviderMixin: except ValueError: # Path(...).relative_to throws an ValueError if its not relative to the InvenTree source base dir return False + + +def get_shared_class_instance_state_mixin(get_state_key: Callable[[type], str]): + """Get a mixin class that provides shared state for classes across the main application and worker. + + Arguments: + get_state_key: A function that returns the key for the shared state when given a class instance. + """ + + class SharedClassStateMixinClass: + """Mixin to provide shared state for classes across the main application and worker.""" + + def set_shared_state(self, key: str, value: Any): + """Set a shared state value for this machine. + + Arguments: + key: The key for the shared state + value: The value to set + """ + cache.set(self._get_key(key), value, timeout=None) + + def get_shared_state(self, key: str, default=None): + """Get a shared state value for this machine. + + Arguments: + key: The key for the shared state + """ + return cache.get(self._get_key(key)) or default + + def _get_key(self, key: str): + """Get the key for this class instance.""" + return f'{get_state_key(self)}:{key}' + + return SharedClassStateMixinClass diff --git a/src/backend/InvenTree/InvenTree/helpers_model.py b/src/backend/InvenTree/InvenTree/helpers_model.py index 3fb73c852d..e9bbdc0b06 100644 --- a/src/backend/InvenTree/InvenTree/helpers_model.py +++ b/src/backend/InvenTree/InvenTree/helpers_model.py @@ -252,7 +252,7 @@ def render_currency( def getModelsWithMixin(mixin_class) -> list: - """Return a list of models that inherit from the given mixin class. + """Return a list of database models that inherit from the given mixin class. Args: mixin_class: The mixin class to search for diff --git a/src/backend/InvenTree/InvenTree/locales.py b/src/backend/InvenTree/InvenTree/locales.py index 900ffa6343..62e3a8bd9d 100644 --- a/src/backend/InvenTree/InvenTree/locales.py +++ b/src/backend/InvenTree/InvenTree/locales.py @@ -15,6 +15,7 @@ Additionally, update the following files with the new locale code: from django.utils.translation import gettext_lazy as _ LOCALES = [ + ('ar', _('Arabic')), ('bg', _('Bulgarian')), ('cs', _('Czech')), ('da', _('Danish')), @@ -23,6 +24,7 @@ LOCALES = [ ('en', _('English')), ('es', _('Spanish')), ('es-mx', _('Spanish (Mexican)')), + ('et', _('Estonian')), ('fa', _('Farsi / Persian')), ('fi', _('Finnish')), ('fr', _('French')), diff --git a/src/backend/InvenTree/InvenTree/metadata.py b/src/backend/InvenTree/InvenTree/metadata.py index d01303a0e9..7805d73c0a 100644 --- a/src/backend/InvenTree/InvenTree/metadata.py +++ b/src/backend/InvenTree/InvenTree/metadata.py @@ -137,10 +137,10 @@ class InvenTreeMetadata(SimpleMetadata): - field_value: The value of the field (if available) - model_value: The equivalent value of the model (if available) """ - if model_value and not field_value: + if field_value is None and model_value is not None: return model_value - if field_value and not model_value: + if model_value is None and field_value is not None: return field_value # Callable values will be evaluated later @@ -160,6 +160,8 @@ class InvenTreeMetadata(SimpleMetadata): """Override get_serializer_info so that we can add 'default' values to any fields whose Meta.model specifies a default value.""" self.serializer = serializer + request = getattr(self, 'request', None) + serializer_info = super().get_serializer_info(serializer) # Look for any dynamic fields which were not available when the serializer was instantiated @@ -169,12 +171,19 @@ class InvenTreeMetadata(SimpleMetadata): # Already know about this one continue - if hasattr(serializer, field_name): - field = getattr(serializer, field_name) + if field := getattr(serializer, field_name, None): serializer_info[field_name] = self.get_field_info(field) model_class = None + # Extract read_only_fields and write_only_fields from the Meta class (if available) + if meta := getattr(serializer, 'Meta', None): + read_only_fields = getattr(meta, 'read_only_fields', []) + write_only_fields = getattr(meta, 'write_only_fields', []) + else: + read_only_fields = [] + write_only_fields = [] + # Attributes to copy extra attributes from the model to the field (if they don't exist) # Note that the attributes may be named differently on the underlying model! extra_attributes = { @@ -188,16 +197,20 @@ class InvenTreeMetadata(SimpleMetadata): model_fields = model_meta.get_field_info(model_class) - model_default_func = getattr(model_class, 'api_defaults', None) - - if model_default_func: - model_default_values = model_class.api_defaults(self.request) + if model_default_func := getattr(model_class, 'api_defaults', None): + model_default_values = model_default_func(request=request) or {} else: model_default_values = {} # Iterate through simple fields for name, field in model_fields.fields.items(): if name in serializer_info.keys(): + if name in read_only_fields: + serializer_info[name]['read_only'] = True + + if name in write_only_fields: + serializer_info[name]['write_only'] = True + if field.has_default(): default = field.default @@ -231,6 +244,12 @@ class InvenTreeMetadata(SimpleMetadata): # Ignore reverse relations continue + if name in read_only_fields: + serializer_info[name]['read_only'] = True + + if name in write_only_fields: + serializer_info[name]['write_only'] = True + # Extract and provide the "limit_choices_to" filters # This is used to automatically filter AJAX requests serializer_info[name]['filters'] = ( @@ -261,7 +280,8 @@ class InvenTreeMetadata(SimpleMetadata): if instance is None and model_class is not None: # Attempt to find the instance based on kwargs lookup - kwargs = getattr(self.view, 'kwargs', None) + view = getattr(self, 'view', None) + kwargs = getattr(view, 'kwargs', None) if view else None if kwargs: pk = None @@ -318,8 +338,10 @@ class InvenTreeMetadata(SimpleMetadata): # Force non-nullable fields to read as "required" # (even if there is a default value!) - if not field.allow_null and not ( - hasattr(field, 'allow_blank') and field.allow_blank + if ( + 'required' not in field_info + and not field.allow_null + and not (hasattr(field, 'allow_blank') and field.allow_blank) ): field_info['required'] = True @@ -346,8 +368,11 @@ class InvenTreeMetadata(SimpleMetadata): field_info['api_url'] = '/api/user/' elif field_info['model'] == 'contenttype': field_info['api_url'] = '/api/contenttype/' - else: + elif hasattr(model, 'get_api_url'): field_info['api_url'] = model.get_api_url() + else: + logger.warning("'get_api_url' method not defined for %s", model) + field_info['api_url'] = getattr(model, 'api_url', None) # Handle custom 'primary key' field field_info['pk_field'] = getattr(field, 'pk_field', 'pk') or 'pk' diff --git a/src/backend/InvenTree/InvenTree/models.py b/src/backend/InvenTree/InvenTree/models.py index 777850d4c2..33cd1e9097 100644 --- a/src/backend/InvenTree/InvenTree/models.py +++ b/src/backend/InvenTree/InvenTree/models.py @@ -216,12 +216,15 @@ class MetadataMixin(models.Model): self.save() -class DataImportMixin(object): +class DataImportMixin: """Model mixin class which provides support for 'data import' functionality. Models which implement this mixin should provide information on the fields available for import """ + # TODO: This mixin should be removed after https://github.com/inventree/InvenTree/pull/6911 is implemented + # TODO: This approach to data import functionality is *outdated* + # Define a map of fields available for import IMPORT_FIELDS = {} diff --git a/src/backend/InvenTree/InvenTree/serializers.py b/src/backend/InvenTree/InvenTree/serializers.py index 829216089f..4063685115 100644 --- a/src/backend/InvenTree/InvenTree/serializers.py +++ b/src/backend/InvenTree/InvenTree/serializers.py @@ -856,7 +856,7 @@ class RemoteImageMixin(metaclass=serializers.SerializerMetaclass): remote_image = serializers.URLField( required=False, - allow_blank=False, + allow_blank=True, write_only=True, label=_('Remote Image'), help_text=_('URL of remote image file'), diff --git a/src/backend/InvenTree/InvenTree/settings.py b/src/backend/InvenTree/InvenTree/settings.py index 0109730c30..cedeb4e215 100644 --- a/src/backend/InvenTree/InvenTree/settings.py +++ b/src/backend/InvenTree/InvenTree/settings.py @@ -198,6 +198,7 @@ INSTALLED_APPS = [ 'stock.apps.StockConfig', 'users.apps.UsersConfig', 'machine.apps.MachineConfig', + 'importer.apps.ImporterConfig', 'web', 'generic', 'InvenTree.apps.InvenTreeConfig', # InvenTree app runs last diff --git a/src/backend/InvenTree/InvenTree/sso.py b/src/backend/InvenTree/InvenTree/sso.py index b3fb551cf2..9279d58198 100644 --- a/src/backend/InvenTree/InvenTree/sso.py +++ b/src/backend/InvenTree/InvenTree/sso.py @@ -1,7 +1,14 @@ """Helper functions for Single Sign On functionality.""" +import json import logging +from django.contrib.auth.models import Group +from django.db.models.signals import post_save +from django.dispatch import receiver + +from allauth.socialaccount.models import SocialAccount, SocialLogin + from common.settings import get_global_setting from InvenTree.helpers import str2bool @@ -75,3 +82,55 @@ def registration_enabled() -> bool: def auto_registration_enabled() -> bool: """Return True if SSO auto-registration is enabled.""" return str2bool(get_global_setting('LOGIN_SIGNUP_SSO_AUTO')) + + +def ensure_sso_groups(sender, sociallogin: SocialLogin, **kwargs): + """Sync groups from IdP each time a SSO user logs on. + + This event listener is registered in the apps ready method. + """ + if not get_global_setting('LOGIN_ENABLE_SSO_GROUP_SYNC'): + return + + group_key = get_global_setting('SSO_GROUP_KEY') + group_map = json.loads(get_global_setting('SSO_GROUP_MAP')) + # map SSO groups to InvenTree groups + group_names = [] + for sso_group in sociallogin.account.extra_data.get(group_key, []): + if mapped_name := group_map.get(sso_group): + group_names.append(mapped_name) + + # ensure user has groups + user = sociallogin.account.user + for group_name in group_names: + try: + user.groups.get(name=group_name) + except Group.DoesNotExist: + # user not in group yet + try: + group = Group.objects.get(name=group_name) + except Group.DoesNotExist: + logger.info(f'Creating group {group_name} as it did not exist') + group = Group(name=group_name) + group.save() + logger.info(f'Adding group {group_name} to user {user}') + user.groups.add(group) + + # remove groups not listed by SSO if not disabled + if get_global_setting('SSO_REMOVE_GROUPS'): + for group in user.groups.all(): + if not group.name in group_names: + logger.info(f'Removing group {group.name} from {user}') + user.groups.remove(group) + + +@receiver(post_save, sender=SocialAccount) +def on_social_account_created(sender, instance: SocialAccount, created: bool, **kwargs): + """Sync SSO groups when new SocialAccount is added. + + Since the allauth `social_account_added` signal is not sent for some reason, this + signal is simulated using post_save signals. The issue has been reported as + https://github.com/pennersr/django-allauth/issues/3834 + """ + if created: + ensure_sso_groups(None, SocialLogin(account=instance)) diff --git a/src/backend/InvenTree/InvenTree/static/script/inventree/inventree.js b/src/backend/InvenTree/InvenTree/static/script/inventree/inventree.js index db12de9d9d..0da91dbee1 100644 --- a/src/backend/InvenTree/InvenTree/static/script/inventree/inventree.js +++ b/src/backend/InvenTree/InvenTree/static/script/inventree/inventree.js @@ -60,10 +60,6 @@ function exportFormatOptions() { value: 'tsv', display_name: 'TSV', }, - { - value: 'xls', - display_name: 'XLS', - }, { value: 'xlsx', display_name: 'XLSX', diff --git a/src/backend/InvenTree/InvenTree/tasks.py b/src/backend/InvenTree/InvenTree/tasks.py index 65115d6862..d436581ae4 100644 --- a/src/backend/InvenTree/InvenTree/tasks.py +++ b/src/backend/InvenTree/InvenTree/tasks.py @@ -256,8 +256,8 @@ def offload_task( _func(*args, **kwargs) except Exception as exc: log_error('InvenTree.offload_task') - raise_warning(f"WARNING: '{taskname}' not started due to {str(exc)}") - return False + raise_warning(f"WARNING: '{taskname}' failed due to {str(exc)}") + raise exc # Finally, task either completed successfully or was offloaded return True diff --git a/src/backend/InvenTree/InvenTree/templatetags/inventree_extras.py b/src/backend/InvenTree/InvenTree/templatetags/inventree_extras.py index 00641abc19..ad476ba671 100644 --- a/src/backend/InvenTree/InvenTree/templatetags/inventree_extras.py +++ b/src/backend/InvenTree/InvenTree/templatetags/inventree_extras.py @@ -438,9 +438,9 @@ def progress_bar(val, max_val, *args, **kwargs): @register.simple_tag() -def get_color_theme_css(username): +def get_color_theme_css(user): """Return the custom theme .css file for the selected user.""" - user_theme_name = get_user_color_theme(username) + user_theme_name = get_user_color_theme(user) # Build path to CSS sheet inventree_css_sheet = os.path.join('css', 'color-themes', user_theme_name + '.css') @@ -451,12 +451,18 @@ def get_color_theme_css(username): @register.simple_tag() -def get_user_color_theme(username): +def get_user_color_theme(user): """Get current user color theme.""" from common.models import ColorTheme try: - user_theme = ColorTheme.objects.filter(user=username).get() + if not user.is_authenticated: + return 'default' + except Exception: + return 'default' + + try: + user_theme = ColorTheme.objects.filter(user_obj=user).get() user_theme_name = user_theme.name if not user_theme_name or not ColorTheme.is_valid_choice(user_theme): user_theme_name = 'default' diff --git a/src/backend/InvenTree/InvenTree/test_sso.py b/src/backend/InvenTree/InvenTree/test_sso.py new file mode 100644 index 0000000000..60a5619c0b --- /dev/null +++ b/src/backend/InvenTree/InvenTree/test_sso.py @@ -0,0 +1,122 @@ +"""Test the sso module functionality.""" + +from django.contrib.auth.models import Group, User +from django.test import override_settings +from django.test.testcases import TransactionTestCase + +from allauth.socialaccount.models import SocialAccount, SocialLogin + +from common.models import InvenTreeSetting +from InvenTree import sso +from InvenTree.forms import RegistratonMixin +from InvenTree.unit_test import InvenTreeTestCase + + +class Dummy: + """Simulate super class of RegistratonMixin.""" + + def save_user(self, _request, user: User, *args) -> User: + """This method is only used that the super() call of RegistrationMixin does not fail.""" + return user + + +class MockRegistrationMixin(RegistratonMixin, Dummy): + """Mocked implementation of the RegistrationMixin.""" + + +class TestSsoGroupSync(TransactionTestCase): + """Tests for the SSO group sync feature.""" + + def setUp(self): + """Construct sociallogin object for test cases.""" + # configure SSO + InvenTreeSetting.set_setting('LOGIN_ENABLE_SSO_GROUP_SYNC', True) + InvenTreeSetting.set_setting('SSO_GROUP_KEY', 'groups') + InvenTreeSetting.set_setting( + 'SSO_GROUP_MAP', '{"idp_group": "inventree_group"}' + ) + # configure sociallogin + extra_data = {'groups': ['idp_group']} + self.group = Group(name='inventree_group') + self.group.save() + # ensure default group exists + user = User(username='testuser', first_name='Test', last_name='User') + user.save() + account = SocialAccount(user=user, extra_data=extra_data) + self.sociallogin = SocialLogin(account=account) + + def test_group_added_to_user(self): + """Check that a new SSO group is added to the user.""" + user: User = self.sociallogin.account.user + self.assertEqual(user.groups.count(), 0) + sso.ensure_sso_groups(None, self.sociallogin) + self.assertEqual(user.groups.count(), 1) + self.assertEqual(user.groups.first().name, 'inventree_group') + + def test_group_already_exists(self): + """Check that existing SSO group is not modified.""" + user: User = self.sociallogin.account.user + user.groups.add(self.group) + self.assertEqual(user.groups.count(), 1) + self.assertEqual(user.groups.first().name, 'inventree_group') + sso.ensure_sso_groups(None, self.sociallogin) + self.assertEqual(user.groups.count(), 1) + self.assertEqual(user.groups.first().name, 'inventree_group') + + @override_settings(SSO_REMOVE_GROUPS=True) + def test_remove_non_sso_group(self): + """Check that any group not provided by IDP is removed.""" + user: User = self.sociallogin.account.user + # group must be saved to database first + group = Group(name='local_group') + group.save() + user.groups.add(group) + self.assertEqual(user.groups.count(), 1) + self.assertEqual(user.groups.first().name, 'local_group') + sso.ensure_sso_groups(None, self.sociallogin) + self.assertEqual(user.groups.count(), 1) + self.assertEqual(user.groups.first().name, 'inventree_group') + + def test_override_default_group_with_sso_group(self): + """The default group should be overridden if SSO groups are available.""" + user: User = self.sociallogin.account.user + self.assertEqual(user.groups.count(), 0) + Group(id=42, name='default_group').save() + InvenTreeSetting.set_setting('SIGNUP_GROUP', 42) + sso.ensure_sso_groups(None, self.sociallogin) + MockRegistrationMixin().save_user(None, user, None) + self.assertEqual(user.groups.count(), 1) + self.assertEqual(user.groups.first().name, 'inventree_group') + + def test_default_group_without_sso_group(self): + """If no SSO group is specified, the default group should be applied.""" + self.sociallogin.account.extra_data = {} + user: User = self.sociallogin.account.user + self.assertEqual(user.groups.count(), 0) + Group(id=42, name='default_group').save() + InvenTreeSetting.set_setting('SIGNUP_GROUP', 42) + sso.ensure_sso_groups(None, self.sociallogin) + MockRegistrationMixin().save_user(None, user, None) + self.assertEqual(user.groups.count(), 1) + self.assertEqual(user.groups.first().name, 'default_group') + + @override_settings(SSO_REMOVE_GROUPS=True) + def test_remove_groups_overrides_default_group(self): + """If no SSO group is specified, the default group should not be added if SSO_REMOVE_GROUPS=True.""" + user: User = self.sociallogin.account.user + self.sociallogin.account.extra_data = {} + self.assertEqual(user.groups.count(), 0) + Group(id=42, name='default_group').save() + InvenTreeSetting.set_setting('SIGNUP_GROUP', 42) + sso.ensure_sso_groups(None, self.sociallogin) + MockRegistrationMixin().save_user(None, user, None) + # second ensure_sso_groups will be called by signal if social account changes + sso.ensure_sso_groups(None, self.sociallogin) + self.assertEqual(user.groups.count(), 0) + + def test_sso_group_created_if_not_exists(self): + """If the mapped group does not exist, a new group with the same name should be created.""" + self.group.delete() + self.assertEqual(Group.objects.filter(name='inventree_group').count(), 0) + sso.ensure_sso_groups(None, self.sociallogin) + self.assertEqual(Group.objects.filter(name='inventree_group').count(), 1) diff --git a/src/backend/InvenTree/InvenTree/tracing.py b/src/backend/InvenTree/InvenTree/tracing.py index 3d3eda28a3..dd90a330dd 100644 --- a/src/backend/InvenTree/InvenTree/tracing.py +++ b/src/backend/InvenTree/InvenTree/tracing.py @@ -22,9 +22,6 @@ from opentelemetry.sdk.trace.export import BatchSpanProcessor, ConsoleSpanExport import InvenTree.ready from InvenTree.version import inventreeVersion -# Logger configuration -logger = logging.getLogger('inventree') - def setup_tracing( endpoint: str, @@ -46,6 +43,9 @@ def setup_tracing( if InvenTree.ready.isImportingData() or InvenTree.ready.isRunningMigrations(): return + # Logger configuration + logger = logging.getLogger('inventree') + if resources_input is None: resources_input = {} if auth is None: diff --git a/src/backend/InvenTree/InvenTree/unit_test.py b/src/backend/InvenTree/InvenTree/unit_test.py index 583930f790..3f64fe1d9c 100644 --- a/src/backend/InvenTree/InvenTree/unit_test.py +++ b/src/backend/InvenTree/InvenTree/unit_test.py @@ -84,6 +84,9 @@ def getNewestMigrationFile(app, exclude_extension=True): newest_num = num newest_file = f + if not newest_file: # pragma: no cover + return newest_file + if exclude_extension: newest_file = newest_file.replace('.py', '') @@ -412,12 +415,12 @@ class InvenTreeAPITestCase(ExchangeRateMixin, UserMixin, APITestCase): # Extract filename disposition = response.headers['Content-Disposition'] - result = re.search(r'attachment; filename="([\w.]+)"', disposition) + result = re.search(r'attachment; filename="([\w\d\-.]+)"', disposition) fn = result.groups()[0] if expected_fn is not None: - self.assertEqual(expected_fn, fn) + self.assertRegex(fn, expected_fn) if decode: # Decode data and return as StringIO file object diff --git a/src/backend/InvenTree/InvenTree/urls.py b/src/backend/InvenTree/InvenTree/urls.py index e9cd4ead4c..4d3d7f95c6 100644 --- a/src/backend/InvenTree/InvenTree/urls.py +++ b/src/backend/InvenTree/InvenTree/urls.py @@ -21,6 +21,7 @@ from sesame.views import LoginView import build.api import common.api import company.api +import importer.api import machine.api import order.api import part.api @@ -80,11 +81,19 @@ admin.site.site_header = 'InvenTree Admin' apipatterns = [ # Global search + path('admin/', include(common.api.admin_api_urls)), + path('bom/', include(part.api.bom_api_urls)), + path('build/', include(build.api.build_api_urls)), + path('company/', include(company.api.company_api_urls)), + path('importer/', include(importer.api.importer_api_urls)), + path('label/', include(report.api.label_api_urls)), + path('machine/', include(machine.api.machine_api_urls)), + path('order/', include(order.api.order_api_urls)), + path('part/', include(part.api.part_api_urls)), + path('report/', include(report.api.report_api_urls)), path('search/', APISearchView.as_view(), name='api-search'), path('settings/', include(common.api.settings_api_urls)), - path('part/', include(part.api.part_api_urls)), - path('bom/', include(part.api.bom_api_urls)), - path('company/', include(company.api.company_api_urls)), + path('stock/', include(stock.api.stock_api_urls)), path( 'generate/', include([ @@ -100,14 +109,7 @@ apipatterns = [ ), ]), ), - path('stock/', include(stock.api.stock_api_urls)), - path('build/', include(build.api.build_api_urls)), - path('order/', include(order.api.order_api_urls)), - path('label/', include(report.api.label_api_urls)), - path('report/', include(report.api.report_api_urls)), - path('machine/', include(machine.api.machine_api_urls)), path('user/', include(users.api.user_urls)), - path('admin/', include(common.api.admin_api_urls)), path('web/', include(web_api_urls)), # Plugin endpoints path('', include(plugin.api.plugin_api_urls)), diff --git a/src/backend/InvenTree/InvenTree/views.py b/src/backend/InvenTree/InvenTree/views.py index 176e704b19..4f2293b894 100644 --- a/src/backend/InvenTree/InvenTree/views.py +++ b/src/backend/InvenTree/InvenTree/views.py @@ -614,7 +614,7 @@ class AppearanceSelectView(RedirectView): """Get current user color theme.""" try: user_theme = common_models.ColorTheme.objects.filter( - user=self.request.user + user_obj=self.request.user ).get() except common_models.ColorTheme.DoesNotExist: user_theme = None @@ -631,7 +631,7 @@ class AppearanceSelectView(RedirectView): # Create theme entry if user did not select one yet if not user_theme: user_theme = common_models.ColorTheme() - user_theme.user = request.user + user_theme.user_obj = request.user if theme: try: diff --git a/src/backend/InvenTree/build/api.py b/src/backend/InvenTree/build/api.py index 57c66a4182..e21c60037d 100644 --- a/src/backend/InvenTree/build/api.py +++ b/src/backend/InvenTree/build/api.py @@ -8,12 +8,13 @@ from django.contrib.auth.models import User from rest_framework.exceptions import ValidationError -from django_filters.rest_framework import DjangoFilterBackend from django_filters import rest_framework as rest_filters -from InvenTree.api import APIDownloadMixin, MetadataView +from importer.mixins import DataExportViewMixin + +from InvenTree.api import BulkDeleteMixin, MetadataView from generic.states.api import StatusView -from InvenTree.helpers import str2bool, isNull, DownloadFile +from InvenTree.helpers import str2bool, isNull from build.status_codes import BuildStatus, BuildStatusGroups from InvenTree.mixins import CreateAPI, RetrieveUpdateDestroyAPI, ListCreateAPI @@ -125,7 +126,7 @@ class BuildMixin: return queryset -class BuildList(APIDownloadMixin, BuildMixin, ListCreateAPI): +class BuildList(DataExportViewMixin, BuildMixin, ListCreateAPI): """API endpoint for accessing a list of Build objects. - GET: Return list of objects (with filters) @@ -176,15 +177,6 @@ class BuildList(APIDownloadMixin, BuildMixin, ListCreateAPI): return queryset - def download_queryset(self, queryset, export_format): - """Download the queryset data as a file.""" - dataset = build.admin.BuildResource().export(queryset=queryset) - - filedata = dataset.export(export_format) - filename = f"InvenTree_BuildOrders.{export_format}" - - return DownloadFile(filedata, filename) - def filter_queryset(self, queryset): """Custom query filtering for the BuildList endpoint.""" queryset = super().filter_queryset(queryset) @@ -351,7 +343,7 @@ class BuildLineEndpoint: return queryset -class BuildLineList(BuildLineEndpoint, ListCreateAPI): +class BuildLineList(BuildLineEndpoint, DataExportViewMixin, ListCreateAPI): """API endpoint for accessing a list of BuildLine objects""" filterset_class = BuildLineFilter @@ -553,15 +545,17 @@ class BuildItemFilter(rest_filters.FilterSet): return queryset.filter(install_into=None) -class BuildItemList(ListCreateAPI): +class BuildItemList(DataExportViewMixin, BulkDeleteMixin, ListCreateAPI): """API endpoint for accessing a list of BuildItem objects. - GET: Return list of objects - POST: Create a new BuildItem object """ + queryset = BuildItem.objects.all() serializer_class = build.serializers.BuildItemSerializer filterset_class = BuildItemFilter + filter_backends = SEARCH_ORDER_FILTER_ALIAS def get_serializer(self, *args, **kwargs): """Returns a BuildItemSerializer instance based on the request.""" @@ -578,15 +572,20 @@ class BuildItemList(ListCreateAPI): def get_queryset(self): """Override the queryset method, to allow filtering by stock_item.part.""" - queryset = BuildItem.objects.all() + queryset = super().get_queryset() queryset = queryset.select_related( 'build_line', 'build_line__build', + 'build_line__bom_item', 'install_into', 'stock_item', 'stock_item__location', 'stock_item__part', + 'stock_item__supplier_part', + 'stock_item__supplier_part__manufacturer_part', + ).prefetch_related( + 'stock_item__location__tags', ) return queryset @@ -609,8 +608,25 @@ class BuildItemList(ListCreateAPI): return queryset - filter_backends = [ - DjangoFilterBackend, + ordering_fields = [ + 'part', + 'sku', + 'quantity', + 'location', + 'reference', + ] + + ordering_field_aliases = { + 'part': 'stock_item__part__name', + 'sku': 'stock_item__supplier_part__SKU', + 'location': 'stock_item__location__name', + 'reference': 'build_line__bom_item__reference', + } + + search_fields = [ + 'stock_item__supplier_part__SKU', + 'stock_item__part__name', + 'build_line__bom_item__reference', ] diff --git a/src/backend/InvenTree/build/models.py b/src/backend/InvenTree/build/models.py index 7430eb4a29..2ad57b9f62 100644 --- a/src/backend/InvenTree/build/models.py +++ b/src/backend/InvenTree/build/models.py @@ -104,7 +104,7 @@ class Build( } @classmethod - def api_defaults(cls, request): + def api_defaults(cls, request=None): """Return default values for this model when issuing an API OPTIONS request.""" defaults = { 'reference': generate_next_build_reference(), @@ -120,8 +120,32 @@ class Build( self.validate_reference_field(self.reference) self.reference_int = self.rebuild_reference_field(self.reference) + # Check part when initially creating the build order + if not self.pk or self.has_field_changed('part'): + if get_global_setting('BUILDORDER_REQUIRE_VALID_BOM'): + # Check that the BOM is valid + if not self.part.is_bom_valid(): + raise ValidationError({ + 'part': _('Assembly BOM has not been validated') + }) + + if get_global_setting('BUILDORDER_REQUIRE_ACTIVE_PART'): + # Check that the part is active + if not self.part.active: + raise ValidationError({ + 'part': _('Build order cannot be created for an inactive part') + }) + + if get_global_setting('BUILDORDER_REQUIRE_LOCKED_PART'): + # Check that the part is locked + if not self.part.locked: + raise ValidationError({ + 'part': _('Build order cannot be created for an unlocked part') + }) + # On first save (i.e. creation), run some extra checks if self.pk is None: + # Set the destination location (if not specified) if not self.destination: self.destination = self.part.get_default_location() diff --git a/src/backend/InvenTree/build/serializers.py b/src/backend/InvenTree/build/serializers.py index fe33f0a729..390cabab92 100644 --- a/src/backend/InvenTree/build/serializers.py +++ b/src/backend/InvenTree/build/serializers.py @@ -1,5 +1,7 @@ """JSON serializers for Build API.""" +from decimal import Decimal + from django.db import transaction from django.core.exceptions import ValidationError as DjangoValidationError from django.utils.translation import gettext_lazy as _ @@ -25,14 +27,16 @@ from stock.serializers import StockItemSerializerBrief, LocationSerializer import common.models from common.serializers import ProjectCodeSerializer +from importer.mixins import DataImportExportSerializerMixin +import company.serializers import part.filters -from part.serializers import BomItemSerializer, PartSerializer, PartBriefSerializer +import part.serializers as part_serializers from users.serializers import OwnerSerializer from .models import Build, BuildLine, BuildItem -class BuildSerializer(NotesFieldMixin, InvenTreeModelSerializer): +class BuildSerializer(NotesFieldMixin, DataImportExportSerializerMixin, InvenTreeModelSerializer): """Serializes a Build object.""" class Meta: @@ -50,8 +54,10 @@ class BuildSerializer(NotesFieldMixin, InvenTreeModelSerializer): 'destination', 'parent', 'part', + 'part_name', 'part_detail', 'project_code', + 'project_code_label', 'project_code_detail', 'overdue', 'reference', @@ -82,7 +88,9 @@ class BuildSerializer(NotesFieldMixin, InvenTreeModelSerializer): status_text = serializers.CharField(source='get_status_display', read_only=True) - part_detail = PartBriefSerializer(source='part', many=False, read_only=True) + part_detail = part_serializers.PartBriefSerializer(source='part', many=False, read_only=True) + + part_name = serializers.CharField(source='part.name', read_only=True, label=_('Part Name')) quantity = InvenTreeDecimalField() @@ -94,6 +102,8 @@ class BuildSerializer(NotesFieldMixin, InvenTreeModelSerializer): barcode_hash = serializers.CharField(read_only=True) + project_code_label = serializers.CharField(source='project_code.code', read_only=True, label=_('Project Code Label')) + project_code_detail = ProjectCodeSerializer(source='project_code', many=False, read_only=True) @staticmethod @@ -124,7 +134,7 @@ class BuildSerializer(NotesFieldMixin, InvenTreeModelSerializer): super().__init__(*args, **kwargs) if part_detail is not True: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) reference = serializers.CharField(required=True) @@ -201,7 +211,7 @@ class BuildOutputQuantitySerializer(BuildOutputSerializer): quantity = serializers.DecimalField( max_digits=15, decimal_places=5, - min_value=0, + min_value=Decimal(0), required=True, label=_('Quantity'), help_text=_('Enter quantity for build output'), @@ -248,7 +258,7 @@ class BuildOutputCreateSerializer(serializers.Serializer): quantity = serializers.DecimalField( max_digits=15, decimal_places=5, - min_value=0, + min_value=Decimal(0), required=True, label=_('Quantity'), help_text=_('Enter quantity for build output'), @@ -856,7 +866,7 @@ class BuildAllocationItemSerializer(serializers.Serializer): quantity = serializers.DecimalField( max_digits=15, decimal_places=5, - min_value=0, + min_value=Decimal(0), required=True ) @@ -1049,8 +1059,22 @@ class BuildAutoAllocationSerializer(serializers.Serializer): raise ValidationError(_("Failed to start auto-allocation task")) -class BuildItemSerializer(InvenTreeModelSerializer): - """Serializes a BuildItem object.""" +class BuildItemSerializer(DataImportExportSerializerMixin, InvenTreeModelSerializer): + """Serializes a BuildItem object, which is an allocation of a stock item against a build order.""" + + # These fields are only used for data export + export_only_fields = [ + 'build_reference', + 'sku', + 'mpn', + 'location_name', + 'part_id', + 'part_name', + 'part_ipn', + 'available_quantity', + 'item_batch_code', + 'item_serial', + ] class Meta: """Serializer metaclass""" @@ -1062,23 +1086,29 @@ class BuildItemSerializer(InvenTreeModelSerializer): 'install_into', 'stock_item', 'quantity', + 'location', + + # Detail fields, can be included or excluded + 'build_detail', 'location_detail', 'part_detail', 'stock_item_detail', - 'build_detail', + 'supplier_part_detail', + + # The following fields are only used for data export + 'bom_reference', + 'build_reference', + 'location_name', + 'mpn', + 'sku', + 'part_id', + 'part_name', + 'part_ipn', + 'available_quantity', + 'item_batch_code', + 'item_serial_number', ] - # Annotated fields - build = serializers.PrimaryKeyRelatedField(source='build_line.build', many=False, read_only=True) - - # Extra (optional) detail fields - part_detail = PartBriefSerializer(source='stock_item.part', many=False, read_only=True, pricing=False) - stock_item_detail = StockItemSerializerBrief(source='stock_item', read_only=True) - location_detail = LocationSerializer(source='stock_item.location', read_only=True) - build_detail = BuildSerializer(source='build_line.build', many=False, read_only=True) - - quantity = InvenTreeDecimalField() - def __init__(self, *args, **kwargs): """Determine which extra details fields should be included""" part_detail = kwargs.pop('part_detail', True) @@ -1089,21 +1119,59 @@ class BuildItemSerializer(InvenTreeModelSerializer): super().__init__(*args, **kwargs) if not part_detail: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) if not location_detail: - self.fields.pop('location_detail') + self.fields.pop('location_detail', None) if not stock_detail: - self.fields.pop('stock_item_detail') + self.fields.pop('stock_item_detail', None) if not build_detail: - self.fields.pop('build_detail') + self.fields.pop('build_detail', None) + + # Export-only fields + sku = serializers.CharField(source='stock_item.supplier_part.SKU', label=_('Supplier Part Number'), read_only=True) + mpn = serializers.CharField(source='stock_item.supplier_part.manufacturer_part.MPN', label=_('Manufacturer Part Number'), read_only=True) + location_name = serializers.CharField(source='stock_item.location.name', label=_('Location Name'), read_only=True) + build_reference = serializers.CharField(source='build.reference', label=_('Build Reference'), read_only=True) + bom_reference = serializers.CharField(source='build_line.bom_item.reference', label=_('BOM Reference'), read_only=True) + + # Part detail fields + part_id = serializers.PrimaryKeyRelatedField(source='stock_item.part', label=_('Part ID'), many=False, read_only=True) + part_name = serializers.CharField(source='stock_item.part.name', label=_('Part Name'), read_only=True) + part_ipn = serializers.CharField(source='stock_item.part.IPN', label=_('Part IPN'), read_only=True) + + item_batch_code = serializers.CharField(source='stock_item.batch', label=_('Batch Code'), read_only=True) + item_serial_number = serializers.CharField(source='stock_item.serial', label=_('Serial Number'), read_only=True) + + # Annotated fields + build = serializers.PrimaryKeyRelatedField(source='build_line.build', many=False, read_only=True) + + # Extra (optional) detail fields + part_detail = part_serializers.PartBriefSerializer(source='stock_item.part', many=False, read_only=True, pricing=False) + stock_item_detail = StockItemSerializerBrief(source='stock_item', read_only=True) + location = serializers.PrimaryKeyRelatedField(source='stock_item.location', many=False, read_only=True) + location_detail = LocationSerializer(source='stock_item.location', read_only=True) + build_detail = BuildSerializer(source='build_line.build', many=False, read_only=True) + supplier_part_detail = company.serializers.SupplierPartSerializer(source='stock_item.supplier_part', many=False, read_only=True) + + quantity = InvenTreeDecimalField(label=_('Allocated Quantity')) + available_quantity = InvenTreeDecimalField(source='stock_item.quantity', read_only=True, label=_('Available Quantity')) -class BuildLineSerializer(InvenTreeModelSerializer): +class BuildLineSerializer(DataImportExportSerializerMixin, InvenTreeModelSerializer): """Serializer for a BuildItem object.""" + export_exclude_fields = [ + 'allocations', + ] + + export_only_fields = [ + 'part_description', + 'part_category_name', + ] + class Meta: """Serializer metaclass""" @@ -1117,6 +1185,20 @@ class BuildLineSerializer(InvenTreeModelSerializer): 'quantity', 'allocations', + # BOM item detail fields + 'reference', + 'consumable', + 'optional', + 'trackable', + 'inherited', + 'allow_variants', + + # Part detail fields + 'part', + 'part_name', + 'part_IPN', + 'part_category_id', + # Annotated fields 'allocated', 'in_production', @@ -1126,6 +1208,10 @@ class BuildLineSerializer(InvenTreeModelSerializer): 'available_variant_stock', 'total_available_stock', 'external_stock', + + # Extra fields only for data export + 'part_description', + 'part_category_name', ] read_only_fields = [ @@ -1134,13 +1220,30 @@ class BuildLineSerializer(InvenTreeModelSerializer): 'allocations', ] - quantity = serializers.FloatField() + # Part info fields + part = serializers.PrimaryKeyRelatedField(source='bom_item.sub_part', label=_('Part'), many=False, read_only=True) + part_name = serializers.CharField(source='bom_item.sub_part.name', label=_('Part Name'), read_only=True) + part_IPN = serializers.CharField(source='bom_item.sub_part.IPN', label=_('Part IPN'), read_only=True) + + part_description = serializers.CharField(source='bom_item.sub_part.description', label=_('Part Description'), read_only=True) + part_category_id = serializers.PrimaryKeyRelatedField(source='bom_item.sub_part.category', label=_('Part Category ID'), read_only=True) + part_category_name = serializers.CharField(source='bom_item.sub_part.category.name', label=_('Part Category Name'), read_only=True) + + # BOM item info fields + reference = serializers.CharField(source='bom_item.reference', label=_('Reference'), read_only=True) + consumable = serializers.BooleanField(source='bom_item.consumable', label=_('Consumable'), read_only=True) + optional = serializers.BooleanField(source='bom_item.optional', label=_('Optional'), read_only=True) + trackable = serializers.BooleanField(source='bom_item.sub_part.trackable', label=_('Trackable'), read_only=True) + inherited = serializers.BooleanField(source='bom_item.inherited', label=_('Inherited'), read_only=True) + allow_variants = serializers.BooleanField(source='bom_item.allow_variants', label=_('Allow Variants'), read_only=True) + + quantity = serializers.FloatField(label=_('Quantity')) bom_item = serializers.PrimaryKeyRelatedField(label=_('BOM Item'), read_only=True) # Foreign key fields - bom_item_detail = BomItemSerializer(source='bom_item', many=False, read_only=True, pricing=False) - part_detail = PartSerializer(source='bom_item.sub_part', many=False, read_only=True, pricing=False) + bom_item_detail = part_serializers.BomItemSerializer(source='bom_item', many=False, read_only=True, pricing=False) + part_detail = part_serializers.PartSerializer(source='bom_item.sub_part', many=False, read_only=True, pricing=False) allocations = BuildItemSerializer(many=True, read_only=True) # Annotated (calculated) fields @@ -1164,10 +1267,10 @@ class BuildLineSerializer(InvenTreeModelSerializer): read_only=True ) - available_substitute_stock = serializers.FloatField(read_only=True) - available_variant_stock = serializers.FloatField(read_only=True) - total_available_stock = serializers.FloatField(read_only=True) - external_stock = serializers.FloatField(read_only=True) + available_substitute_stock = serializers.FloatField(read_only=True, label=_('Available Substitute Stock')) + available_variant_stock = serializers.FloatField(read_only=True, label=_('Available Variant Stock')) + total_available_stock = serializers.FloatField(read_only=True, label=_('Total Available Stock')) + external_stock = serializers.FloatField(read_only=True, label=_('External Stock')) @staticmethod def annotate_queryset(queryset, build=None): diff --git a/src/backend/InvenTree/build/templates/build/detail.html b/src/backend/InvenTree/build/templates/build/detail.html index 7daa1dc218..6cabe1f01c 100644 --- a/src/backend/InvenTree/build/templates/build/detail.html +++ b/src/backend/InvenTree/build/templates/build/detail.html @@ -174,7 +174,7 @@
    -

    {% trans "Allocate Stock to Build" %}

    +

    {% trans "Build Order Line Items" %}

    {% include "spacer.html" %}
    {% if roles.build.add and build.active %} @@ -231,6 +231,18 @@
    +
    +
    +

    {% trans "Allocated Stock" %}

    +
    +
    +
    + {% include "filter_list.html" with id='buildorderallocatedstock' %} +
    +
    +
    +
    +

    @@ -290,6 +302,10 @@ {% block js_ready %} {{ block.super }} +onPanelLoad('allocated', function() { + loadBuildOrderAllocatedStockTable($('#allocated-stock-table'), {{ build.pk }}); +}); + onPanelLoad('consumed', function() { loadStockTable($('#consumed-stock-table'), { filterTarget: '#filter-list-consumed-stock', diff --git a/src/backend/InvenTree/build/templates/build/sidebar.html b/src/backend/InvenTree/build/templates/build/sidebar.html index c038b7782a..1c20429f2f 100644 --- a/src/backend/InvenTree/build/templates/build/sidebar.html +++ b/src/backend/InvenTree/build/templates/build/sidebar.html @@ -5,15 +5,19 @@ {% trans "Build Order Details" as text %} {% include "sidebar_item.html" with label='details' text=text icon="fa-info-circle" %} {% if build.is_active %} -{% trans "Allocate Stock" as text %} -{% include "sidebar_item.html" with label='allocate' text=text icon="fa-tasks" %} +{% trans "Line Items" as text %} +{% include "sidebar_item.html" with label='allocate' text=text icon="fa-list-ol" %} {% trans "Incomplete Outputs" as text %} {% include "sidebar_item.html" with label='outputs' text=text icon="fa-tools" %} {% endif %} {% trans "Completed Outputs" as text %} {% include "sidebar_item.html" with label='completed' text=text icon="fa-boxes" %} +{% if build.is_active %} +{% trans "Allocated Stock" as text %} +{% include "sidebar_item.html" with label='allocated' text=text icon="fa-list" %} +{% endif %} {% trans "Consumed Stock" as text %} -{% include "sidebar_item.html" with label='consumed' text=text icon="fa-list" %} +{% include "sidebar_item.html" with label='consumed' text=text icon="fa-tasks" %} {% trans "Child Build Orders" as text %} {% include "sidebar_item.html" with label='children' text=text icon="fa-sitemap" %} {% trans "Attachments" as text %} diff --git a/src/backend/InvenTree/build/test_api.py b/src/backend/InvenTree/build/test_api.py index b240521db6..435db8367e 100644 --- a/src/backend/InvenTree/build/test_api.py +++ b/src/backend/InvenTree/build/test_api.py @@ -564,16 +564,16 @@ class BuildTest(BuildAPITest): def test_download_build_orders(self): """Test that we can download a list of build orders via the API""" required_cols = [ - 'reference', - 'status', - 'completed', - 'batch', - 'notes', - 'title', - 'part', - 'part_name', - 'id', - 'quantity', + 'Reference', + 'Build Status', + 'Completed items', + 'Batch Code', + 'Notes', + 'Description', + 'Part', + 'Part Name', + 'ID', + 'Quantity', ] excluded_cols = [ @@ -597,13 +597,13 @@ class BuildTest(BuildAPITest): for row in data: - build = Build.objects.get(pk=row['id']) + build = Build.objects.get(pk=row['ID']) - self.assertEqual(str(build.part.pk), row['part']) - self.assertEqual(build.part.full_name, row['part_name']) + self.assertEqual(str(build.part.pk), row['Part']) + self.assertEqual(build.part.name, row['Part Name']) - self.assertEqual(build.reference, row['reference']) - self.assertEqual(build.title, row['title']) + self.assertEqual(build.reference, row['Reference']) + self.assertEqual(build.title, row['Description']) class BuildAllocationTest(BuildAPITest): diff --git a/src/backend/InvenTree/build/tests.py b/src/backend/InvenTree/build/tests.py index 4dd7ee0fee..22d38cbeb8 100644 --- a/src/backend/InvenTree/build/tests.py +++ b/src/backend/InvenTree/build/tests.py @@ -1,6 +1,7 @@ """Basic unit tests for the BuildOrder app""" from django.conf import settings +from django.core.exceptions import ValidationError from django.test import tag from django.urls import reverse @@ -9,8 +10,10 @@ from datetime import datetime, timedelta from InvenTree.unit_test import InvenTreeTestCase from .models import Build +from part.models import Part, BomItem from stock.models import StockItem +from common.settings import get_global_setting, set_global_setting from build.status_codes import BuildStatus @@ -88,6 +91,79 @@ class BuildTestSimple(InvenTreeTestCase): self.assertEqual(build.status, BuildStatus.CANCELLED) + def test_build_create(self): + """Test creation of build orders via API.""" + + n = Build.objects.count() + + # Find an assembly part + assembly = Part.objects.filter(assembly=True).first() + + assembly.active = True + assembly.locked = False + assembly.save() + + self.assertEqual(assembly.get_bom_items().count(), 0) + + # Let's create some BOM items for this assembly + for component in Part.objects.filter(assembly=False, component=True)[:15]: + + try: + BomItem.objects.create( + part=assembly, + sub_part=component, + reference='xxx', + quantity=5 + ) + except ValidationError: + pass + + # The assembly has a BOM, and is now *invalid* + self.assertGreater(assembly.get_bom_items().count(), 0) + self.assertFalse(assembly.is_bom_valid()) + + # Create a build for an assembly with an *invalid* BOM + set_global_setting('BUILDORDER_REQUIRE_VALID_BOM', False) + set_global_setting('BUILDORDER_REQUIRE_ACTIVE_PART', True) + set_global_setting('BUILDORDER_REQUIRE_LOCKED_PART', False) + + bo = Build.objects.create(part=assembly, quantity=10, reference='BO-9990') + bo.save() + + # Now, require a *valid* BOM + set_global_setting('BUILDORDER_REQUIRE_VALID_BOM', True) + + with self.assertRaises(ValidationError): + bo = Build.objects.create(part=assembly, quantity=10, reference='BO-9991') + + # Now, validate the BOM, and try again + assembly.validate_bom(None) + self.assertTrue(assembly.is_bom_valid()) + + bo = Build.objects.create(part=assembly, quantity=10, reference='BO-9992') + + # Now, try and create a build for an inactive assembly + assembly.active = False + assembly.save() + + with self.assertRaises(ValidationError): + bo = Build.objects.create(part=assembly, quantity=10, reference='BO-9993') + + set_global_setting('BUILDORDER_REQUIRE_ACTIVE_PART', False) + Build.objects.create(part=assembly, quantity=10, reference='BO-9994') + + # Check that the "locked" requirement works + set_global_setting('BUILDORDER_REQUIRE_LOCKED_PART', True) + with self.assertRaises(ValidationError): + Build.objects.create(part=assembly, quantity=10, reference='BO-9995') + + assembly.locked = True + assembly.save() + + Build.objects.create(part=assembly, quantity=10, reference='BO-9996') + + # Check that expected quantity of new builds is created + self.assertEqual(Build.objects.count(), n + 4) class TestBuildViews(InvenTreeTestCase): """Tests for Build app views.""" diff --git a/src/backend/InvenTree/common/api.py b/src/backend/InvenTree/common/api.py index 9819543a5b..268e2680d2 100644 --- a/src/backend/InvenTree/common/api.py +++ b/src/backend/InvenTree/common/api.py @@ -27,6 +27,7 @@ import common.models import common.serializers from common.settings import get_global_setting from generic.states.api import AllStatusViews, StatusView +from importer.mixins import DataExportViewMixin from InvenTree.api import BulkDeleteMixin, MetadataView from InvenTree.config import CONFIG_LOOKUPS from InvenTree.filters import ORDER_FILTER, SEARCH_ORDER_FILTER @@ -494,7 +495,7 @@ class NotesImageList(ListCreateAPI): image.save() -class ProjectCodeList(ListCreateAPI): +class ProjectCodeList(DataExportViewMixin, ListCreateAPI): """List view for all project codes.""" queryset = common.models.ProjectCode.objects.all() @@ -515,7 +516,7 @@ class ProjectCodeDetail(RetrieveUpdateDestroyAPI): permission_classes = [permissions.IsAuthenticated, IsStaffOrReadOnly] -class CustomUnitList(ListCreateAPI): +class CustomUnitList(DataExportViewMixin, ListCreateAPI): """List view for custom units.""" queryset = common.models.CustomUnit.objects.all() @@ -949,7 +950,7 @@ common_api_urls = [ '/', ContentTypeDetail.as_view(), name='api-contenttype-detail' ), path( - '/', + 'model//', ContentTypeModelDetail.as_view(), name='api-contenttype-detail-modelname', ), diff --git a/src/backend/InvenTree/common/currency.py b/src/backend/InvenTree/common/currency.py index 5590505f12..1769cf8c36 100644 --- a/src/backend/InvenTree/common/currency.py +++ b/src/backend/InvenTree/common/currency.py @@ -59,7 +59,9 @@ def currency_codes() -> list: """Returns the current currency codes.""" from common.settings import get_global_setting - codes = get_global_setting('CURRENCY_CODES', create=False).strip() + codes = get_global_setting( + 'CURRENCY_CODES', create=False, enviroment_key='INVENTREE_CURRENCY_CODES' + ).strip() if not codes: codes = currency_codes_default_list() diff --git a/src/backend/InvenTree/common/forms.py b/src/backend/InvenTree/common/forms.py index b991eec06b..4800149013 100644 --- a/src/backend/InvenTree/common/forms.py +++ b/src/backend/InvenTree/common/forms.py @@ -51,6 +51,9 @@ class MatchFieldForm(forms.Form): super().__init__(*args, **kwargs) + if not file_manager: # pragma: no cover + return + # Setup FileManager file_manager.setup() # Get columns @@ -87,6 +90,9 @@ class MatchItemForm(forms.Form): super().__init__(*args, **kwargs) + if not file_manager: # pragma: no cover + return + # Setup FileManager file_manager.setup() diff --git a/src/backend/InvenTree/common/migrations/0018_projectcode.py b/src/backend/InvenTree/common/migrations/0018_projectcode.py index 6ce6184ffb..544007012a 100644 --- a/src/backend/InvenTree/common/migrations/0018_projectcode.py +++ b/src/backend/InvenTree/common/migrations/0018_projectcode.py @@ -17,5 +17,8 @@ class Migration(migrations.Migration): ('code', models.CharField(help_text='Unique project code', max_length=50, unique=True, verbose_name='Project Code')), ('description', models.CharField(blank=True, help_text='Project description', max_length=200, verbose_name='Description')), ], + options={ + 'verbose_name': 'Project Code', + }, ), ] diff --git a/src/backend/InvenTree/common/migrations/0020_customunit.py b/src/backend/InvenTree/common/migrations/0020_customunit.py index 500d34c683..2c27252cf6 100644 --- a/src/backend/InvenTree/common/migrations/0020_customunit.py +++ b/src/backend/InvenTree/common/migrations/0020_customunit.py @@ -18,5 +18,8 @@ class Migration(migrations.Migration): ('symbol', models.CharField(blank=True, help_text='Optional unit symbol', max_length=10, unique=True, verbose_name='Symbol')), ('definition', models.CharField(help_text='Unit definition', max_length=50, verbose_name='Definition')), ], + options={ + 'verbose_name': 'Custom Unit', + }, ), ] 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 a3b964cbaa..66b78f6476 100644 --- a/src/backend/InvenTree/common/migrations/0023_auto_20240602_1332.py +++ b/src/backend/InvenTree/common/migrations/0023_auto_20240602_1332.py @@ -1,5 +1,6 @@ # Generated by Django 4.2.12 on 2024-06-02 13:32 +from django.conf import settings from django.db import migrations from moneyed import CURRENCIES @@ -47,16 +48,20 @@ def set_currencies(apps, schema_editor): return value = ','.join(valid_codes) - print(f"Found existing currency codes:", value) + + if not settings.TESTING: + print(f"Found existing currency codes:", value) setting = InvenTreeSetting.objects.filter(key=key).first() if setting: - print(f"- Updating existing setting for currency codes") + if not settings.TESTING: + print(f"- Updating existing setting for currency codes") setting.value = value setting.save() else: - print(f"- Creating new setting for currency codes") + if not settings.TESTING: + print(f"- Creating new setting for currency codes") setting = InvenTreeSetting(key=key, value=value) setting.save() diff --git a/src/backend/InvenTree/common/migrations/0027_alter_customunit_symbol.py b/src/backend/InvenTree/common/migrations/0027_alter_customunit_symbol.py new file mode 100644 index 0000000000..a897773201 --- /dev/null +++ b/src/backend/InvenTree/common/migrations/0027_alter_customunit_symbol.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.12 on 2024-07-04 10:32 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('common', '0026_auto_20240608_1238'), + ] + + operations = [ + migrations.AlterField( + model_name='customunit', + name='symbol', + field=models.CharField(blank=True, help_text='Optional unit symbol', max_length=10, verbose_name='Symbol'), + ), + ] diff --git a/src/backend/InvenTree/common/migrations/0028_colortheme_user_obj.py b/src/backend/InvenTree/common/migrations/0028_colortheme_user_obj.py new file mode 100644 index 0000000000..5e2ea45c01 --- /dev/null +++ b/src/backend/InvenTree/common/migrations/0028_colortheme_user_obj.py @@ -0,0 +1,39 @@ +# Generated by Django 4.2.12 on 2024-07-04 10:23 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +def migrate_userthemes(apps, schema_editor): + """Mgrate text-based user references to ForeignKey references.""" + ColorTheme = apps.get_model("common", "ColorTheme") + User = apps.get_model(settings.AUTH_USER_MODEL) + + for theme in ColorTheme.objects.all(): + try: + theme.user_obj = User.objects.get(username=theme.user) + theme.save() + except User.DoesNotExist: + pass + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ("common", "0027_alter_customunit_symbol"), + ] + + operations = [ + migrations.AddField( + model_name="colortheme", + name="user_obj", + field=models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to=settings.AUTH_USER_MODEL, + ), + ), + migrations.RunPython(migrate_userthemes, migrations.RunPython.noop), + ] diff --git a/src/backend/InvenTree/common/models.py b/src/backend/InvenTree/common/models.py index 645abd28e6..a55e829cc8 100644 --- a/src/backend/InvenTree/common/models.py +++ b/src/backend/InvenTree/common/models.py @@ -14,7 +14,7 @@ from datetime import timedelta, timezone from enum import Enum from io import BytesIO from secrets import compare_digest -from typing import Any, Callable, TypedDict, Union +from typing import Any, Callable, Collection, TypedDict, Union from django.apps import apps from django.conf import settings as django_settings @@ -116,6 +116,11 @@ class BaseURLValidator(URLValidator): class ProjectCode(InvenTree.models.InvenTreeMetadataModel): """A ProjectCode is a unique identifier for a project.""" + class Meta: + """Class options for the ProjectCode model.""" + + verbose_name = _('Project Code') + @staticmethod def get_api_url(): """Return the API URL for this model.""" @@ -1391,12 +1396,24 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'default': True, 'validator': bool, }, + 'BARCODE_SHOW_TEXT': { + 'name': _('Barcode Show Data'), + 'description': _('Display barcode data in browser as text'), + 'default': False, + 'validator': bool, + }, 'PART_ENABLE_REVISION': { 'name': _('Part Revisions'), 'description': _('Enable revision field for Part'), 'validator': bool, 'default': True, }, + 'PART_REVISION_ASSEMBLY_ONLY': { + 'name': _('Assembly Revision Only'), + 'description': _('Only allow revisions for assembly parts'), + 'validator': bool, + 'default': False, + }, 'PART_ALLOW_DELETE_FROM_ASSEMBLY': { 'name': _('Allow Deletion from Assembly'), 'description': _('Allow deletion of parts which are used in an assembly'), @@ -1780,6 +1797,26 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'default': False, 'validator': bool, }, + 'BUILDORDER_REQUIRE_ACTIVE_PART': { + 'name': _('Require Active Part'), + 'description': _('Prevent build order creation for inactive parts'), + 'default': False, + 'validator': bool, + }, + 'BUILDORDER_REQUIRE_LOCKED_PART': { + 'name': _('Require Locked Part'), + 'description': _('Prevent build order creation for unlocked parts'), + 'default': False, + 'validator': bool, + }, + 'BUILDORDER_REQUIRE_VALID_BOM': { + 'name': _('Require Valid BOM'), + 'description': _( + 'Prevent build order creation unless BOM has been validated' + ), + 'default': False, + 'validator': bool, + }, 'PREVENT_BUILD_COMPLETION_HAVING_INCOMPLETED_TESTS': { 'name': _('Block Until Tests Pass'), 'description': _( @@ -1909,6 +1946,38 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'default': False, 'validator': bool, }, + 'LOGIN_ENABLE_SSO_GROUP_SYNC': { + 'name': _('Enable SSO group sync'), + 'description': _( + 'Enable synchronizing InvenTree groups with groups provided by the IdP' + ), + 'default': False, + 'validator': bool, + }, + 'SSO_GROUP_KEY': { + 'name': _('SSO group key'), + 'description': _( + 'The name of the groups claim attribute provided by the IdP' + ), + 'default': 'groups', + 'validator': str, + }, + 'SSO_GROUP_MAP': { + 'name': _('SSO group map'), + 'description': _( + 'A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created.' + ), + 'validator': json.loads, + 'default': '{}', + }, + 'SSO_REMOVE_GROUPS': { + 'name': _('Remove groups outside of SSO'), + 'description': _( + 'Whether groups assigned to the user should be removed if they are not backend by the IdP. Disabling this setting might cause security issues' + ), + 'default': True, + 'validator': bool, + }, 'LOGIN_MAIL_REQUIRED': { 'name': _('Email required'), 'description': _('Require user to supply mail on signup'), @@ -1945,7 +2014,9 @@ class InvenTreeSetting(BaseInvenTreeSetting): }, 'SIGNUP_GROUP': { 'name': _('Group on signup'), - 'description': _('Group to which new users are assigned on registration'), + 'description': _( + 'Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP.' + ), 'default': '', 'choices': settings_group_options, }, @@ -2426,36 +2497,6 @@ class InvenTreeUserSetting(BaseInvenTreeSetting): 'validator': [int, MinValueValidator(0)], 'default': 100, }, - 'DEFAULT_PART_LABEL_TEMPLATE': { - 'name': _('Default part label template'), - 'description': _('The part label template to be automatically selected'), - 'validator': [int], - 'default': '', - }, - 'DEFAULT_ITEM_LABEL_TEMPLATE': { - 'name': _('Default stock item template'), - 'description': _( - 'The stock item label template to be automatically selected' - ), - 'validator': [int], - 'default': '', - }, - 'DEFAULT_LOCATION_LABEL_TEMPLATE': { - 'name': _('Default stock location label template'), - 'description': _( - 'The stock location label template to be automatically selected' - ), - 'validator': [int], - 'default': '', - }, - 'DEFAULT_LINE_LABEL_TEMPLATE': { - 'name': _('Default build line label template'), - 'description': _( - 'The build line label template to be automatically selected' - ), - 'validator': [int], - 'default': '', - }, 'NOTIFICATION_ERROR_REPORT': { 'name': _('Receive error reports'), 'description': _('Receive notifications for system errors'), @@ -2543,6 +2584,7 @@ class ColorTheme(models.Model): name = models.CharField(max_length=20, default='', blank=True) user = models.CharField(max_length=150, unique=True) + user_obj = models.ForeignKey(User, on_delete=models.CASCADE, blank=True, null=True) @classmethod def get_color_themes_choices(cls): @@ -2993,6 +3035,11 @@ class CustomUnit(models.Model): https://pint.readthedocs.io/en/stable/advanced/defining.html """ + class Meta: + """Class meta options.""" + + verbose_name = _('Custom Unit') + def fmt_string(self): """Construct a unit definition string e.g. 'dog_year = 52 * day = dy'.""" fmt = f'{self.name} = {self.definition}' @@ -3002,6 +3049,18 @@ class CustomUnit(models.Model): return fmt + def validate_unique(self, exclude=None) -> None: + """Ensure that the custom unit is unique.""" + super().validate_unique(exclude) + + if self.symbol: + if ( + CustomUnit.objects.filter(symbol=self.symbol) + .exclude(pk=self.pk) + .exists() + ): + raise ValidationError({'symbol': _('Unit symbol must be unique')}) + def clean(self): """Validate that the provided custom unit is indeed valid.""" super().clean() @@ -3043,7 +3102,6 @@ class CustomUnit(models.Model): max_length=10, verbose_name=_('Symbol'), help_text=_('Optional unit symbol'), - unique=True, blank=True, ) diff --git a/src/backend/InvenTree/common/serializers.py b/src/backend/InvenTree/common/serializers.py index 0e0c7d1850..45b681cb19 100644 --- a/src/backend/InvenTree/common/serializers.py +++ b/src/backend/InvenTree/common/serializers.py @@ -14,6 +14,8 @@ from taggit.serializers import TagListSerializerField import common.models as common_models import common.validators +from importer.mixins import DataImportExportSerializerMixin +from importer.registry import register_importer from InvenTree.helpers import get_objectreference from InvenTree.helpers_model import construct_absolute_url from InvenTree.serializers import ( @@ -293,7 +295,8 @@ class NotesImageSerializer(InvenTreeModelSerializer): image = InvenTreeImageSerializerField(required=True) -class ProjectCodeSerializer(InvenTreeModelSerializer): +@register_importer() +class ProjectCodeSerializer(DataImportExportSerializerMixin, InvenTreeModelSerializer): """Serializer for the ProjectCode model.""" class Meta: @@ -341,7 +344,8 @@ class ContentTypeSerializer(serializers.Serializer): return obj.app_label in plugin_registry.installed_apps -class CustomUnitSerializer(InvenTreeModelSerializer): +@register_importer() +class CustomUnitSerializer(DataImportExportSerializerMixin, InvenTreeModelSerializer): """DRF serializer for CustomUnit model.""" class Meta: diff --git a/src/backend/InvenTree/common/settings.py b/src/backend/InvenTree/common/settings.py index 6788b427e2..08b8b6be38 100644 --- a/src/backend/InvenTree/common/settings.py +++ b/src/backend/InvenTree/common/settings.py @@ -1,10 +1,17 @@ """User-configurable settings for the common app.""" +from os import environ -def get_global_setting(key, backup_value=None, **kwargs): + +def get_global_setting(key, backup_value=None, enviroment_key=None, **kwargs): """Return the value of a global setting using the provided key.""" from common.models import InvenTreeSetting + if enviroment_key: + value = environ.get(enviroment_key) + if value: + return value + if backup_value is not None: kwargs['backup_value'] = backup_value diff --git a/src/backend/InvenTree/common/tests.py b/src/backend/InvenTree/common/tests.py index f936fddfb9..9c3dea87d7 100644 --- a/src/backend/InvenTree/common/tests.py +++ b/src/backend/InvenTree/common/tests.py @@ -1376,7 +1376,7 @@ class ProjectCodesTest(InvenTreeAPITestCase): ) self.assertIn( - 'project code with this Project Code already exists', + 'Project Code with this Project Code already exists', str(response.data['code']), ) diff --git a/src/backend/InvenTree/company/admin.py b/src/backend/InvenTree/company/admin.py index 93ad536b91..ae33a409ba 100644 --- a/src/backend/InvenTree/company/admin.py +++ b/src/backend/InvenTree/company/admin.py @@ -6,6 +6,8 @@ from import_export import widgets from import_export.admin import ImportExportModelAdmin from import_export.fields import Field +import company.serializers +import importer.admin from InvenTree.admin import InvenTreeResource from part.models import Part @@ -33,9 +35,10 @@ class CompanyResource(InvenTreeResource): @admin.register(Company) -class CompanyAdmin(ImportExportModelAdmin): +class CompanyAdmin(importer.admin.DataExportAdmin, ImportExportModelAdmin): """Admin class for the Company model.""" + serializer_class = company.serializers.CompanySerializer resource_class = CompanyResource list_display = ('name', 'website', 'contact') diff --git a/src/backend/InvenTree/company/api.py b/src/backend/InvenTree/company/api.py index de5118d805..b0b9fcfe98 100644 --- a/src/backend/InvenTree/company/api.py +++ b/src/backend/InvenTree/company/api.py @@ -7,12 +7,9 @@ from django.utils.translation import gettext_lazy as _ from django_filters import rest_framework as rest_filters import part.models +from importer.mixins import DataExportViewMixin from InvenTree.api import ListCreateDestroyAPIView, MetadataView -from InvenTree.filters import ( - ORDER_FILTER, - SEARCH_ORDER_FILTER, - SEARCH_ORDER_FILTER_ALIAS, -) +from InvenTree.filters import SEARCH_ORDER_FILTER, SEARCH_ORDER_FILTER_ALIAS from InvenTree.helpers import str2bool from InvenTree.mixins import ListCreateAPI, RetrieveUpdateDestroyAPI @@ -36,7 +33,7 @@ from .serializers import ( ) -class CompanyList(ListCreateAPI): +class CompanyList(DataExportViewMixin, ListCreateAPI): """API endpoint for accessing a list of Company objects. Provides two methods: @@ -84,7 +81,7 @@ class CompanyDetail(RetrieveUpdateDestroyAPI): return queryset -class ContactList(ListCreateDestroyAPIView): +class ContactList(DataExportViewMixin, ListCreateDestroyAPIView): """API endpoint for list view of Company model.""" queryset = Contact.objects.all() @@ -108,7 +105,7 @@ class ContactDetail(RetrieveUpdateDestroyAPI): serializer_class = ContactSerializer -class AddressList(ListCreateDestroyAPIView): +class AddressList(DataExportViewMixin, ListCreateDestroyAPIView): """API endpoint for list view of Address model.""" queryset = Address.objects.all() @@ -149,7 +146,7 @@ class ManufacturerPartFilter(rest_filters.FilterSet): ) -class ManufacturerPartList(ListCreateDestroyAPIView): +class ManufacturerPartList(DataExportViewMixin, ListCreateDestroyAPIView): """API endpoint for list view of ManufacturerPart object. - GET: Return list of ManufacturerPart objects @@ -297,7 +294,7 @@ class SupplierPartFilter(rest_filters.FilterSet): ) -class SupplierPartList(ListCreateDestroyAPIView): +class SupplierPartList(DataExportViewMixin, ListCreateDestroyAPIView): """API endpoint for list view of SupplierPart object. - GET: Return list of SupplierPart objects diff --git a/src/backend/InvenTree/company/migrations/0001_initial.py b/src/backend/InvenTree/company/migrations/0001_initial.py index cfc73bea20..6c6f31f938 100644 --- a/src/backend/InvenTree/company/migrations/0001_initial.py +++ b/src/backend/InvenTree/company/migrations/0001_initial.py @@ -44,6 +44,9 @@ class Migration(migrations.Migration): ('email', models.EmailField(blank=True, max_length=254)), ('role', models.CharField(blank=True, max_length=100)), ], + options={ + 'verbose_name': 'Contact', + } ), migrations.CreateModel( name='SupplierPart', @@ -75,6 +78,7 @@ class Migration(migrations.Migration): ('part', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='pricebreaks', to='company.SupplierPart')), ], options={ + 'verbose_name': 'Supplier Price Break', 'db_table': 'part_supplierpricebreak', }, ), diff --git a/src/backend/InvenTree/company/migrations/0032_auto_20210403_1837.py b/src/backend/InvenTree/company/migrations/0032_auto_20210403_1837.py index d9c83d75ed..8b5f6fb89f 100644 --- a/src/backend/InvenTree/company/migrations/0032_auto_20210403_1837.py +++ b/src/backend/InvenTree/company/migrations/0032_auto_20210403_1837.py @@ -23,17 +23,17 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='company', name='is_customer', - field=models.BooleanField(default=False, help_text='Do you sell items to this company?', verbose_name='is customer'), + field=models.BooleanField(default=False, help_text='Do you sell items to this company?', verbose_name='Is customer'), ), migrations.AlterField( model_name='company', name='is_manufacturer', - field=models.BooleanField(default=False, help_text='Does this company manufacture parts?', verbose_name='is manufacturer'), + field=models.BooleanField(default=False, help_text='Does this company manufacture parts?', verbose_name='Is manufacturer'), ), migrations.AlterField( model_name='company', name='is_supplier', - field=models.BooleanField(default=True, help_text='Do you purchase items from this company?', verbose_name='is supplier'), + field=models.BooleanField(default=True, help_text='Do you purchase items from this company?', verbose_name='Is supplier'), ), migrations.AlterField( model_name='company', diff --git a/src/backend/InvenTree/company/migrations/0038_manufacturerpartparameter.py b/src/backend/InvenTree/company/migrations/0038_manufacturerpartparameter.py index dccfa715e8..dd833ccfa3 100644 --- a/src/backend/InvenTree/company/migrations/0038_manufacturerpartparameter.py +++ b/src/backend/InvenTree/company/migrations/0038_manufacturerpartparameter.py @@ -21,6 +21,7 @@ class Migration(migrations.Migration): ('manufacturer_part', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='parameters', to='company.manufacturerpart', verbose_name='Manufacturer Part')), ], options={ + 'verbose_name': 'Manufacturer Part Parameter', 'unique_together': {('manufacturer_part', 'name')}, }, ), diff --git a/src/backend/InvenTree/company/migrations/0066_auto_20230616_2059.py b/src/backend/InvenTree/company/migrations/0066_auto_20230616_2059.py index 19ce798301..f5160f3255 100644 --- a/src/backend/InvenTree/company/migrations/0066_auto_20230616_2059.py +++ b/src/backend/InvenTree/company/migrations/0066_auto_20230616_2059.py @@ -12,7 +12,10 @@ class Migration(migrations.Migration): operations = [ migrations.AlterModelOptions( name='address', - options={'verbose_name_plural': 'Addresses'}, + options={ + 'verbose_name': 'Address', + 'verbose_name_plural': 'Addresses' + }, ), migrations.AlterField( model_name='address', diff --git a/src/backend/InvenTree/company/migrations/0071_manufacturerpart_notes_supplierpart_notes.py b/src/backend/InvenTree/company/migrations/0071_manufacturerpart_notes_supplierpart_notes.py new file mode 100644 index 0000000000..b7d6c8caf7 --- /dev/null +++ b/src/backend/InvenTree/company/migrations/0071_manufacturerpart_notes_supplierpart_notes.py @@ -0,0 +1,24 @@ +# Generated by Django 4.2.11 on 2024-07-16 12:58 + +import InvenTree.fields +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('company', '0070_remove_manufacturerpartattachment_manufacturer_part_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='manufacturerpart', + name='notes', + field=InvenTree.fields.InvenTreeNotesField(blank=True, help_text='Markdown notes (optional)', max_length=50000, null=True, verbose_name='Notes'), + ), + migrations.AddField( + model_name='supplierpart', + name='notes', + field=InvenTree.fields.InvenTreeNotesField(blank=True, help_text='Markdown notes (optional)', max_length=50000, null=True, verbose_name='Notes'), + ), + ] diff --git a/src/backend/InvenTree/company/models.py b/src/backend/InvenTree/company/models.py index 8683be248e..52eeb80cdc 100644 --- a/src/backend/InvenTree/company/models.py +++ b/src/backend/InvenTree/company/models.py @@ -165,19 +165,19 @@ class Company( is_customer = models.BooleanField( default=False, - verbose_name=_('is customer'), + verbose_name=_('Is customer'), help_text=_('Do you sell items to this company?'), ) is_supplier = models.BooleanField( default=True, - verbose_name=_('is supplier'), + verbose_name=_('Is supplier'), help_text=_('Do you purchase items from this company?'), ) is_manufacturer = models.BooleanField( default=False, - verbose_name=_('is manufacturer'), + verbose_name=_('Is manufacturer'), help_text=_('Does this company manufacture parts?'), ) @@ -269,6 +269,11 @@ class Contact(InvenTree.models.InvenTreeMetadataModel): role: position in company """ + class Meta: + """Metaclass defines extra model options.""" + + verbose_name = _('Contact') + @staticmethod def get_api_url(): """Return the API URL associated with the Contcat model.""" @@ -306,7 +311,8 @@ class Address(InvenTree.models.InvenTreeModel): class Meta: """Metaclass defines extra model options.""" - verbose_name_plural = 'Addresses' + verbose_name = _('Address') + verbose_name_plural = _('Addresses') def __init__(self, *args, **kwargs): """Custom init function.""" @@ -445,6 +451,7 @@ class Address(InvenTree.models.InvenTreeModel): class ManufacturerPart( InvenTree.models.InvenTreeAttachmentMixin, InvenTree.models.InvenTreeBarcodeMixin, + InvenTree.models.InvenTreeNotesMixin, InvenTree.models.InvenTreeMetadataModel, ): """Represents a unique part as provided by a Manufacturer Each ManufacturerPart is identified by a MPN (Manufacturer Part Number) Each ManufacturerPart is also linked to a Part object. A Part may be available from multiple manufacturers. @@ -560,6 +567,7 @@ class ManufacturerPartParameter(InvenTree.models.InvenTreeModel): class Meta: """Metaclass defines extra model options.""" + verbose_name = _('Manufacturer Part Parameter') unique_together = ('manufacturer_part', 'name') @staticmethod @@ -617,6 +625,7 @@ class SupplierPartManager(models.Manager): class SupplierPart( InvenTree.models.MetadataMixin, InvenTree.models.InvenTreeBarcodeMixin, + InvenTree.models.InvenTreeNotesMixin, common.models.MetaMixin, InvenTree.models.InvenTreeModel, ): @@ -1005,6 +1014,7 @@ class SupplierPriceBreak(common.models.PriceBreak): class Meta: """Metaclass defines extra model options.""" + verbose_name = _('Supplier Price Break') unique_together = ('part', 'quantity') # This model was moved from the 'Part' app diff --git a/src/backend/InvenTree/company/serializers.py b/src/backend/InvenTree/company/serializers.py index 453ff21b42..428ea7b5b8 100644 --- a/src/backend/InvenTree/company/serializers.py +++ b/src/backend/InvenTree/company/serializers.py @@ -10,6 +10,9 @@ from sql_util.utils import SubqueryCount from taggit.serializers import TagListSerializerField import part.filters +import part.serializers as part_serializers +from importer.mixins import DataImportExportSerializerMixin +from importer.registry import register_importer from InvenTree.serializers import ( InvenTreeCurrencySerializer, InvenTreeDecimalField, @@ -20,7 +23,6 @@ from InvenTree.serializers import ( NotesFieldMixin, RemoteImageMixin, ) -from part.serializers import PartBriefSerializer from .models import ( Address, @@ -56,7 +58,8 @@ class CompanyBriefSerializer(InvenTreeModelSerializer): thumbnail = serializers.CharField(source='get_thumbnail_url', read_only=True) -class AddressSerializer(InvenTreeModelSerializer): +@register_importer() +class AddressSerializer(DataImportExportSerializerMixin, InvenTreeModelSerializer): """Serializer for the Address Model.""" class Meta: @@ -100,9 +103,19 @@ class AddressBriefSerializer(InvenTreeModelSerializer): ] -class CompanySerializer(NotesFieldMixin, RemoteImageMixin, InvenTreeModelSerializer): +@register_importer() +class CompanySerializer( + DataImportExportSerializerMixin, + NotesFieldMixin, + RemoteImageMixin, + InvenTreeModelSerializer, +): """Serializer for Company object (full detail).""" + export_exclude_fields = ['url', 'primary_address'] + + import_exclude_fields = ['image'] + class Meta: """Metaclass options.""" @@ -183,17 +196,25 @@ class CompanySerializer(NotesFieldMixin, RemoteImageMixin, InvenTreeModelSeriali return self.instance -class ContactSerializer(InvenTreeModelSerializer): +@register_importer() +class ContactSerializer(DataImportExportSerializerMixin, InvenTreeModelSerializer): """Serializer class for the Contact model.""" class Meta: """Metaclass options.""" model = Contact - fields = ['pk', 'company', 'name', 'phone', 'email', 'role'] + fields = ['pk', 'company', 'company_name', 'name', 'phone', 'email', 'role'] + + company_name = serializers.CharField( + label=_('Company Name'), source='company.name', read_only=True + ) -class ManufacturerPartSerializer(InvenTreeTagModelSerializer): +@register_importer() +class ManufacturerPartSerializer( + DataImportExportSerializerMixin, InvenTreeTagModelSerializer, NotesFieldMixin +): """Serializer for ManufacturerPart object.""" class Meta: @@ -211,6 +232,7 @@ class ManufacturerPartSerializer(InvenTreeTagModelSerializer): 'MPN', 'link', 'barcode_hash', + 'notes', 'tags', ] @@ -225,15 +247,17 @@ class ManufacturerPartSerializer(InvenTreeTagModelSerializer): super().__init__(*args, **kwargs) if part_detail is not True: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) if manufacturer_detail is not True: - self.fields.pop('manufacturer_detail') + self.fields.pop('manufacturer_detail', None) if prettify is not True: - self.fields.pop('pretty_name') + self.fields.pop('pretty_name', None) - part_detail = PartBriefSerializer(source='part', many=False, read_only=True) + part_detail = part_serializers.PartBriefSerializer( + source='part', many=False, read_only=True + ) manufacturer_detail = CompanyBriefSerializer( source='manufacturer', many=False, read_only=True @@ -246,7 +270,10 @@ class ManufacturerPartSerializer(InvenTreeTagModelSerializer): ) -class ManufacturerPartParameterSerializer(InvenTreeModelSerializer): +@register_importer() +class ManufacturerPartParameterSerializer( + DataImportExportSerializerMixin, InvenTreeModelSerializer +): """Serializer for the ManufacturerPartParameter model.""" class Meta: @@ -270,14 +297,17 @@ class ManufacturerPartParameterSerializer(InvenTreeModelSerializer): super().__init__(*args, **kwargs) if not man_detail: - self.fields.pop('manufacturer_part_detail') + self.fields.pop('manufacturer_part_detail', None) manufacturer_part_detail = ManufacturerPartSerializer( source='manufacturer_part', many=False, read_only=True ) -class SupplierPartSerializer(InvenTreeTagModelSerializer): +@register_importer() +class SupplierPartSerializer( + DataImportExportSerializerMixin, InvenTreeTagModelSerializer, NotesFieldMixin +): """Serializer for SupplierPart object.""" class Meta: @@ -311,6 +341,7 @@ class SupplierPartSerializer(InvenTreeTagModelSerializer): 'supplier_detail', 'url', 'updated', + 'notes', 'tags', ] @@ -341,17 +372,17 @@ class SupplierPartSerializer(InvenTreeTagModelSerializer): super().__init__(*args, **kwargs) if part_detail is not True: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) if supplier_detail is not True: - self.fields.pop('supplier_detail') + self.fields.pop('supplier_detail', None) if manufacturer_detail is not True: - self.fields.pop('manufacturer_detail') - self.fields.pop('manufacturer_part_detail') + self.fields.pop('manufacturer_detail', None) + self.fields.pop('manufacturer_part_detail', None) if prettify is not True: - self.fields.pop('pretty_name') + self.fields.pop('pretty_name', None) # Annotated field showing total in-stock quantity in_stock = serializers.FloatField(read_only=True, label=_('In Stock')) @@ -360,7 +391,9 @@ class SupplierPartSerializer(InvenTreeTagModelSerializer): pack_quantity_native = serializers.FloatField(read_only=True) - part_detail = PartBriefSerializer(source='part', many=False, read_only=True) + part_detail = part_serializers.PartBriefSerializer( + source='part', many=False, read_only=True + ) supplier_detail = CompanyBriefSerializer( source='supplier', many=False, read_only=True @@ -435,7 +468,10 @@ class SupplierPartSerializer(InvenTreeTagModelSerializer): return supplier_part -class SupplierPriceBreakSerializer(InvenTreeModelSerializer): +@register_importer() +class SupplierPriceBreakSerializer( + DataImportExportSerializerMixin, InvenTreeModelSerializer +): """Serializer for SupplierPriceBreak object.""" class Meta: @@ -462,10 +498,10 @@ class SupplierPriceBreakSerializer(InvenTreeModelSerializer): super().__init__(*args, **kwargs) if not supplier_detail: - self.fields.pop('supplier_detail') + self.fields.pop('supplier_detail', None) if not part_detail: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) quantity = InvenTreeDecimalField() diff --git a/src/backend/InvenTree/company/templates/company/manufacturer_part.html b/src/backend/InvenTree/company/templates/company/manufacturer_part.html index a4676a9086..7d07fe282e 100644 --- a/src/backend/InvenTree/company/templates/company/manufacturer_part.html +++ b/src/backend/InvenTree/company/templates/company/manufacturer_part.html @@ -171,11 +171,40 @@ src="{% static 'img/blank_image.png' %}"

    +
    +
    +
    +

    {% trans "Manufacturer Part Notes" %}

    + {% include "spacer.html" %} +
    + {% include "notes_buttons.html" %} +
    +
    +
    +
    + +
    +
    + {% endblock page_content %} {% block js_ready %} {{ block.super }} +// Load the "notes" tab +onPanelLoad('manufacturer-part-notes', function() { + + setupNotesField( + 'manufacturer-part-notes', + '{% url "api-manufacturer-part-detail" part.pk %}', + { + model_type: "manufacturerpart", + model_id: {{ part.pk }}, + editable: {% js_bool roles.purchase_order.change %}, + } + ); +}); + onPanelLoad("attachments", function() { loadAttachmentTable('manufacturerpart', {{ part.pk }}); }); diff --git a/src/backend/InvenTree/company/templates/company/manufacturer_part_sidebar.html b/src/backend/InvenTree/company/templates/company/manufacturer_part_sidebar.html index 64f8f950b0..fb538cb290 100644 --- a/src/backend/InvenTree/company/templates/company/manufacturer_part_sidebar.html +++ b/src/backend/InvenTree/company/templates/company/manufacturer_part_sidebar.html @@ -8,3 +8,5 @@ {% include "sidebar_item.html" with label='supplier-parts' text=text icon="fa-building" %} {% trans "Attachments" as text %} {% include "sidebar_item.html" with label='attachments' text=text icon="fa-paperclip" %} +{% trans "Notes" as text %} +{% include "sidebar_item.html" with label="manufacturer-part-notes" text=text icon="fa-clipboard" %} diff --git a/src/backend/InvenTree/company/templates/company/supplier_part.html b/src/backend/InvenTree/company/templates/company/supplier_part.html index 2949926cb7..16841c5570 100644 --- a/src/backend/InvenTree/company/templates/company/supplier_part.html +++ b/src/backend/InvenTree/company/templates/company/supplier_part.html @@ -264,11 +264,40 @@ src="{% static 'img/blank_image.png' %}"
    +
    +
    +
    +

    {% trans "Supplier Part Notes" %}

    + {% include "spacer.html" %} +
    + {% include "notes_buttons.html" %} +
    +
    +
    +
    + +
    +
    + {% endblock page_content %} {% block js_ready %} {{ block.super }} +// Load the "notes" tab +onPanelLoad('supplier-part-notes', function() { + + setupNotesField( + 'supplier-part-notes', + '{% url "api-supplier-part-detail" part.pk %}', + { + model_type: "supplierpart", + model_id: {{ part.pk }}, + editable: {% js_bool roles.purchase_order.change %}, + } + ); +}); + {% if barcodes %} $("#show-qr-code").click(function() { diff --git a/src/backend/InvenTree/company/templates/company/supplier_part_sidebar.html b/src/backend/InvenTree/company/templates/company/supplier_part_sidebar.html index 91c0682e00..d6cd017500 100644 --- a/src/backend/InvenTree/company/templates/company/supplier_part_sidebar.html +++ b/src/backend/InvenTree/company/templates/company/supplier_part_sidebar.html @@ -8,3 +8,5 @@ {% include "sidebar_item.html" with label='purchase-orders' text=text icon="fa-shopping-cart" %} {% trans "Supplier Part Pricing" as text %} {% include "sidebar_item.html" with label='pricing' text=text icon="fa-dollar-sign" %} +{% trans "Notes" as text %} +{% include "sidebar_item.html" with label="supplier-part-notes" text=text icon="fa-clipboard" %} diff --git a/src/backend/InvenTree/company/test_api.py b/src/backend/InvenTree/company/test_api.py index 65b55089a3..afe04e6653 100644 --- a/src/backend/InvenTree/company/test_api.py +++ b/src/backend/InvenTree/company/test_api.py @@ -57,22 +57,20 @@ class CompanyTest(InvenTreeAPITestCase): def test_company_detail(self): """Tests for the Company detail endpoint.""" url = reverse('api-company-detail', kwargs={'pk': self.acme.pk}) - response = self.get(url) + response = self.get(url, expected_code=200) + self.assertIn('name', response.data.keys()) self.assertEqual(response.data['name'], 'ACME') # Change the name of the company # Note we should not have the correct permissions (yet) data = response.data - response = self.client.patch(url, data, format='json', expected_code=400) - - self.assignRole('company.change') # Update the name and set the currency to a valid value data['name'] = 'ACMOO' data['currency'] = 'NZD' - response = self.client.patch(url, data, format='json', expected_code=200) + response = self.patch(url, data, expected_code=200) self.assertEqual(response.data['name'], 'ACMOO') self.assertEqual(response.data['currency'], 'NZD') diff --git a/src/backend/InvenTree/importer/__init__.py b/src/backend/InvenTree/importer/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/backend/InvenTree/importer/admin.py b/src/backend/InvenTree/importer/admin.py new file mode 100644 index 0000000000..01a12799aa --- /dev/null +++ b/src/backend/InvenTree/importer/admin.py @@ -0,0 +1,80 @@ +"""Admin site specification for the 'importer' app.""" + +from django.contrib import admin +from django.urls import path + +import importer.models +import importer.registry + + +class DataImportColumnMapAdmin(admin.TabularInline): + """Inline admin for DataImportColumnMap model.""" + + model = importer.models.DataImportColumnMap + can_delete = False + max_num = 0 + + def get_readonly_fields(self, request, obj=None): + """Return the readonly fields for the admin interface.""" + return ['field'] + + def formfield_for_dbfield(self, db_field, request, **kwargs): + """Override the choices for the column field.""" + if db_field.name == 'column': + # TODO: Implement this! + queryset = self.get_queryset(request) + + if queryset.count() > 0: + session = queryset.first().session + db_field.choices = [(col, col) for col in session.columns] + + return super().formfield_for_choice_field(db_field, request, **kwargs) + + +@admin.register(importer.models.DataImportSession) +class DataImportSessionAdmin(admin.ModelAdmin): + """Admin interface for the DataImportSession model.""" + + list_display = ['id', 'data_file', 'status', 'user'] + + list_filter = ['status'] + + inlines = [DataImportColumnMapAdmin] + + def get_readonly_fields(self, request, obj=None): + """Update the readonly fields for the admin interface.""" + fields = ['columns', 'status', 'timestamp'] + + # Prevent data file from being edited after upload! + if obj: + fields += ['data_file'] + else: + fields += ['field_mapping'] + + return fields + + def formfield_for_dbfield(self, db_field, request, **kwargs): + """Override the choices for the model_type field.""" + if db_field.name == 'model_type': + db_field.choices = importer.registry.supported_model_options() + + return super().formfield_for_dbfield(db_field, request, **kwargs) + + +@admin.register(importer.models.DataImportRow) +class DataImportRowAdmin(admin.ModelAdmin): + """Admin interface for the DataImportRow model.""" + + list_display = ['id', 'session', 'row_index'] + + def get_readonly_fields(self, request, obj=None): + """Return the readonly fields for the admin interface.""" + return ['session', 'row_index', 'row_data', 'errors', 'valid'] + + +class DataExportAdmin(admin.ModelAdmin): + """Custom admin class mixin allowing for data export functionality.""" + + serializer_class = None + + # TODO: Add custom admin action to export queryset data diff --git a/src/backend/InvenTree/importer/api.py b/src/backend/InvenTree/importer/api.py new file mode 100644 index 0000000000..b039c61063 --- /dev/null +++ b/src/backend/InvenTree/importer/api.py @@ -0,0 +1,200 @@ +"""API endpoints for the importer app.""" + +from django.shortcuts import get_object_or_404 +from django.urls import include, path + +from drf_spectacular.utils import extend_schema +from rest_framework import permissions +from rest_framework.response import Response +from rest_framework.views import APIView + +import importer.models +import importer.registry +import importer.serializers +from InvenTree.api import BulkDeleteMixin +from InvenTree.filters import SEARCH_ORDER_FILTER +from InvenTree.mixins import ( + CreateAPI, + ListAPI, + ListCreateAPI, + RetrieveUpdateAPI, + RetrieveUpdateDestroyAPI, +) + + +class DataImporterModelList(APIView): + """API endpoint for displaying a list of models available for import.""" + + permission_classes = [permissions.IsAuthenticated] + + def get(self, request): + """Return a list of models available for import.""" + models = [] + + for serializer in importer.registry.get_supported_serializers(): + model = serializer.Meta.model + url = model.get_api_url() if hasattr(model, 'get_api_url') else None + + models.append({ + 'serializer': str(serializer.__name__), + 'model_type': model.__name__.lower(), + 'api_url': url, + }) + + return Response(models) + + +class DataImportSessionList(BulkDeleteMixin, ListCreateAPI): + """API endpoint for accessing a list of DataImportSession objects.""" + + queryset = importer.models.DataImportSession.objects.all() + serializer_class = importer.serializers.DataImportSessionSerializer + + filter_backends = SEARCH_ORDER_FILTER + + filterset_fields = ['model_type', 'status', 'user'] + + ordering_fields = ['timestamp', 'status', 'model_type'] + + +class DataImportSessionDetail(RetrieveUpdateDestroyAPI): + """Detail endpoint for a single DataImportSession object.""" + + queryset = importer.models.DataImportSession.objects.all() + serializer_class = importer.serializers.DataImportSessionSerializer + + +class DataImportSessionAcceptFields(APIView): + """API endpoint to accept the field mapping for a DataImportSession.""" + + permission_classes = [permissions.IsAuthenticated] + + @extend_schema( + responses={200: importer.serializers.DataImportSessionSerializer(many=False)} + ) + def post(self, request, pk): + """Accept the field mapping for a DataImportSession.""" + session = get_object_or_404(importer.models.DataImportSession, pk=pk) + + # Attempt to accept the mapping (may raise an exception if the mapping is invalid) + session.accept_mapping() + + return Response(importer.serializers.DataImportSessionSerializer(session).data) + + +class DataImportSessionAcceptRows(CreateAPI): + """API endpoint to accept the rows for a DataImportSession.""" + + queryset = importer.models.DataImportSession.objects.all() + serializer_class = importer.serializers.DataImportAcceptRowSerializer + + def get_serializer_context(self): + """Add the import session object to the serializer context.""" + ctx = super().get_serializer_context() + + try: + ctx['session'] = importer.models.DataImportSession.objects.get( + pk=self.kwargs.get('pk', None) + ) + except Exception: + pass + + ctx['request'] = self.request + return ctx + + +class DataImportColumnMappingList(ListAPI): + """API endpoint for accessing a list of DataImportColumnMap objects.""" + + queryset = importer.models.DataImportColumnMap.objects.all() + serializer_class = importer.serializers.DataImportColumnMapSerializer + + filter_backends = SEARCH_ORDER_FILTER + + filterset_fields = ['session'] + + +class DataImportColumnMappingDetail(RetrieveUpdateAPI): + """Detail endpoint for a single DataImportColumnMap object.""" + + queryset = importer.models.DataImportColumnMap.objects.all() + serializer_class = importer.serializers.DataImportColumnMapSerializer + + +class DataImportRowList(BulkDeleteMixin, ListAPI): + """API endpoint for accessing a list of DataImportRow objects.""" + + queryset = importer.models.DataImportRow.objects.all() + serializer_class = importer.serializers.DataImportRowSerializer + + filter_backends = SEARCH_ORDER_FILTER + + filterset_fields = ['session', 'valid', 'complete'] + + ordering_fields = ['pk', 'row_index', 'valid'] + + ordering = 'row_index' + + +class DataImportRowDetail(RetrieveUpdateDestroyAPI): + """Detail endpoint for a single DataImportRow object.""" + + queryset = importer.models.DataImportRow.objects.all() + serializer_class = importer.serializers.DataImportRowSerializer + + +importer_api_urls = [ + path('models/', DataImporterModelList.as_view(), name='api-importer-model-list'), + path( + 'session/', + include([ + path( + '/', + include([ + path( + 'accept_fields/', + DataImportSessionAcceptFields.as_view(), + name='api-import-session-accept-fields', + ), + path( + 'accept_rows/', + DataImportSessionAcceptRows.as_view(), + name='api-import-session-accept-rows', + ), + path( + '', + DataImportSessionDetail.as_view(), + name='api-import-session-detail', + ), + ]), + ), + path('', DataImportSessionList.as_view(), name='api-importer-session-list'), + ]), + ), + path( + 'column-mapping/', + include([ + path( + '/', + DataImportColumnMappingDetail.as_view(), + name='api-importer-mapping-detail', + ), + path( + '', + DataImportColumnMappingList.as_view(), + name='api-importer-mapping-list', + ), + ]), + ), + path( + 'row/', + include([ + path( + '/', + DataImportRowDetail.as_view(), + name='api-importer-row-detail', + ), + path('', DataImportRowList.as_view(), name='api-importer-row-list'), + ]), + ), +] diff --git a/src/backend/InvenTree/importer/apps.py b/src/backend/InvenTree/importer/apps.py new file mode 100644 index 0000000000..4b909df3d2 --- /dev/null +++ b/src/backend/InvenTree/importer/apps.py @@ -0,0 +1,10 @@ +"""AppConfig for the 'importer' app.""" + +from django.apps import AppConfig + + +class ImporterConfig(AppConfig): + """AppConfig class for the 'importer' app.""" + + default_auto_field = 'django.db.models.BigAutoField' + name = 'importer' diff --git a/src/backend/InvenTree/importer/migrations/0001_initial.py b/src/backend/InvenTree/importer/migrations/0001_initial.py new file mode 100644 index 0000000000..0572c16704 --- /dev/null +++ b/src/backend/InvenTree/importer/migrations/0001_initial.py @@ -0,0 +1,56 @@ +# Generated by Django 4.2.12 on 2024-06-30 04:42 + +from django.conf import settings +import django.core.validators +from django.db import migrations, models +import django.db.models.deletion +import importer.validators +import InvenTree.helpers +from importer.status_codes import DataImportStatusCode + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.CreateModel( + name='DataImportSession', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('timestamp', models.DateTimeField(auto_now_add=True, verbose_name='Timestamp')), + ('data_file', models.FileField(help_text='Data file to import', upload_to='import', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=InvenTree.helpers.GetExportFormats()), importer.validators.validate_data_file], verbose_name='Data File')), + ('columns', models.JSONField(blank=True, null=True, verbose_name='Columns')), + ('model_type', models.CharField(max_length=100, validators=[importer.validators.validate_importer_model_type])), + ('status', models.PositiveIntegerField(choices=DataImportStatusCode.items(), default=DataImportStatusCode.INITIAL.value, help_text='Import status')), + ('field_defaults', models.JSONField(blank=True, null=True, validators=[importer.validators.validate_field_defaults], verbose_name='Field Defaults')), + ('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL, verbose_name='User')), + ], + ), + migrations.CreateModel( + name='DataImportRow', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('row_index', models.PositiveIntegerField(default=0, verbose_name='Row Index')), + ('row_data', models.JSONField(blank=True, null=True, verbose_name='Original row data')), + ('data', models.JSONField(blank=True, null=True, verbose_name='Data')), + ('errors', models.JSONField(blank=True, null=True, verbose_name='Errors')), + ('valid', models.BooleanField(default=False, verbose_name='Valid')), + ('complete', models.BooleanField(default=False, verbose_name='Complete')), + ('session', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='rows', to='importer.dataimportsession', verbose_name='Import Session')), + ], + ), + migrations.CreateModel( + name='DataImportColumnMap', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('field', models.CharField(max_length=100, verbose_name='Field')), + ('column', models.CharField(blank=True, max_length=100, verbose_name='Column')), + ('session', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='column_mappings', to='importer.dataimportsession', verbose_name='Import Session')), + ], + ), + ] diff --git a/src/backend/InvenTree/importer/migrations/0002_dataimportsession_field_overrides.py b/src/backend/InvenTree/importer/migrations/0002_dataimportsession_field_overrides.py new file mode 100644 index 0000000000..9d00ce956b --- /dev/null +++ b/src/backend/InvenTree/importer/migrations/0002_dataimportsession_field_overrides.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.14 on 2024-07-12 03:35 + +from django.db import migrations, models +import importer.validators + + +class Migration(migrations.Migration): + + dependencies = [ + ('importer', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='dataimportsession', + name='field_overrides', + field=models.JSONField(blank=True, null=True, validators=[importer.validators.validate_field_defaults], verbose_name='Field Overrides'), + ), + ] diff --git a/src/backend/InvenTree/importer/migrations/0003_dataimportsession_field_filters.py b/src/backend/InvenTree/importer/migrations/0003_dataimportsession_field_filters.py new file mode 100644 index 0000000000..b5663a5e31 --- /dev/null +++ b/src/backend/InvenTree/importer/migrations/0003_dataimportsession_field_filters.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.14 on 2024-07-16 03:04 + +from django.db import migrations, models +import importer.validators + + +class Migration(migrations.Migration): + + dependencies = [ + ('importer', '0002_dataimportsession_field_overrides'), + ] + + operations = [ + migrations.AddField( + model_name='dataimportsession', + name='field_filters', + field=models.JSONField(blank=True, null=True, validators=[importer.validators.validate_field_defaults], verbose_name='Field Filters'), + ), + ] diff --git a/src/backend/InvenTree/importer/migrations/__init__.py b/src/backend/InvenTree/importer/migrations/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/backend/InvenTree/importer/mixins.py b/src/backend/InvenTree/importer/mixins.py new file mode 100644 index 0000000000..e0e064afc4 --- /dev/null +++ b/src/backend/InvenTree/importer/mixins.py @@ -0,0 +1,267 @@ +"""Mixin classes for data import/export functionality.""" + +from django.core.exceptions import ValidationError +from django.utils.translation import gettext_lazy as _ + +import tablib +from rest_framework import fields, serializers + +import importer.operations +from InvenTree.helpers import DownloadFile, GetExportFormats, current_date + + +class DataImportSerializerMixin: + """Mixin class for adding data import functionality to a DRF serializer.""" + + import_only_fields = [] + import_exclude_fields = [] + + def get_import_only_fields(self, **kwargs) -> list: + """Return the list of field names which are only used during data import.""" + return self.import_only_fields + + def get_import_exclude_fields(self, **kwargs) -> list: + """Return the list of field names which are excluded during data import.""" + return self.import_exclude_fields + + def __init__(self, *args, **kwargs): + """Initialise the DataImportSerializerMixin. + + Determine if the serializer is being used for data import, + and if so, adjust the serializer fields accordingly. + """ + importing = kwargs.pop('importing', False) + + super().__init__(*args, **kwargs) + + if importing: + # Exclude any fields which are not able to be imported + importable_field_names = list(self.get_importable_fields().keys()) + field_names = list(self.fields.keys()) + + for field in field_names: + if field not in importable_field_names: + self.fields.pop(field, None) + + # Exclude fields which are excluded for data import + for field in self.get_import_exclude_fields(**kwargs): + self.fields.pop(field, None) + + else: + # Exclude fields which are only used for data import + for field in self.get_import_only_fields(**kwargs): + self.fields.pop(field, None) + + def get_importable_fields(self) -> dict: + """Return a dict of fields which can be imported against this serializer instance. + + Returns: + dict: A dictionary of field names and field objects + """ + importable_fields = {} + + if meta := getattr(self, 'Meta', None): + read_only_fields = getattr(meta, 'read_only_fields', []) + else: + read_only_fields = [] + + for name, field in self.fields.items(): + # Skip read-only fields + if getattr(field, 'read_only', False): + continue + + if name in read_only_fields: + continue + + # Skip fields which are themselves serializers + if issubclass(field.__class__, serializers.Serializer): + continue + + # Skip file fields + if issubclass(field.__class__, fields.FileField): + continue + + importable_fields[name] = field + + return importable_fields + + +class DataExportSerializerMixin: + """Mixin class for adding data export functionality to a DRF serializer.""" + + export_only_fields = [] + export_exclude_fields = [] + + def get_export_only_fields(self, **kwargs) -> list: + """Return the list of field names which are only used during data export.""" + return self.export_only_fields + + def get_export_exclude_fields(self, **kwargs) -> list: + """Return the list of field names which are excluded during data export.""" + return self.export_exclude_fields + + def __init__(self, *args, **kwargs): + """Initialise the DataExportSerializerMixin. + + Determine if the serializer is being used for data export, + and if so, adjust the serializer fields accordingly. + """ + exporting = kwargs.pop('exporting', False) + + super().__init__(*args, **kwargs) + + if exporting: + # Exclude fields which are not required for data export + for field in self.get_export_exclude_fields(**kwargs): + self.fields.pop(field, None) + else: + # Exclude fields which are only used for data export + for field in self.get_export_only_fields(**kwargs): + self.fields.pop(field, None) + + def get_exportable_fields(self) -> dict: + """Return a dict of fields which can be exported against this serializer instance. + + Note: Any fields which should be excluded from export have already been removed + + Returns: + dict: A dictionary of field names and field objects + """ + fields = {} + + if meta := getattr(self, 'Meta', None): + write_only_fields = getattr(meta, 'write_only_fields', []) + else: + write_only_fields = [] + + for name, field in self.fields.items(): + # Skip write-only fields + if getattr(field, 'write_only', False): + continue + + if name in write_only_fields: + continue + + # Skip fields which are themselves serializers + if issubclass(field.__class__, serializers.Serializer): + continue + + fields[name] = field + + return fields + + def get_exported_filename(self, export_format) -> str: + """Return the filename for the exported data file. + + An implementing class can override this implementation if required. + + Arguments: + export_format: The file format to be exported + + Returns: + str: The filename for the exported file + """ + model = self.Meta.model + date = current_date().isoformat() + + return f'InvenTree_{model.__name__}_{date}.{export_format}' + + @classmethod + def arrange_export_headers(cls, headers: list) -> list: + """Optional method to arrange the export headers.""" + return headers + + def process_row(self, row): + """Optional method to process a row before exporting it.""" + return row + + def export_to_file(self, data, file_format): + """Export the queryset to a file in the specified format. + + Arguments: + queryset: The queryset to export + data: The serialized dataset to export + file_format: The file format to export to + + Returns: + File object containing the exported data + """ + # Extract all exportable fields from this serializer + fields = self.get_exportable_fields() + + field_names = self.arrange_export_headers(list(fields.keys())) + + # Extract human-readable field names + headers = [] + + for field_name, field in fields.items(): + field = fields[field_name] + + headers.append(importer.operations.get_field_label(field) or field_name) + + dataset = tablib.Dataset(headers=headers) + + for row in data: + row = self.process_row(row) + dataset.append([row.get(field, None) for field in field_names]) + + return dataset.export(file_format) + + +class DataImportExportSerializerMixin( + DataImportSerializerMixin, DataExportSerializerMixin +): + """Mixin class for adding data import/export functionality to a DRF serializer.""" + + pass + + +class DataExportViewMixin: + """Mixin class for exporting a dataset via the API. + + Adding this mixin to an API view allows the user to export the dataset to file in a variety of formats. + + We achieve this by overriding the 'get' method, and checking for the presence of the required query parameter. + """ + + EXPORT_QUERY_PARAMETER = 'export' + + def export_data(self, export_format): + """Export the data in the specified format. + + Use the provided serializer to generate the data, and return it as a file download. + """ + serializer_class = self.get_serializer_class() + + if not issubclass(serializer_class, DataExportSerializerMixin): + raise TypeError( + 'Serializer class must inherit from DataExportSerialierMixin' + ) + + queryset = self.filter_queryset(self.get_queryset()) + + serializer = serializer_class(exporting=True) + serializer.initial_data = queryset + + # Export dataset with a second copy of the serializer + # This is because when we pass many=True, the returned class is a ListSerializer + data = serializer_class(queryset, many=True, exporting=True).data + + filename = serializer.get_exported_filename(export_format) + datafile = serializer.export_to_file(data, export_format) + + return DownloadFile(datafile, filename=filename) + + def get(self, request, *args, **kwargs): + """Override the 'get' method to check for the export query parameter.""" + if export_format := request.query_params.get(self.EXPORT_QUERY_PARAMETER, None): + export_format = str(export_format).strip().lower() + if export_format in GetExportFormats(): + return self.export_data(export_format) + else: + raise ValidationError({ + self.EXPORT_QUERY_PARAMETER: _('Invalid export format') + }) + + # If the export query parameter is not present, return the default response + return super().get(request, *args, **kwargs) diff --git a/src/backend/InvenTree/importer/models.py b/src/backend/InvenTree/importer/models.py new file mode 100644 index 0000000000..219e1ac600 --- /dev/null +++ b/src/backend/InvenTree/importer/models.py @@ -0,0 +1,659 @@ +"""Model definitions for the 'importer' app.""" + +import json +import logging + +from django.contrib.auth.models import User +from django.core.exceptions import ValidationError as DjangoValidationError +from django.core.validators import FileExtensionValidator +from django.db import models +from django.urls import reverse +from django.utils.translation import gettext_lazy as _ + +from rest_framework.exceptions import ValidationError as DRFValidationError + +import importer.operations +import importer.registry +import importer.tasks +import importer.validators +import InvenTree.helpers +from importer.status_codes import DataImportStatusCode + +logger = logging.getLogger('inventree') + + +class DataImportSession(models.Model): + """Database model representing a data import session. + + An initial file is uploaded, and used to populate the database. + + Fields: + timestamp: Timestamp for the import session + data_file: FileField for the data file to import + status: IntegerField for the status of the import session + user: ForeignKey to the User who initiated the import + field_defaults: JSONField for field default values - provides a backup value for a field + field_overrides: JSONField for field override values - used to force a value for a field + field_filters: JSONField for field filter values - optional field API filters + """ + + @staticmethod + def get_api_url(): + """Return the API URL associated with the DataImportSession model.""" + return reverse('api-importer-session-list') + + def save(self, *args, **kwargs): + """Save the DataImportSession object.""" + initial = self.pk is None + + self.clean() + + super().save(*args, **kwargs) + + if initial: + # New object - run initial setup + self.status = DataImportStatusCode.INITIAL.value + self.progress = 0 + self.extract_columns() + + timestamp = models.DateTimeField(auto_now_add=True, verbose_name=_('Timestamp')) + + data_file = models.FileField( + upload_to='import', + verbose_name=_('Data File'), + help_text=_('Data file to import'), + validators=[ + FileExtensionValidator( + allowed_extensions=InvenTree.helpers.GetExportFormats() + ), + importer.validators.validate_data_file, + ], + ) + + columns = models.JSONField(blank=True, null=True, verbose_name=_('Columns')) + + model_type = models.CharField( + blank=False, + max_length=100, + validators=[importer.validators.validate_importer_model_type], + ) + + status = models.PositiveIntegerField( + default=DataImportStatusCode.INITIAL.value, + choices=DataImportStatusCode.items(), + help_text=_('Import status'), + ) + + user = models.ForeignKey( + User, on_delete=models.SET_NULL, blank=True, null=True, verbose_name=_('User') + ) + + field_defaults = models.JSONField( + blank=True, + null=True, + verbose_name=_('Field Defaults'), + validators=[importer.validators.validate_field_defaults], + ) + + field_overrides = models.JSONField( + blank=True, + null=True, + verbose_name=_('Field Overrides'), + validators=[importer.validators.validate_field_defaults], + ) + + field_filters = models.JSONField( + blank=True, + null=True, + verbose_name=_('Field Filters'), + validators=[importer.validators.validate_field_defaults], + ) + + @property + def field_mapping(self): + """Construct a dict of field mappings for this import session. + + Returns: A dict of field: column mappings + """ + mapping = {} + + for map in self.column_mappings.all(): + mapping[map.field] = map.column + + return mapping + + @property + def serializer_class(self): + """Return the serializer class for this importer.""" + from importer.registry import supported_models + + return supported_models().get(self.model_type, None) + + def extract_columns(self): + """Run initial column extraction and mapping. + + This method is called when the import session is first created. + + - Extract column names from the data file + - Create a default mapping for each field in the serializer + """ + # Extract list of column names from the file + self.columns = importer.operations.extract_column_names(self.data_file) + + serializer_fields = self.available_fields() + + # Remove any existing mappings + self.column_mappings.all().delete() + + column_mappings = [] + + matched_columns = set() + + field_overrides = self.field_overrides or {} + + # Create a default mapping for each available field in the database + for field, field_def in serializer_fields.items(): + # If an override value is provided for the field, + # skip creating a mapping for this field + if field in field_overrides: + continue + + # Generate a list of possible column names for this field + field_options = [ + field, + field_def.get('label', field), + field_def.get('help_text', field), + ] + column_name = '' + + for column in self.columns: + # No title provided for the column + if not column: + continue + + # Ignore if we have already matched this column to a field + if column in matched_columns: + continue + + # Try direct match + if column in field_options: + column_name = column + break + + # Try lower case match + if column.lower() in [f.lower() for f in field_options]: + column_name = column + break + + column_mappings.append( + DataImportColumnMap(session=self, column=column_name, field=field) + ) + + # Create the column mappings + DataImportColumnMap.objects.bulk_create(column_mappings) + + self.status = DataImportStatusCode.MAPPING.value + self.save() + + def accept_mapping(self): + """Accept current mapping configuration. + + - Validate that the current column mapping is correct + - Trigger the data import process + """ + # First, we need to ensure that all the *required* columns have been mapped + required_fields = self.required_fields() + + field_defaults = self.field_defaults or {} + field_overrides = self.field_overrides or {} + + missing_fields = [] + + for field in required_fields.keys(): + # An override value exists + if field in field_overrides: + continue + + # A default value exists + if field in field_defaults and field_defaults[field]: + continue + + # The field has been mapped to a data column + if mapping := self.column_mappings.filter(field=field).first(): + if mapping.column: + continue + + missing_fields.append(field) + + if len(missing_fields) > 0: + raise DjangoValidationError({ + 'error': _('Some required fields have not been mapped'), + 'fields': missing_fields, + }) + + # No errors, so trigger the data import process + self.trigger_data_import() + + def trigger_data_import(self): + """Trigger the data import process for this session. + + Offloads the task to the background worker process. + """ + from InvenTree.tasks import offload_task + + # Mark the import task status as "IMPORTING" + self.status = DataImportStatusCode.IMPORTING.value + self.save() + + offload_task(importer.tasks.import_data, self.pk) + + def import_data(self): + """Perform the data import process for this session.""" + # Clear any existing data rows + self.rows.all().delete() + + df = importer.operations.load_data_file(self.data_file) + + if df is None: + # TODO: Log an error message against the import session + logger.error('Failed to load data file') + return + + headers = df.headers + + imported_rows = [] + + field_mapping = self.field_mapping + available_fields = self.available_fields() + + # Iterate through each "row" in the data file, and create a new DataImportRow object + for idx, row in enumerate(df): + row_data = dict(zip(headers, row)) + + # Skip completely empty rows + if not any(row_data.values()): + continue + + row = importer.models.DataImportRow( + session=self, row_data=row_data, row_index=idx + ) + + row.extract_data( + field_mapping=field_mapping, + available_fields=available_fields, + commit=False, + ) + + row.valid = row.validate(commit=False) + imported_rows.append(row) + + # Perform database writes as a single operation + importer.models.DataImportRow.objects.bulk_create(imported_rows) + + # Mark the import task as "PROCESSING" + self.status = DataImportStatusCode.PROCESSING.value + self.save() + + def check_complete(self) -> bool: + """Check if the import session is complete.""" + if self.completed_row_count < self.row_count: + return False + + # Update the status of this session + if self.status != DataImportStatusCode.COMPLETE.value: + self.status = DataImportStatusCode.COMPLETE.value + self.save() + + return True + + @property + def row_count(self): + """Return the number of rows in the import session.""" + return self.rows.count() + + @property + def completed_row_count(self): + """Return the number of completed rows for this session.""" + return self.rows.filter(complete=True).count() + + def available_fields(self): + """Returns information on the available fields. + + - This method is designed to be introspected by the frontend, for rendering the various fields. + - We make use of the InvenTree.metadata module to provide extra information about the fields. + + Note that we cache these fields, as they are expensive to compute. + """ + if fields := getattr(self, '_available_fields', None): + return fields + + from InvenTree.metadata import InvenTreeMetadata + + metadata = InvenTreeMetadata() + + if serializer_class := self.serializer_class: + serializer = serializer_class(data={}, importing=True) + fields = metadata.get_serializer_info(serializer) + else: + fields = {} + + self._available_fields = fields + return fields + + def required_fields(self): + """Returns information on which fields are *required* for import.""" + fields = self.available_fields() + + required = {} + + for field, info in fields.items(): + if info.get('required', False): + required[field] = info + + return required + + +class DataImportColumnMap(models.Model): + """Database model representing a mapping between a file column and serializer field. + + - Each row maps a "column" (in the import file) to a "field" (in the serializer) + - Column must exist in the file + - Field must exist in the serializer (and not be read-only) + """ + + @staticmethod + def get_api_url(): + """Return the API URL associated with the DataImportColumnMap model.""" + return reverse('api-importer-mapping-list') + + def save(self, *args, **kwargs): + """Save the DataImportColumnMap object.""" + self.clean() + self.validate_unique() + + super().save(*args, **kwargs) + + def validate_unique(self, exclude=None): + """Ensure that the column mapping is unique within the session.""" + super().validate_unique(exclude) + + columns = self.session.column_mappings.exclude(pk=self.pk) + + if ( + self.column not in ['', None] + and columns.filter(column=self.column).exists() + ): + raise DjangoValidationError({ + 'column': _('Column is already mapped to a database field') + }) + + if columns.filter(field=self.field).exists(): + raise DjangoValidationError({ + 'field': _('Field is already mapped to a data column') + }) + + def clean(self): + """Validate the column mapping.""" + super().clean() + + if not self.session: + raise DjangoValidationError({ + 'session': _('Column mapping must be linked to a valid import session') + }) + + if self.column and self.column not in self.session.columns: + raise DjangoValidationError({ + 'column': _('Column does not exist in the data file') + }) + + field_def = self.field_definition + + if not field_def: + raise DjangoValidationError({ + 'field': _('Field does not exist in the target model') + }) + + if field_def.get('read_only', False): + raise DjangoValidationError({'field': _('Selected field is read-only')}) + + session = models.ForeignKey( + DataImportSession, + on_delete=models.CASCADE, + verbose_name=_('Import Session'), + related_name='column_mappings', + ) + + field = models.CharField(max_length=100, verbose_name=_('Field')) + + column = models.CharField(blank=True, max_length=100, verbose_name=_('Column')) + + @property + def available_fields(self): + """Return a list of available fields for this import session. + + These fields get cached, as they are expensive to compute. + """ + if fields := getattr(self, '_available_fields', None): + return fields + + self._available_fields = self.session.available_fields() + + return self._available_fields + + @property + def field_definition(self): + """Return the field definition associated with this column mapping.""" + fields = self.available_fields + return fields.get(self.field, None) + + @property + def label(self): + """Extract the 'label' associated with the mapped field.""" + if field_def := self.field_definition: + return field_def.get('label', None) + + @property + def description(self): + """Extract the 'description' associated with the mapped field.""" + description = None + + if field_def := self.field_definition: + description = field_def.get('help_text', None) + + if not description: + description = self.label + + return description + + +class DataImportRow(models.Model): + """Database model representing a single row in a data import session. + + Each row corresponds to a single row in the import file, and is used to populate the database. + + Fields: + session: ForeignKey to the parent DataImportSession object + data: JSONField for the data in this row + status: IntegerField for the status of the row import + """ + + @staticmethod + def get_api_url(): + """Return the API URL associated with the DataImportRow model.""" + return reverse('api-importer-row-list') + + def save(self, *args, **kwargs): + """Save the DataImportRow object.""" + self.valid = self.validate() + super().save(*args, **kwargs) + + session = models.ForeignKey( + DataImportSession, + on_delete=models.CASCADE, + verbose_name=_('Import Session'), + related_name='rows', + ) + + row_index = models.PositiveIntegerField(default=0, verbose_name=_('Row Index')) + + row_data = models.JSONField( + blank=True, null=True, verbose_name=_('Original row data') + ) + + data = models.JSONField(blank=True, null=True, verbose_name=_('Data')) + + errors = models.JSONField(blank=True, null=True, verbose_name=_('Errors')) + + valid = models.BooleanField(default=False, verbose_name=_('Valid')) + + complete = models.BooleanField(default=False, verbose_name=_('Complete')) + + @property + def default_values(self) -> dict: + """Return a dict object of the 'default' values for this row.""" + defaults = self.session.field_defaults or {} + + if type(defaults) is not dict: + try: + defaults = json.loads(str(defaults)) + except json.JSONDecodeError: + logger.warning('Failed to parse default values for import row') + defaults = {} + + return defaults + + @property + def override_values(self) -> dict: + """Return a dict object of the 'override' values for this row.""" + overrides = self.session.field_overrides or {} + + if type(overrides) is not dict: + try: + overrides = json.loads(str(overrides)) + except json.JSONDecodeError: + logger.warning('Failed to parse override values for import row') + overrides = {} + + return overrides + + def extract_data( + self, available_fields: dict = None, field_mapping: dict = None, commit=True + ): + """Extract row data from the provided data dictionary.""" + if not field_mapping: + field_mapping = self.session.field_mapping + + if not available_fields: + available_fields = self.session.available_fields() + + overrride_values = self.override_values + default_values = self.default_values + + data = {} + + # We have mapped column (file) to field (serializer) already + for field, col in field_mapping.items(): + # Data override (force value and skip any further checks) + if field in overrride_values: + data[field] = overrride_values[field] + continue + + # Default value (if provided) + if field in default_values: + data[field] = default_values[field] + + # If this field is *not* mapped to any column, skip + if not col or col not in self.row_data: + continue + + # Extract field type + field_def = available_fields.get(field, {}) + + field_type = field_def.get('type', None) + + value = self.row_data.get(col, None) + + if field_type == 'boolean': + value = InvenTree.helpers.str2bool(value) + elif field_type == 'date': + value = value or None + + # Use the default value, if provided + if value in [None, ''] and field in default_values: + value = default_values[field] + + data[field] = value + + self.data = data + + if commit: + self.save() + + def serializer_data(self): + """Construct data object to be sent to the serializer. + + - If available, we use the "default" values provided by the import session + - If available, we use the "override" values provided by the import session + """ + data = self.default_values + + if self.data: + data.update(self.data) + + # Override values take priority, if present + data.update(self.override_values) + + return data + + def construct_serializer(self): + """Construct a serializer object for this row.""" + if serializer_class := self.session.serializer_class: + return serializer_class(data=self.serializer_data()) + + def validate(self, commit=False) -> bool: + """Validate the data in this row against the linked serializer. + + Arguments: + commit: If True, the data is saved to the database (if validation passes) + + Returns: + True if the data is valid, False otherwise + + Raises: + ValidationError: If the linked serializer is not valid + """ + if self.complete: + # Row has already been completed + return True + + serializer = self.construct_serializer() + + if not serializer: + self.errors = { + 'non_field_errors': 'No serializer class linked to this import session' + } + return False + + result = False + + try: + result = serializer.is_valid(raise_exception=True) + except (DjangoValidationError, DRFValidationError) as e: + self.errors = e.detail + + if result: + self.errors = None + + if commit: + try: + serializer.save() + self.complete = True + self.save() + + self.session.check_complete() + + except Exception as e: + self.errors = {'non_field_errors': str(e)} + result = False + + return result diff --git a/src/backend/InvenTree/importer/operations.py b/src/backend/InvenTree/importer/operations.py new file mode 100644 index 0000000000..7b9806d07b --- /dev/null +++ b/src/backend/InvenTree/importer/operations.py @@ -0,0 +1,122 @@ +"""Data import operational functions.""" + +from django.core.exceptions import ValidationError +from django.utils.translation import gettext_lazy as _ + +import tablib + +import InvenTree.helpers + + +def load_data_file(data_file, file_format=None): + """Load data file into a tablib dataset. + + Arguments: + data_file: django file object containing data to import (should be already opened!) + file_format: Format specifier for the data file + """ + # Introspect the file format based on the provided file + if not file_format: + file_format = data_file.name.split('.')[-1] + + if file_format and file_format.startswith('.'): + file_format = file_format[1:] + + file_format = file_format.strip().lower() + + if file_format not in InvenTree.helpers.GetExportFormats(): + raise ValidationError(_('Unsupported data file format')) + + file_object = data_file.file + + if hasattr(file_object, 'open'): + file_object.open('r') + + file_object.seek(0) + + try: + data = file_object.read() + except (IOError, FileNotFoundError): + raise ValidationError(_('Failed to open data file')) + + # Excel formats expect binary data + if file_format not in ['xls', 'xlsx']: + data = data.decode() + + try: + data = tablib.Dataset().load(data, headers=True, format=file_format) + except tablib.core.UnsupportedFormat: + raise ValidationError(_('Unsupported data file format')) + except tablib.core.InvalidDimensions: + raise ValidationError(_('Invalid data file dimensions')) + + return data + + +def extract_column_names(data_file) -> list: + """Extract column names from a data file. + + Uses the tablib library to extract column names from a data file. + + Args: + data_file: File object containing data to import + + Returns: + List of column names extracted from the file + + Raises: + ValidationError: If the data file is not in a valid format + """ + data = load_data_file(data_file) + + headers = [] + + for idx, header in enumerate(data.headers): + if header: + headers.append(header) + else: + # If the header is empty, generate a default header + headers.append(f'Column {idx + 1}') + + return headers + + +def extract_rows(data_file) -> list: + """Extract rows from the data file. + + Each returned row is a dictionary of column_name: value pairs. + """ + data = load_data_file(data_file) + + headers = data.headers + + rows = [] + + for row in data: + rows.append(dict(zip(headers, row))) + + return rows + + +def get_field_label(field) -> str: + """Return the label for a field in a serializer class. + + Check for labels in the following order of descending priority: + + - The serializer class has a 'label' specified for the field + - The underlying model has a 'verbose_name' specified + - The field name is used as the label + + Arguments: + field: Field instance from a serializer class + + Returns: + str: Field label + """ + if field: + if label := getattr(field, 'label', None): + return label + + # TODO: Check if the field is a model field + + return None diff --git a/src/backend/InvenTree/importer/registry.py b/src/backend/InvenTree/importer/registry.py new file mode 100644 index 0000000000..2614c29ea5 --- /dev/null +++ b/src/backend/InvenTree/importer/registry.py @@ -0,0 +1,72 @@ +"""Registry for supported serializers for data import operations.""" + +import logging + +from rest_framework.serializers import Serializer + +from importer.mixins import DataImportSerializerMixin + +logger = logging.getLogger('inventree') + + +class DataImportSerializerRegister: + """Registry for supported serializers for data import operations. + + To add a new serializer to the registry, add the @register_importer decorator to the serializer class. + """ + + supported_serializers: list[Serializer] = [] + + def register(self, serializer) -> None: + """Register a new serializer with the importer registry.""" + if not issubclass(serializer, DataImportSerializerMixin): + logger.debug('Invalid serializer class: %s', type(serializer)) + return + + if not issubclass(serializer, Serializer): + logger.debug('Invalid serializer class: %s', type(serializer)) + return + + logger.debug('Registering serializer class for import: %s', type(serializer)) + + if serializer not in self.supported_serializers: + self.supported_serializers.append(serializer) + + +_serializer_registry = DataImportSerializerRegister() + + +def get_supported_serializers(): + """Return a list of supported serializers which can be used for importing data.""" + return _serializer_registry.supported_serializers + + +def supported_models(): + """Return a map of supported models to their respective serializers.""" + data = {} + + for serializer in get_supported_serializers(): + model = serializer.Meta.model + data[model.__name__.lower()] = serializer + + return data + + +def supported_model_options(): + """Return a list of supported model options for importing data.""" + options = [] + + for model_name, serializer in supported_models().items(): + options.append((model_name, serializer.Meta.model._meta.verbose_name)) + + return options + + +def register_importer(): + """Decorator function to register a serializer with the importer registry.""" + + def _decorator(cls): + _serializer_registry.register(cls) + return cls + + return _decorator diff --git a/src/backend/InvenTree/importer/serializers.py b/src/backend/InvenTree/importer/serializers.py new file mode 100644 index 0000000000..ac68056f55 --- /dev/null +++ b/src/backend/InvenTree/importer/serializers.py @@ -0,0 +1,216 @@ +"""API serializers for the importer app.""" + +import json + +from django.core.exceptions import ValidationError +from django.utils.translation import gettext_lazy as _ + +from rest_framework import serializers + +import importer.models +import importer.registry +from InvenTree.serializers import ( + InvenTreeAttachmentSerializerField, + InvenTreeModelSerializer, + UserSerializer, +) + + +class DataImportColumnMapSerializer(InvenTreeModelSerializer): + """Serializer for the DataImportColumnMap model.""" + + class Meta: + """Meta class options for the serializer.""" + + model = importer.models.DataImportColumnMap + fields = ['pk', 'session', 'column', 'field', 'label', 'description'] + read_only_fields = ['field', 'session'] + + label = serializers.CharField(read_only=True) + description = serializers.CharField(read_only=True) + + +class DataImportSessionSerializer(InvenTreeModelSerializer): + """Serializer for the DataImportSession model.""" + + class Meta: + """Meta class options for the serializer.""" + + model = importer.models.DataImportSession + fields = [ + 'pk', + 'timestamp', + 'data_file', + 'model_type', + 'available_fields', + 'status', + 'user', + 'user_detail', + 'columns', + 'column_mappings', + 'field_defaults', + 'field_overrides', + 'field_filters', + 'row_count', + 'completed_row_count', + ] + read_only_fields = ['pk', 'user', 'status', 'columns'] + + def __init__(self, *args, **kwargs): + """Override the constructor for the DataImportSession serializer.""" + super().__init__(*args, **kwargs) + + self.fields['model_type'].choices = importer.registry.supported_model_options() + + data_file = InvenTreeAttachmentSerializerField() + + model_type = serializers.ChoiceField( + required=True, + allow_blank=False, + choices=importer.registry.supported_model_options(), + ) + + available_fields = serializers.JSONField(read_only=True) + + row_count = serializers.IntegerField(read_only=True) + completed_row_count = serializers.IntegerField(read_only=True) + + column_mappings = DataImportColumnMapSerializer(many=True, read_only=True) + + user_detail = UserSerializer(source='user', read_only=True, many=False) + + def validate_field_defaults(self, defaults): + """De-stringify the field defaults.""" + if defaults is None: + return None + + if type(defaults) is not dict: + try: + defaults = json.loads(str(defaults)) + except: + raise ValidationError(_('Invalid field defaults')) + + return defaults + + def validate_field_overrides(self, overrides): + """De-stringify the field overrides.""" + if overrides is None: + return None + + if type(overrides) is not dict: + try: + overrides = json.loads(str(overrides)) + except: + raise ValidationError(_('Invalid field overrides')) + + return overrides + + def validate_field_filters(self, filters): + """De-stringify the field filters.""" + if filters is None: + return None + + if type(filters) is not dict: + try: + filters = json.loads(str(filters)) + except: + raise ValidationError(_('Invalid field filters')) + + return filters + + def create(self, validated_data): + """Override create method for this serializer. + + Attach user information based on provided session data. + """ + session = super().create(validated_data) + + request = self.context.get('request', None) + + if request: + session.user = request.user + session.save() + + return session + + +class DataImportRowSerializer(InvenTreeModelSerializer): + """Serializer for the DataImportRow model.""" + + class Meta: + """Meta class options for the serializer.""" + + model = importer.models.DataImportRow + fields = [ + 'pk', + 'session', + 'row_index', + 'row_data', + 'data', + 'errors', + 'valid', + 'complete', + ] + + read_only_fields = [ + 'pk', + 'session', + 'row_index', + 'row_data', + 'errors', + 'valid', + 'complete', + ] + + +class DataImportAcceptRowSerializer(serializers.Serializer): + """Serializer for accepting rows of data.""" + + class Meta: + """Serializer meta options.""" + + fields = ['rows'] + + rows = serializers.PrimaryKeyRelatedField( + queryset=importer.models.DataImportRow.objects.all(), + many=True, + required=True, + label=_('Rows'), + help_text=_('List of row IDs to accept'), + ) + + def validate_rows(self, rows): + """Ensure that the provided rows are valid. + + - Row must point to the same import session + - Row must contain valid data + - Row must not have already been completed + """ + session = self.context.get('session', None) + + if not rows or len(rows) == 0: + raise ValidationError(_('No rows provided')) + + for row in rows: + if row.session != session: + raise ValidationError(_('Row does not belong to this session')) + + if not row.valid: + raise ValidationError(_('Row contains invalid data')) + + if row.complete: + raise ValidationError(_('Row has already been completed')) + + return rows + + def save(self): + """Complete the provided rows.""" + rows = self.validated_data['rows'] + + for row in rows: + row.validate(commit=True) + + if session := self.context.get('session', None): + session.check_complete() + + return rows diff --git a/src/backend/InvenTree/importer/status_codes.py b/src/backend/InvenTree/importer/status_codes.py new file mode 100644 index 0000000000..71d4dfd0e6 --- /dev/null +++ b/src/backend/InvenTree/importer/status_codes.py @@ -0,0 +1,19 @@ +"""Status codes for common model types.""" + +from django.utils.translation import gettext_lazy as _ + +from generic.states import StatusCode + + +class DataImportStatusCode(StatusCode): + """Defines a set of status codes for a DataImportSession.""" + + INITIAL = 0, _('Initializing'), 'secondary' # Import session has been created + MAPPING = 10, _('Mapping Columns'), 'primary' # Import fields are being mapped + IMPORTING = 20, _('Importing Data'), 'primary' # Data is being imported + PROCESSING = ( + 30, + _('Processing Data'), + 'primary', + ) # Data is being processed by the user + COMPLETE = 40, _('Complete'), 'success' # Import has been completed diff --git a/src/backend/InvenTree/importer/tasks.py b/src/backend/InvenTree/importer/tasks.py new file mode 100644 index 0000000000..0a6e38f123 --- /dev/null +++ b/src/backend/InvenTree/importer/tasks.py @@ -0,0 +1,53 @@ +"""Task definitions for the 'importer' app.""" + +import logging +from datetime import timedelta + +import InvenTree.helpers +import InvenTree.tasks + +logger = logging.getLogger('inventree') + + +def import_data(session_id: int): + """Load data from the provided file. + + Attempt to load data from the provided file, and potentially handle any errors. + """ + import importer.models + import importer.operations + import importer.status_codes + + try: + session = importer.models.DataImportSession.objects.get(pk=session_id) + logger.info("Loading data from session ID '%s'", session_id) + session.import_data() + except (ValueError, importer.models.DataImportSession.DoesNotExist): + logger.error("Data import session with ID '%s' does not exist", session_id) + return + + +@InvenTree.tasks.scheduled_task(InvenTree.tasks.ScheduledTask.DAILY) +def cleanup_import_sessions(): + """Periodically remove old import sessions. + + Every 5 days, remove any importer sessions that are more than 5 days old + """ + CLEANUP_DAYS = 5 + + import importer.models + + if not InvenTree.tasks.check_daily_holdoff('cleanup_import_sessions', CLEANUP_DAYS): + return + + logger.info('Cleaning old data import sessions') + + before = InvenTree.helpers.current_date() - timedelta(days=CLEANUP_DAYS) + + sessions = importer.models.DataImportSession.objects.filter(timestamp__lte=before) + + if sessions.count() > 0: + logger.info('Deleting %s old data import sessions', sessions.count()) + sessions.delete() + + InvenTree.tasks.record_task_success('cleanup_import_sessions') diff --git a/src/backend/InvenTree/importer/test_data/companies.csv b/src/backend/InvenTree/importer/test_data/companies.csv new file mode 100644 index 0000000000..8e5468b25b --- /dev/null +++ b/src/backend/InvenTree/importer/test_data/companies.csv @@ -0,0 +1,13 @@ +ID,Company name,Company description,Website,Phone number,Address,Email,Currency,Contact,Link,Image,Active,Is customer,Is manufacturer,Is supplier,Notes,Parts supplied,Parts manufactured,Address count +3,Arrow,Arrow Electronics,https://www.arrow.com/,,"70680 Shannon Rapid Apt. 570, 96124, Jenniferport, Arkansas, Holy See (Vatican City State)",,AUD,,,/media/company_images/company_3_img.jpg,True,False,False,True,,60,0,2 +1,DigiKey,DigiKey Electronics,https://www.digikey.com/,,"04964 Cox View Suite 815, 94832, Wesleyport, Delaware, Bolivia",,USD,,,/media/company_images/company_1_img.jpg,True,False,False,True,,200,0,2 +41,Future,Electronic components distributor,https://www.futureelectronics.com/,,"Wogan Terrace 79, 20157, Teasdale, Lebanon",,USD,,,/media/company_images/company_41_img.png,True,False,False,True,,60,0,4 +39,LCSC,Electronic components distributor,https://lcsc.com/,,"77673 Bishop Turnpike, 74969, North Cheryl, Hawaii, Portugal",,USD,,,/media/company_images/company_39_img.webp,True,False,False,True,,60,0,2 +38,McMaster-Carr,Supplier of mechanical components,https://www.mcmaster.com/,,"Schroeders Avenue 56, 8014, Sylvanite, Cayman Islands",,USD,,,/media/company_images/company_38_img.png,True,False,False,True,,240,0,1 +2,Mouser,Mouser Electronics,https://mouser.com/,,"Ashford Street 71, 24165, Leland, Jamaica",,AUD,,,/media/company_images/company_2_img.jpg,True,False,False,True,,61,0,2 +40,Newark,Online distributor of electronic components,https://www.newark.com/,,"Dekoven Court 3, 18301, Emison, Tuvalu",,USD,,,/media/company_images/company_40_img.png,True,False,False,True,,60,0,1 +36,Paint by Numbers,Supplier of high quality paint,,,"Orient Avenue 59, 18609, Corinne, Alabama, France, Metropolitan",,EUR,Pippy Painter,,/media/company_images/company_36_img.jpg,True,False,False,True,,15,0,1 +43,PCBWOY,PCB fabricator / supplier,,,"McKibben Street 77, 12370, Russellville, Benin",,USD,,,/media/company_images/company_43_img.png,True,False,False,True,,1,0,2 +29,Texas Instruments,,https://www.ti.com/,,"264 David Villages, 97718, Lake Michael, New Mexico, Kenya",,USD,,,/media/company_images/company_29_img.jpg,True,False,True,True,,0,1,2 +44,Wire-E-Coyote,American wire supplier,,,"Fountain Avenue 74, 12115, Gulf, Seychelles",,USD,,,,True,False,False,True,,5,0,3 +42,Wirey,Supplier of wire,,,"Preston Court 80, 4462, Manila, Russian Federation",,USD,,,/media/company_images/company_42_img.jpg,True,False,False,True,,11,0,2 diff --git a/src/backend/InvenTree/importer/tests.py b/src/backend/InvenTree/importer/tests.py new file mode 100644 index 0000000000..179d36dad9 --- /dev/null +++ b/src/backend/InvenTree/importer/tests.py @@ -0,0 +1,64 @@ +"""Unit tests for the 'importer' app.""" + +import os + +from django.core.files.base import ContentFile + +from importer.models import DataImportSession +from InvenTree.unit_test import InvenTreeTestCase + + +class ImporterTest(InvenTreeTestCase): + """Basic tests for file imports.""" + + def test_import_session(self): + """Test creation of a data import session.""" + from company.models import Company + + n = Company.objects.count() + + fn = os.path.join(os.path.dirname(__file__), 'test_data', 'companies.csv') + + with open(fn, 'r') as input_file: + data = input_file.read() + + session = DataImportSession.objects.create( + data_file=ContentFile(data, 'companies.csv'), model_type='company' + ) + + session.extract_columns() + + self.assertEqual(session.column_mappings.count(), 14) + + # Check some of the field mappings + for field, col in [ + ('website', 'Website'), + ('is_customer', 'Is customer'), + ('phone', 'Phone number'), + ('description', 'Company description'), + ('active', 'Active'), + ]: + self.assertTrue( + session.column_mappings.filter(field=field, column=col).exists() + ) + + # Run the data import + session.import_data() + self.assertEqual(session.rows.count(), 12) + + # Check that some data has been imported + for row in session.rows.all(): + self.assertIsNotNone(row.data.get('name', None)) + self.assertTrue(row.valid) + + row.validate(commit=True) + self.assertTrue(row.complete) + + self.assertEqual(session.completed_row_count, 12) + + # Check that the new companies have been created + self.assertEqual(n + 12, Company.objects.count()) + + def test_field_defaults(self): + """Test default field values.""" + ... diff --git a/src/backend/InvenTree/importer/validators.py b/src/backend/InvenTree/importer/validators.py new file mode 100644 index 0000000000..166c30acc6 --- /dev/null +++ b/src/backend/InvenTree/importer/validators.py @@ -0,0 +1,53 @@ +"""Custom validation routines for the 'importer' app.""" + +import json + +from django.core.exceptions import ValidationError +from django.utils.translation import gettext_lazy as _ + +# Define maximum limits for imported file data +IMPORTER_MAX_FILE_SIZE = 32 * 1024 * 1042 +IMPORTER_MAX_ROWS = 5000 +IMPORTER_MAX_COLS = 1000 + + +def validate_data_file(data_file): + """Validate the provided data file.""" + import importer.operations + + filesize = data_file.size + + if filesize > IMPORTER_MAX_FILE_SIZE: + raise ValidationError(_('Data file exceeds maximum size limit')) + + dataset = importer.operations.load_data_file(data_file) + + if not dataset.headers or len(dataset.headers) == 0: + raise ValidationError(_('Data file contains no headers')) + + if len(dataset.headers) > IMPORTER_MAX_COLS: + raise ValidationError(_('Data file contains too many columns')) + + if len(dataset) > IMPORTER_MAX_ROWS: + raise ValidationError(_('Data file contains too many rows')) + + +def validate_importer_model_type(value): + """Validate that the given model type is supported for importing.""" + from importer.registry import supported_models + + if value not in supported_models().keys(): + raise ValidationError(f"Unsupported model type '{value}'") + + +def validate_field_defaults(value): + """Validate that the provided value is a valid dict.""" + if value is None: + return + + if type(value) is not dict: + # OK if we can parse it as JSON + try: + value = json.loads(value) + except json.JSONDecodeError: + raise ValidationError(_('Value must be a valid dictionary object')) diff --git a/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po new file mode 100644 index 0000000000..50ded38699 --- /dev/null +++ b/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po @@ -0,0 +1,14868 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-07-11 23:22+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\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" +#: InvenTree/api.py:272 +msgid "API endpoint not found" +msgstr "" + +#: InvenTree/api.py:505 +msgid "User does not have permission to view this model" +msgstr "" + +#: InvenTree/conversion.py:160 +#, python-brace-format +msgid "Invalid unit provided ({unit})" +msgstr "" + +#: InvenTree/conversion.py:177 +msgid "No value provided" +msgstr "" + +#: InvenTree/conversion.py:204 +#, python-brace-format +msgid "Could not convert {original} to {unit}" +msgstr "" + +#: InvenTree/conversion.py:206 +msgid "Invalid quantity supplied" +msgstr "" + +#: InvenTree/conversion.py:220 +#, python-brace-format +msgid "Invalid quantity supplied ({exc})" +msgstr "" + +#: InvenTree/exceptions.py:109 +msgid "Error details can be found in the admin panel" +msgstr "" + +#: InvenTree/fields.py:136 +msgid "Enter date" +msgstr "" + +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:460 +#: build/serializers.py:538 build/templates/build/sidebar.html:25 +#: company/models.py:824 company/templates/company/sidebar.html:37 +#: order/models.py:1296 order/templates/order/po_sidebar.html:11 +#: order/templates/order/return_order_sidebar.html:9 +#: order/templates/order/so_sidebar.html:17 part/admin.py:59 +#: part/models.py:3194 part/templates/part/part_sidebar.html:63 +#: report/templates/report/inventree_build_order_report.html:172 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:694 stock/serializers.py:852 stock/serializers.py:948 +#: stock/serializers.py:998 stock/serializers.py:1309 stock/serializers.py:1398 +#: stock/serializers.py:1563 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 +#: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1084 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:775 +#: templates/js/translated/sales_order.js:1103 +#: templates/js/translated/sales_order.js:2018 +#: templates/js/translated/stock.js:1536 templates/js/translated/stock.js:2428 +msgid "Notes" +msgstr "" + +#: InvenTree/format.py:164 +#, python-brace-format +msgid "Value '{name}' does not appear in pattern format" +msgstr "" + +#: InvenTree/format.py:175 +msgid "Provided value does not match required pattern: " +msgstr "" + +#: InvenTree/forms.py:128 +msgid "Enter password" +msgstr "" + +#: InvenTree/forms.py:129 +msgid "Enter new password" +msgstr "" + +#: InvenTree/forms.py:138 +msgid "Confirm password" +msgstr "" + +#: InvenTree/forms.py:139 +msgid "Confirm new password" +msgstr "" + +#: InvenTree/forms.py:143 +msgid "Old password" +msgstr "" + +#: InvenTree/forms.py:182 +msgid "Email (again)" +msgstr "" + +#: InvenTree/forms.py:186 +msgid "Email address confirmation" +msgstr "" + +#: InvenTree/forms.py:209 +msgid "You must type the same email each time." +msgstr "" + +#: InvenTree/forms.py:248 InvenTree/forms.py:256 +msgid "The provided primary email address is not valid." +msgstr "" + +#: InvenTree/forms.py:263 +msgid "The provided email domain is not approved." +msgstr "" + +#: InvenTree/forms.py:392 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:525 order/models.py:562 order/models.py:764 +msgid "Invalid quantity provided" +msgstr "" + +#: InvenTree/helpers.py:533 +msgid "Empty serial number string" +msgstr "" + +#: InvenTree/helpers.py:562 +msgid "Duplicate serial" +msgstr "" + +#: InvenTree/helpers.py:594 InvenTree/helpers.py:637 +#, python-brace-format +msgid "Invalid group range: {group}" +msgstr "" + +#: InvenTree/helpers.py:625 +#, python-brace-format +msgid "Group range {group} exceeds allowed quantity ({expected_quantity})" +msgstr "" + +#: InvenTree/helpers.py:655 InvenTree/helpers.py:662 InvenTree/helpers.py:681 +#, python-brace-format +msgid "Invalid group sequence: {group}" +msgstr "" + +#: InvenTree/helpers.py:691 +msgid "No serial numbers found" +msgstr "" + +#: InvenTree/helpers.py:696 +msgid "Number of unique serial numbers ({len(serials)}) must match quantity ({expected_quantity})" +msgstr "" + +#: InvenTree/helpers.py:814 +msgid "Remove HTML tags from this value" +msgstr "" + +#: InvenTree/helpers_model.py:140 +msgid "Connection error" +msgstr "" + +#: InvenTree/helpers_model.py:145 InvenTree/helpers_model.py:152 +msgid "Server responded with invalid status code" +msgstr "" + +#: InvenTree/helpers_model.py:148 +msgid "Exception occurred" +msgstr "" + +#: InvenTree/helpers_model.py:158 +msgid "Server responded with invalid Content-Length value" +msgstr "" + +#: InvenTree/helpers_model.py:161 +msgid "Image size is too large" +msgstr "" + +#: InvenTree/helpers_model.py:173 +msgid "Image download exceeded maximum size" +msgstr "" + +#: InvenTree/helpers_model.py:178 +msgid "Remote server returned empty response" +msgstr "" + +#: InvenTree/helpers_model.py:186 +msgid "Supplied URL is not a valid image file" +msgstr "" + +#: InvenTree/locales.py:18 +msgid "Bulgarian" +msgstr "" + +#: InvenTree/locales.py:19 +msgid "Czech" +msgstr "" + +#: InvenTree/locales.py:20 +msgid "Danish" +msgstr "" + +#: InvenTree/locales.py:21 +msgid "German" +msgstr "" + +#: InvenTree/locales.py:22 +msgid "Greek" +msgstr "" + +#: InvenTree/locales.py:23 +msgid "English" +msgstr "" + +#: InvenTree/locales.py:24 +msgid "Spanish" +msgstr "" + +#: InvenTree/locales.py:25 +msgid "Spanish (Mexican)" +msgstr "" + +#: InvenTree/locales.py:26 +msgid "Farsi / Persian" +msgstr "" + +#: InvenTree/locales.py:27 +msgid "Finnish" +msgstr "" + +#: InvenTree/locales.py:28 +msgid "French" +msgstr "" + +#: InvenTree/locales.py:29 +msgid "Hebrew" +msgstr "" + +#: InvenTree/locales.py:30 +msgid "Hindi" +msgstr "" + +#: InvenTree/locales.py:31 +msgid "Hungarian" +msgstr "" + +#: InvenTree/locales.py:32 +msgid "Italian" +msgstr "" + +#: InvenTree/locales.py:33 +msgid "Japanese" +msgstr "" + +#: InvenTree/locales.py:34 +msgid "Korean" +msgstr "" + +#: InvenTree/locales.py:35 +msgid "Latvian" +msgstr "" + +#: InvenTree/locales.py:36 +msgid "Dutch" +msgstr "" + +#: InvenTree/locales.py:37 +msgid "Norwegian" +msgstr "" + +#: InvenTree/locales.py:38 +msgid "Polish" +msgstr "" + +#: InvenTree/locales.py:39 +msgid "Portuguese" +msgstr "" + +#: InvenTree/locales.py:40 +msgid "Portuguese (Brazilian)" +msgstr "" + +#: InvenTree/locales.py:41 +msgid "Romanian" +msgstr "" + +#: InvenTree/locales.py:42 +msgid "Russian" +msgstr "" + +#: InvenTree/locales.py:43 +msgid "Slovak" +msgstr "" + +#: InvenTree/locales.py:44 +msgid "Slovenian" +msgstr "" + +#: InvenTree/locales.py:45 +msgid "Serbian" +msgstr "" + +#: InvenTree/locales.py:46 +msgid "Swedish" +msgstr "" + +#: InvenTree/locales.py:47 +msgid "Thai" +msgstr "" + +#: InvenTree/locales.py:48 +msgid "Turkish" +msgstr "" + +#: InvenTree/locales.py:49 +msgid "Ukrainian" +msgstr "" + +#: InvenTree/locales.py:50 +msgid "Vietnamese" +msgstr "" + +#: InvenTree/locales.py:51 +msgid "Chinese (Simplified)" +msgstr "" + +#: InvenTree/locales.py:52 +msgid "Chinese (Traditional)" +msgstr "" + +#: InvenTree/magic_login.py:28 +#, python-brace-format +msgid "[{site_name}] Log in to the app" +msgstr "" + +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 +#: templates/InvenTree/settings/user.html:49 +#: templates/js/translated/company.js:677 +msgid "Email" +msgstr "" + +#: InvenTree/models.py:105 +msgid "Error running plugin validation" +msgstr "" + +#: InvenTree/models.py:174 +msgid "Metadata must be a python dict object" +msgstr "" + +#: InvenTree/models.py:180 +msgid "Plugin Metadata" +msgstr "" + +#: InvenTree/models.py:181 +msgid "JSON metadata field, for use by external plugins" +msgstr "" + +#: InvenTree/models.py:411 +msgid "Improperly formatted pattern" +msgstr "" + +#: InvenTree/models.py:418 +msgid "Unknown format key specified" +msgstr "" + +#: InvenTree/models.py:424 +msgid "Missing required format key" +msgstr "" + +#: InvenTree/models.py:435 +msgid "Reference field cannot be empty" +msgstr "" + +#: InvenTree/models.py:443 +msgid "Reference must match required pattern" +msgstr "" + +#: InvenTree/models.py:474 +msgid "Reference number is too large" +msgstr "" + +#: InvenTree/models.py:722 +msgid "Duplicate names cannot exist under the same parent" +msgstr "" + +#: InvenTree/models.py:739 +msgid "Invalid choice" +msgstr "" + +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:896 part/models.py:3661 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 +#: templates/InvenTree/settings/mixins/urls.html:13 +#: templates/InvenTree/settings/notifications.html:17 +#: templates/InvenTree/settings/plugin.html:83 +#: templates/InvenTree/settings/plugin_settings.html:22 +#: templates/InvenTree/settings/settings_staff_js.html:67 +#: templates/InvenTree/settings/settings_staff_js.html:446 +#: templates/js/translated/company.js:676 +#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:913 +#: templates/js/translated/company.js:1165 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2766 templates/js/translated/stock.js:2716 +msgid "Name" +msgstr "" + +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 +#: company/templates/company/company_base.html:77 +#: company/templates/company/manufacturer_part.html:75 +#: company/templates/company/supplier_part.html:107 order/models.py:289 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:919 +#: part/models.py:3676 part/templates/part/category.html:82 +#: part/templates/part/part_base.html:170 +#: part/templates/part/part_scheduling.html:12 report/models.py:156 +#: report/models.py:510 report/models.py:536 +#: report/templates/report/inventree_build_order_report.html:117 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 +#: templates/InvenTree/settings/notifications.html:19 +#: templates/InvenTree/settings/plugin_settings.html:27 +#: templates/InvenTree/settings/settings_staff_js.html:170 +#: templates/InvenTree/settings/settings_staff_js.html:451 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:963 +#: templates/js/translated/build.js:2314 templates/js/translated/company.js:519 +#: templates/js/translated/company.js:1330 +#: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2359 +#: templates/js/translated/part.js:2802 templates/js/translated/part.js:2914 +#: templates/js/translated/plugin.js:80 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/purchase_order.js:1849 +#: templates/js/translated/purchase_order.js:2022 +#: templates/js/translated/return_order.js:313 +#: templates/js/translated/sales_order.js:838 +#: templates/js/translated/sales_order.js:1848 +#: templates/js/translated/stock.js:1515 templates/js/translated/stock.js:2058 +#: templates/js/translated/stock.js:2748 templates/js/translated/stock.js:2831 +msgid "Description" +msgstr "" + +#: InvenTree/models.py:776 stock/models.py:81 +msgid "Description (optional)" +msgstr "" + +#: InvenTree/models.py:791 templates/js/translated/part.js:2811 +#: templates/js/translated/stock.js:2757 +msgid "Path" +msgstr "" + +#: InvenTree/models.py:921 +msgid "Markdown notes (optional)" +msgstr "" + +#: InvenTree/models.py:950 +msgid "Barcode Data" +msgstr "" + +#: InvenTree/models.py:951 +msgid "Third party barcode data" +msgstr "" + +#: InvenTree/models.py:957 +msgid "Barcode Hash" +msgstr "" + +#: InvenTree/models.py:958 +msgid "Unique hash of barcode data" +msgstr "" + +#: InvenTree/models.py:1011 +msgid "Existing barcode found" +msgstr "" + +#: InvenTree/models.py:1054 +msgid "Server Error" +msgstr "" + +#: InvenTree/models.py:1055 +msgid "An error has been logged by the server." +msgstr "" + +#: InvenTree/serializers.py:63 part/models.py:4284 +msgid "Must be a valid number" +msgstr "" + +#: InvenTree/serializers.py:100 company/models.py:186 +#: company/templates/company/company_base.html:112 part/models.py:3012 +#: templates/InvenTree/settings/settings_staff_js.html:44 +#: templates/currency_data.html:5 +msgid "Currency" +msgstr "" + +#: InvenTree/serializers.py:103 +msgid "Select currency from available options" +msgstr "" + +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1086 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 +msgid "You do not have permission to change this user role." +msgstr "" + +#: InvenTree/serializers.py:475 +msgid "Only superusers can create new users" +msgstr "" + +#: InvenTree/serializers.py:494 +msgid "Your account has been created." +msgstr "" + +#: InvenTree/serializers.py:496 +msgid "Please use the password reset function to login" +msgstr "" + +#: InvenTree/serializers.py:503 +msgid "Welcome to InvenTree" +msgstr "" + +#: InvenTree/serializers.py:561 +msgid "Invalid value" +msgstr "" + +#: InvenTree/serializers.py:581 importer/models.py:60 +msgid "Data File" +msgstr "" + +#: InvenTree/serializers.py:582 +msgid "Select data file for upload" +msgstr "" + +#: InvenTree/serializers.py:599 +msgid "Unsupported file type" +msgstr "" + +#: InvenTree/serializers.py:605 +msgid "File is too large" +msgstr "" + +#: InvenTree/serializers.py:626 +msgid "No columns found in file" +msgstr "" + +#: InvenTree/serializers.py:629 +msgid "No data rows found in file" +msgstr "" + +#: InvenTree/serializers.py:742 +msgid "No data rows provided" +msgstr "" + +#: InvenTree/serializers.py:745 +msgid "No data columns supplied" +msgstr "" + +#: InvenTree/serializers.py:812 +#, python-brace-format +msgid "Missing required column: '{name}'" +msgstr "" + +#: InvenTree/serializers.py:821 +#, python-brace-format +msgid "Duplicate column: '{col}'" +msgstr "" + +#: InvenTree/serializers.py:861 +msgid "Remote Image" +msgstr "" + +#: InvenTree/serializers.py:862 +msgid "URL of remote image file" +msgstr "" + +#: InvenTree/serializers.py:880 +msgid "Downloading images from remote URL is not enabled" +msgstr "" + +#: InvenTree/status.py:66 part/serializers.py:1228 +msgid "Background worker check failed" +msgstr "" + +#: InvenTree/status.py:70 +msgid "Email backend not configured" +msgstr "" + +#: InvenTree/status.py:73 +msgid "InvenTree system health checks failed" +msgstr "" + +#: InvenTree/templatetags/inventree_extras.py:184 +msgid "Unknown database" +msgstr "" + +#: InvenTree/validators.py:32 InvenTree/validators.py:34 +msgid "Invalid physical unit" +msgstr "" + +#: InvenTree/validators.py:40 +msgid "Not a valid currency code" +msgstr "" + +#: InvenTree/validators.py:118 InvenTree/validators.py:134 +msgid "Overage value must not be negative" +msgstr "" + +#: InvenTree/validators.py:136 +msgid "Overage must not exceed 100%" +msgstr "" + +#: InvenTree/validators.py:142 +msgid "Invalid value for overage" +msgstr "" + +#: InvenTree/views.py:400 templates/InvenTree/settings/user.html:23 +msgid "Edit User Information" +msgstr "" + +#: InvenTree/views.py:412 templates/InvenTree/settings/user.html:20 +msgid "Set Password" +msgstr "" + +#: InvenTree/views.py:434 +msgid "Password fields must match" +msgstr "" + +#: InvenTree/views.py:442 +msgid "Wrong password provided" +msgstr "" + +#: InvenTree/views.py:650 templates/navbar.html:160 +msgid "System Information" +msgstr "" + +#: InvenTree/views.py:657 templates/navbar.html:171 +msgid "About InvenTree" +msgstr "" + +#: build/api.py:247 +msgid "Build must be cancelled before it can be deleted" +msgstr "" + +#: build/api.py:291 build/serializers.py:1225 part/models.py:4162 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2705 +#: templates/js/translated/table_filters.js:190 +#: templates/js/translated/table_filters.js:583 +msgid "Consumable" +msgstr "" + +#: build/api.py:292 build/serializers.py:1226 part/models.py:4156 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 +#: templates/js/translated/table_filters.js:186 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:587 +msgid "Optional" +msgstr "" + +#: build/api.py:293 templates/js/translated/table_filters.js:408 +#: templates/js/translated/table_filters.js:579 +msgid "Tracked" +msgstr "" + +#: build/api.py:295 part/admin.py:144 templates/js/translated/build.js:1919 +#: templates/js/translated/build.js:2823 +#: templates/js/translated/sales_order.js:1965 +#: templates/js/translated/table_filters.js:571 +msgid "Allocated" +msgstr "" + +#: build/api.py:303 company/models.py:879 company/serializers.py:388 +#: company/templates/company/supplier_part.html:114 +#: templates/email/build_order_required_stock.html:19 +#: templates/email/low_stock_notification.html:17 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2755 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:234 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 +#: templates/js/translated/table_filters.js:340 +#: templates/js/translated/table_filters.js:575 +msgid "Available" +msgstr "" + +#: build/models.py:85 build/templates/build/build_base.html:9 +#: build/templates/build/build_base.html:27 +#: report/templates/report/inventree_build_order_report.html:105 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 +#: templates/email/overdue_build_order.html:15 +#: templates/js/translated/build.js:1147 templates/js/translated/stock.js:2892 +msgid "Build Order" +msgstr "" + +#: build/models.py:86 build/templates/build/build_base.html:13 +#: build/templates/build/index.html:8 build/templates/build/index.html:12 +#: order/templates/order/sales_order_detail.html:111 +#: order/templates/order/so_sidebar.html:13 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 +#: templates/InvenTree/search.html:141 +#: templates/InvenTree/settings/sidebar.html:55 +#: templates/js/translated/search.js:186 users/models.py:207 +msgid "Build Orders" +msgstr "" + +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 +msgid "Invalid choice for parent build" +msgstr "" + +#: build/models.py:166 order/models.py:240 +msgid "Responsible user or group must be specified" +msgstr "" + +#: build/models.py:172 +msgid "Build order part cannot be changed" +msgstr "" + +#: build/models.py:233 +msgid "Build Order Reference" +msgstr "" + +#: build/models.py:234 build/serializers.py:1224 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4177 part/templates/part/upload_bom.html:54 +#: report/templates/report/inventree_bill_of_materials_report.html:139 +#: report/templates/report/inventree_purchase_order_report.html:28 +#: report/templates/report/inventree_return_order_report.html:26 +#: report/templates/report/inventree_sales_order_report.html:28 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 +#: templates/js/translated/build.js:1013 templates/js/translated/build.js:2688 +#: templates/js/translated/order.js:291 templates/js/translated/pricing.js:386 +#: templates/js/translated/purchase_order.js:2065 +#: templates/js/translated/return_order.js:728 +#: templates/js/translated/sales_order.js:1854 +msgid "Reference" +msgstr "" + +#: build/models.py:245 +msgid "Brief description of the build (optional)" +msgstr "" + +#: build/models.py:253 build/templates/build/build_base.html:183 +#: build/templates/build/detail.html:87 +msgid "Parent Build" +msgstr "" + +#: build/models.py:254 +msgid "BuildOrder to which this build is allocated" +msgstr "" + +#: build/models.py:259 build/serializers.py:1215 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1482 part/api.py:1778 part/models.py:397 part/models.py:3023 +#: part/models.py:3167 part/models.py:3315 part/models.py:3336 +#: part/models.py:3358 part/models.py:3494 part/models.py:3834 +#: part/models.py:3997 part/models.py:4128 part/models.py:4487 +#: part/serializers.py:1174 part/serializers.py:1802 +#: part/templates/part/part_app_base.html:8 +#: part/templates/part/part_pricing.html:12 +#: part/templates/part/upload_bom.html:52 +#: 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 +#: report/templates/report/inventree_purchase_order_report.html:27 +#: report/templates/report/inventree_return_order_report.html:24 +#: report/templates/report/inventree_sales_order_report.html:27 +#: report/templates/report/inventree_stock_location_report.html:102 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:445 +#: stock/serializers.py:882 templates/InvenTree/search.html:82 +#: templates/email/build_order_completed.html:17 +#: templates/email/build_order_required_stock.html:17 +#: templates/email/low_stock_notification.html:15 +#: templates/email/overdue_build_order.html:16 +#: templates/js/translated/barcode.js:577 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1004 templates/js/translated/build.js:1487 +#: templates/js/translated/build.js:1918 templates/js/translated/build.js:2337 +#: templates/js/translated/build.js:2510 templates/js/translated/company.js:348 +#: templates/js/translated/company.js:1116 +#: templates/js/translated/company.js:1271 +#: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2328 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:751 +#: templates/js/translated/purchase_order.js:1304 +#: templates/js/translated/purchase_order.js:1848 +#: templates/js/translated/purchase_order.js:2007 +#: templates/js/translated/return_order.js:538 +#: templates/js/translated/return_order.js:709 +#: templates/js/translated/sales_order.js:300 +#: templates/js/translated/sales_order.js:1233 +#: templates/js/translated/sales_order.js:1634 +#: templates/js/translated/sales_order.js:1832 +#: templates/js/translated/stock.js:676 templates/js/translated/stock.js:842 +#: templates/js/translated/stock.js:1058 templates/js/translated/stock.js:1997 +#: templates/js/translated/stock.js:2857 templates/js/translated/stock.js:3090 +#: templates/js/translated/stock.js:3236 +msgid "Part" +msgstr "" + +#: build/models.py:267 +msgid "Select part to build" +msgstr "" + +#: build/models.py:272 +msgid "Sales Order Reference" +msgstr "" + +#: build/models.py:276 +msgid "SalesOrder to which this build is allocated" +msgstr "" + +#: build/models.py:281 build/serializers.py:1007 +#: templates/js/translated/build.js:1906 +#: templates/js/translated/sales_order.js:1221 +msgid "Source Location" +msgstr "" + +#: build/models.py:285 +msgid "Select location to take stock from for this build (leave blank to take from any stock location)" +msgstr "" + +#: build/models.py:290 +msgid "Destination Location" +msgstr "" + +#: build/models.py:294 +msgid "Select location where the completed items will be stored" +msgstr "" + +#: build/models.py:298 +msgid "Build Quantity" +msgstr "" + +#: build/models.py:301 +msgid "Number of stock items to build" +msgstr "" + +#: build/models.py:305 +msgid "Completed items" +msgstr "" + +#: build/models.py:307 +msgid "Number of stock items which have been completed" +msgstr "" + +#: build/models.py:311 +msgid "Build Status" +msgstr "" + +#: build/models.py:315 +msgid "Build status code" +msgstr "" + +#: build/models.py:324 build/serializers.py:294 order/serializers.py:630 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1528 +#: templates/js/translated/purchase_order.js:1129 +msgid "Batch Code" +msgstr "" + +#: build/models.py:328 build/serializers.py:295 +msgid "Batch code for this build output" +msgstr "" + +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1126 part/templates/part/part_base.html:310 +#: templates/js/translated/return_order.js:338 +#: templates/js/translated/sales_order.js:863 +msgid "Creation Date" +msgstr "" + +#: build/models.py:335 +msgid "Target completion date" +msgstr "" + +#: build/models.py:336 +msgid "Target date for build completion. Build will be overdue after this date." +msgstr "" + +#: build/models.py:339 order/models.py:521 order/models.py:2091 +#: templates/js/translated/build.js:2422 +msgid "Completion Date" +msgstr "" + +#: build/models.py:345 +msgid "completed by" +msgstr "" + +#: build/models.py:353 templates/js/translated/build.js:2382 +msgid "Issued by" +msgstr "" + +#: build/models.py:354 +msgid "User who issued this build order" +msgstr "" + +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 +#: order/models.py:334 order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:188 +#: order/templates/order/sales_order_base.html:232 part/models.py:1143 +#: part/templates/part/part_base.html:390 +#: report/templates/report/inventree_build_order_report.html:158 +#: templates/InvenTree/settings/settings_staff_js.html:150 +#: templates/js/translated/build.js:2394 +#: templates/js/translated/purchase_order.js:1763 +#: templates/js/translated/return_order.js:358 +#: templates/js/translated/table_filters.js:531 +msgid "Responsible" +msgstr "" + +#: build/models.py:363 +msgid "User or group responsible for this build order" +msgstr "" + +#: build/models.py:368 build/templates/build/detail.html:108 +#: company/templates/company/manufacturer_part.html:107 +#: company/templates/company/supplier_part.html:194 +#: order/templates/order/order_base.html:167 +#: order/templates/order/return_order_base.html:145 +#: order/templates/order/sales_order_base.html:184 +#: part/templates/part/part_base.html:383 stock/models.py:835 +#: stock/templates/stock/item_base.html:200 +#: templates/js/translated/company.js:1019 +msgid "External Link" +msgstr "" + +#: build/models.py:369 common/models.py:3230 part/models.py:961 +#: stock/models.py:835 +msgid "Link to external URL" +msgstr "" + +#: build/models.py:373 +msgid "Build Priority" +msgstr "" + +#: build/models.py:376 +msgid "Priority of this build order" +msgstr "" + +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 +#: templates/InvenTree/settings/settings_staff_js.html:146 +#: templates/js/translated/build.js:2319 +#: templates/js/translated/purchase_order.js:1710 +#: templates/js/translated/return_order.js:317 +#: templates/js/translated/sales_order.js:842 +#: templates/js/translated/table_filters.js:48 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:384 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:617 build/models.py:682 +msgid "Failed to offload task to complete build allocations" +msgstr "" + +#: build/models.py:639 +#, python-brace-format +msgid "Build order {build} has been completed" +msgstr "" + +#: build/models.py:645 +msgid "A build order has been completed" +msgstr "" + +#: build/models.py:871 build/models.py:956 +msgid "No build output specified" +msgstr "" + +#: build/models.py:874 +msgid "Build output is already completed" +msgstr "" + +#: build/models.py:877 +msgid "Build output does not match Build Order" +msgstr "" + +#: build/models.py:960 build/serializers.py:227 build/serializers.py:276 +#: build/serializers.py:874 order/models.py:559 order/serializers.py:462 +#: order/serializers.py:625 part/serializers.py:1543 part/serializers.py:1965 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:665 +msgid "Quantity must be greater than zero" +msgstr "" + +#: build/models.py:965 build/serializers.py:232 +msgid "Quantity cannot be greater than the output quantity" +msgstr "" + +#: build/models.py:1025 build/serializers.py:555 +#, python-brace-format +msgid "Build output {serial} has not passed all required tests" +msgstr "" + +#: build/models.py:1366 +msgid "Build Order Line Item" +msgstr "" + +#: build/models.py:1391 +msgid "Build object" +msgstr "" + +#: build/models.py:1405 build/models.py:1661 build/serializers.py:214 +#: build/serializers.py:261 build/serializers.py:1231 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1384 +#: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 +#: part/forms.py:48 part/models.py:3181 part/models.py:4150 +#: part/templates/part/part_pricing.html:16 +#: part/templates/part/upload_bom.html:53 +#: 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:29 +#: report/templates/report/inventree_sales_order_report.html:29 +#: report/templates/report/inventree_stock_location_report.html:104 +#: report/templates/report/inventree_test_report.html:90 +#: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:656 +#: stock/templates/stock/item_base.html:287 +#: stock/templates/stock/item_base.html:295 +#: stock/templates/stock/item_base.html:342 +#: templates/email/build_order_completed.html:18 +#: templates/js/translated/barcode.js:579 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:981 templates/js/translated/build.js:522 +#: templates/js/translated/build.js:738 templates/js/translated/build.js:1544 +#: templates/js/translated/build.js:1921 templates/js/translated/build.js:2532 +#: templates/js/translated/company.js:1818 +#: templates/js/translated/model_renderers.js:236 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3359 +#: templates/js/translated/pricing.js:381 +#: templates/js/translated/pricing.js:474 +#: templates/js/translated/pricing.js:522 +#: templates/js/translated/pricing.js:616 +#: templates/js/translated/purchase_order.js:754 +#: templates/js/translated/purchase_order.js:1852 +#: templates/js/translated/purchase_order.js:2071 +#: templates/js/translated/sales_order.js:317 +#: templates/js/translated/sales_order.js:1235 +#: templates/js/translated/sales_order.js:1554 +#: templates/js/translated/sales_order.js:1644 +#: templates/js/translated/sales_order.js:1734 +#: templates/js/translated/sales_order.js:1860 +#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:702 +#: templates/js/translated/stock.js:873 templates/js/translated/stock.js:3021 +#: templates/js/translated/stock.js:3104 +msgid "Quantity" +msgstr "" + +#: build/models.py:1406 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1486 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1495 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1505 order/models.py:1908 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1511 order/models.py:1911 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1517 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1576 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1648 build/serializers.py:854 order/serializers.py:1228 +#: order/serializers.py:1249 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:759 stock/serializers.py:1247 stock/serializers.py:1359 +#: stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:194 +#: templates/js/translated/build.js:1920 +#: templates/js/translated/sales_order.js:301 +#: templates/js/translated/sales_order.js:1234 +#: templates/js/translated/sales_order.js:1535 +#: templates/js/translated/sales_order.js:1540 +#: templates/js/translated/sales_order.js:1641 +#: templates/js/translated/sales_order.js:1728 +#: templates/js/translated/stock.js:677 templates/js/translated/stock.js:843 +#: templates/js/translated/stock.js:2977 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1649 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1662 +msgid "Stock quantity to allocate to build" +msgstr "" + +#: build/models.py:1670 +msgid "Install into" +msgstr "" + +#: build/models.py:1671 +msgid "Destination stock item" +msgstr "" + +#: build/serializers.py:91 build/serializers.py:1136 build/serializers.py:1216 +#: part/admin.py:41 part/admin.py:405 part/models.py:3999 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:103 +msgid "Project Code Label" +msgstr "" + +#: build/serializers.py:164 build/serializers.py:883 +#: templates/js/translated/build.js:1044 templates/js/translated/build.js:1497 +msgid "Build Output" +msgstr "" + +#: build/serializers.py:176 +msgid "Build output does not match the parent build" +msgstr "" + +#: build/serializers.py:180 +msgid "Output part does not match BuildOrder part" +msgstr "" + +#: build/serializers.py:184 +msgid "This build output has already been completed" +msgstr "" + +#: build/serializers.py:195 +msgid "This build output is not fully allocated" +msgstr "" + +#: build/serializers.py:215 build/serializers.py:262 +msgid "Enter quantity for build output" +msgstr "" + +#: build/serializers.py:283 +msgid "Integer quantity required for trackable parts" +msgstr "" + +#: build/serializers.py:286 +msgid "Integer quantity required, as the bill of materials contains trackable parts" +msgstr "" + +#: build/serializers.py:301 order/serializers.py:638 order/serializers.py:1388 +#: stock/serializers.py:676 templates/js/translated/purchase_order.js:1153 +#: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 +msgid "Serial Numbers" +msgstr "" + +#: build/serializers.py:302 +msgid "Enter serial numbers for build outputs" +msgstr "" + +#: build/serializers.py:307 build/serializers.py:448 build/serializers.py:520 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 +#: part/serializers.py:1194 stock/serializers.py:102 stock/serializers.py:687 +#: stock/serializers.py:847 stock/serializers.py:943 stock/serializers.py:1391 +#: stock/serializers.py:1647 stock/templates/stock/item_base.html:394 +#: templates/js/translated/barcode.js:578 +#: templates/js/translated/barcode.js:826 templates/js/translated/build.js:1034 +#: templates/js/translated/build.js:1176 templates/js/translated/build.js:2547 +#: templates/js/translated/purchase_order.js:1178 +#: templates/js/translated/purchase_order.js:1268 +#: templates/js/translated/sales_order.js:1547 +#: templates/js/translated/sales_order.js:1655 +#: templates/js/translated/sales_order.js:1663 +#: templates/js/translated/sales_order.js:1742 +#: templates/js/translated/stock.js:678 templates/js/translated/stock.js:844 +#: templates/js/translated/stock.js:1060 templates/js/translated/stock.js:2201 +#: templates/js/translated/stock.js:2871 +msgid "Location" +msgstr "" + +#: build/serializers.py:308 +msgid "Stock location for build output" +msgstr "" + +#: build/serializers.py:322 +msgid "Auto Allocate Serial Numbers" +msgstr "" + +#: build/serializers.py:323 +msgid "Automatically allocate required items with matching serial numbers" +msgstr "" + +#: build/serializers.py:338 +msgid "Serial numbers must be provided for trackable parts" +msgstr "" + +#: build/serializers.py:363 stock/api.py:1033 +msgid "The following serial numbers already exist or are invalid" +msgstr "" + +#: build/serializers.py:410 build/serializers.py:472 build/serializers.py:561 +msgid "A list of build outputs must be provided" +msgstr "" + +#: build/serializers.py:449 +msgid "Stock location for scrapped outputs" +msgstr "" + +#: build/serializers.py:455 +msgid "Discard Allocations" +msgstr "" + +#: build/serializers.py:456 +msgid "Discard any stock allocations for scrapped outputs" +msgstr "" + +#: build/serializers.py:461 +msgid "Reason for scrapping build output(s)" +msgstr "" + +#: build/serializers.py:521 +msgid "Location for completed build outputs" +msgstr "" + +#: build/serializers.py:527 build/templates/build/build_base.html:151 +#: build/templates/build/detail.html:62 order/models.py:950 +#: order/models.py:2070 order/serializers.py:646 stock/admin.py:164 +#: stock/serializers.py:994 stock/serializers.py:1535 +#: stock/templates/stock/item_base.html:427 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2366 +#: templates/js/translated/purchase_order.js:1308 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:330 +#: templates/js/translated/sales_order.js:855 +#: templates/js/translated/stock.js:2176 templates/js/translated/stock.js:2995 +#: templates/js/translated/stock.js:3120 +msgid "Status" +msgstr "" + +#: build/serializers.py:533 +msgid "Accept Incomplete Allocation" +msgstr "" + +#: build/serializers.py:534 +msgid "Complete outputs if stock has not been fully allocated" +msgstr "" + +#: build/serializers.py:619 +msgid "Consume Allocated Stock" +msgstr "" + +#: build/serializers.py:620 +msgid "Consume any stock which has already been allocated to this build" +msgstr "" + +#: build/serializers.py:626 +msgid "Remove Incomplete Outputs" +msgstr "" + +#: build/serializers.py:627 +msgid "Delete any build outputs which have not been completed" +msgstr "" + +#: build/serializers.py:654 +msgid "Not permitted" +msgstr "" + +#: build/serializers.py:655 +msgid "Accept as consumed by this build order" +msgstr "" + +#: build/serializers.py:656 +msgid "Deallocate before completing this build order" +msgstr "" + +#: build/serializers.py:686 +msgid "Overallocated Stock" +msgstr "" + +#: build/serializers.py:688 +msgid "How do you want to handle extra stock items assigned to the build order" +msgstr "" + +#: build/serializers.py:698 +msgid "Some stock items have been overallocated" +msgstr "" + +#: build/serializers.py:703 +msgid "Accept Unallocated" +msgstr "" + +#: build/serializers.py:704 +msgid "Accept that stock items have not been fully allocated to this build order" +msgstr "" + +#: build/serializers.py:714 templates/js/translated/build.js:316 +msgid "Required stock has not been fully allocated" +msgstr "" + +#: build/serializers.py:719 order/serializers.py:320 order/serializers.py:1291 +msgid "Accept Incomplete" +msgstr "" + +#: build/serializers.py:720 +msgid "Accept that the required number of build outputs have not been completed" +msgstr "" + +#: build/serializers.py:730 templates/js/translated/build.js:320 +msgid "Required build quantity has not been completed" +msgstr "" + +#: build/serializers.py:739 templates/js/translated/build.js:304 +msgid "Build order has incomplete outputs" +msgstr "" + +#: build/serializers.py:777 +msgid "Build Line" +msgstr "" + +#: build/serializers.py:787 +msgid "Build output" +msgstr "" + +#: build/serializers.py:795 +msgid "Build output must point to the same build" +msgstr "" + +#: build/serializers.py:831 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:845 +msgid "bom_item.part must point to the same part as the build order" +msgstr "" + +#: build/serializers.py:860 stock/serializers.py:1260 +msgid "Item must be in stock" +msgstr "" + +#: build/serializers.py:908 order/serializers.py:1282 +#, python-brace-format +msgid "Available quantity ({q}) exceeded" +msgstr "" + +#: build/serializers.py:914 +msgid "Build output must be specified for allocation of tracked parts" +msgstr "" + +#: build/serializers.py:921 +msgid "Build output cannot be specified for allocation of untracked parts" +msgstr "" + +#: build/serializers.py:945 order/serializers.py:1534 +msgid "Allocation items must be provided" +msgstr "" + +#: build/serializers.py:1008 +msgid "Stock location where parts are to be sourced (leave blank to take from any location)" +msgstr "" + +#: build/serializers.py:1016 +msgid "Exclude Location" +msgstr "" + +#: build/serializers.py:1017 +msgid "Exclude stock items from this selected location" +msgstr "" + +#: build/serializers.py:1022 +msgid "Interchangeable Stock" +msgstr "" + +#: build/serializers.py:1023 +msgid "Stock items in multiple locations can be used interchangeably" +msgstr "" + +#: build/serializers.py:1028 +msgid "Substitute Stock" +msgstr "" + +#: build/serializers.py:1029 +msgid "Allow allocation of substitute parts" +msgstr "" + +#: build/serializers.py:1034 +msgid "Optional Items" +msgstr "" + +#: build/serializers.py:1035 +msgid "Allocate optional BOM items to build order" +msgstr "" + +#: build/serializers.py:1057 +msgid "Failed to start auto-allocation task" +msgstr "" + +#: build/serializers.py:1128 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1129 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1130 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:456 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1131 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1132 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1135 part/admin.py:39 part/admin.py:398 +#: part/models.py:3998 part/stocktake.py:219 stock/admin.py:152 +msgid "Part ID" +msgstr "" + +#: build/serializers.py:1137 build/serializers.py:1217 part/admin.py:402 +#: part/models.py:4000 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1150 stock/serializers.py:589 +#: templates/js/translated/build.js:1019 templates/js/translated/build.js:1166 +#: templates/js/translated/build.js:2519 +msgid "Allocated Quantity" +msgstr "" + +#: build/serializers.py:1151 stock/templates/stock/item_base.html:340 +msgid "Available Quantity" +msgstr "" + +#: build/serializers.py:1219 part/admin.py:45 part/stocktake.py:221 +msgid "Part Description" +msgstr "" + +#: build/serializers.py:1220 +msgid "Part Category ID" +msgstr "" + +#: build/serializers.py:1221 +msgid "Part Category Name" +msgstr "" + +#: build/serializers.py:1227 common/models.py:1488 part/admin.py:113 +#: part/models.py:1069 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1228 +msgid "Inherited" +msgstr "" + +#: build/serializers.py:1229 part/models.py:4210 +#: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 +#: templates/js/translated/build.js:2714 +msgid "Allow Variants" +msgstr "" + +#: build/serializers.py:1233 part/models.py:4007 part/models.py:4479 +#: stock/api.py:796 +msgid "BOM Item" +msgstr "" + +#: build/serializers.py:1242 build/templates/build/detail.html:236 +#: build/templates/build/sidebar.html:16 templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + +#: build/serializers.py:1247 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:882 part/serializers.py:1561 +#: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 +#: templates/js/translated/build.js:2807 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 +#: templates/js/translated/table_filters.js:170 +msgid "On Order" +msgstr "" + +#: build/serializers.py:1252 part/serializers.py:1563 +#: templates/js/translated/build.js:2811 +#: templates/js/translated/table_filters.js:360 +msgid "In Production" +msgstr "" + +#: build/serializers.py:1257 part/bom.py:172 part/serializers.py:1588 +#: part/templates/part/part_base.html:192 +#: templates/js/translated/sales_order.js:1929 +msgid "Available Stock" +msgstr "" + +#: build/serializers.py:1261 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1262 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1263 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1264 part/serializers.py:888 +msgid "External Stock" +msgstr "" + +#: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 +#: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 +#: templates/js/translated/table_filters.js:598 +msgid "Pending" +msgstr "" + +#: build/status_codes.py:12 +msgid "Production" +msgstr "" + +#: build/status_codes.py:13 order/status_codes.py:15 order/status_codes.py:45 +#: order/status_codes.py:70 +msgid "Cancelled" +msgstr "" + +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 +#: order/status_codes.py:44 order/status_codes.py:69 +#: order/templates/order/order_base.html:158 +#: order/templates/order/sales_order_base.html:165 report/models.py:444 +msgid "Complete" +msgstr "" + +#: build/tasks.py:184 +msgid "Stock required for build order" +msgstr "" + +#: build/tasks.py:201 +msgid "Overdue Build Order" +msgstr "" + +#: build/tasks.py:206 +#, python-brace-format +msgid "Build order {bo} is now overdue" +msgstr "" + +#: build/templates/build/build_base.html:18 +msgid "Part thumbnail" +msgstr "" + +#: build/templates/build/build_base.html:38 +#: company/templates/company/supplier_part.html:35 +#: order/templates/order/order_base.html:29 +#: order/templates/order/return_order_base.html:38 +#: order/templates/order/sales_order_base.html:38 +#: part/templates/part/part_base.html:41 +#: stock/templates/stock/item_base.html:40 +#: stock/templates/stock/location.html:55 +#: templates/js/translated/filters.js:335 +msgid "Barcode actions" +msgstr "" + +#: build/templates/build/build_base.html:42 +#: company/templates/company/supplier_part.html:39 +#: order/templates/order/order_base.html:33 +#: order/templates/order/return_order_base.html:42 +#: order/templates/order/sales_order_base.html:42 +#: part/templates/part/part_base.html:44 +#: stock/templates/stock/item_base.html:44 +#: stock/templates/stock/location.html:57 templates/qr_button.html:1 +msgid "Show QR Code" +msgstr "" + +#: build/templates/build/build_base.html:45 +#: company/templates/company/supplier_part.html:41 +#: order/templates/order/order_base.html:36 +#: order/templates/order/return_order_base.html:45 +#: order/templates/order/sales_order_base.html:45 +#: part/templates/part/part_base.html:47 +#: stock/templates/stock/item_base.html:47 +#: stock/templates/stock/location.html:59 +#: templates/js/translated/barcode.js:527 +#: templates/js/translated/barcode.js:532 +msgid "Unlink Barcode" +msgstr "" + +#: build/templates/build/build_base.html:47 +#: company/templates/company/supplier_part.html:43 +#: order/templates/order/order_base.html:38 +#: order/templates/order/return_order_base.html:47 +#: order/templates/order/sales_order_base.html:47 +#: part/templates/part/part_base.html:49 +#: stock/templates/stock/item_base.html:49 +#: stock/templates/stock/location.html:61 +msgid "Link Barcode" +msgstr "" + +#: build/templates/build/build_base.html:56 +#: order/templates/order/order_base.html:46 +#: order/templates/order/return_order_base.html:55 +#: order/templates/order/sales_order_base.html:55 +msgid "Print actions" +msgstr "" + +#: build/templates/build/build_base.html:60 +msgid "Print build order report" +msgstr "" + +#: build/templates/build/build_base.html:67 +msgid "Build actions" +msgstr "" + +#: build/templates/build/build_base.html:71 +msgid "Edit Build" +msgstr "" + +#: build/templates/build/build_base.html:73 +msgid "Cancel Build" +msgstr "" + +#: build/templates/build/build_base.html:76 +msgid "Duplicate Build" +msgstr "" + +#: build/templates/build/build_base.html:79 +msgid "Delete Build" +msgstr "" + +#: build/templates/build/build_base.html:84 +#: build/templates/build/build_base.html:85 +msgid "Complete Build" +msgstr "" + +#: build/templates/build/build_base.html:107 +msgid "Build Description" +msgstr "" + +#: build/templates/build/build_base.html:117 +msgid "No build outputs have been created for this build order" +msgstr "" + +#: build/templates/build/build_base.html:124 +msgid "Build Order is ready to mark as completed" +msgstr "" + +#: build/templates/build/build_base.html:129 +msgid "Build Order cannot be completed as outstanding outputs remain" +msgstr "" + +#: build/templates/build/build_base.html:134 +msgid "Required build quantity has not yet been completed" +msgstr "" + +#: build/templates/build/build_base.html:139 +msgid "Stock has not been fully allocated to this Build Order" +msgstr "" + +#: build/templates/build/build_base.html:160 +#: build/templates/build/detail.html:138 order/models.py:309 +#: order/models.py:1307 order/serializers.py:175 +#: order/templates/order/order_base.html:186 +#: order/templates/order/return_order_base.html:164 +#: order/templates/order/sales_order_base.html:196 +#: report/templates/report/inventree_build_order_report.html:125 +#: templates/js/translated/build.js:2414 templates/js/translated/part.js:1834 +#: templates/js/translated/purchase_order.js:1739 +#: templates/js/translated/purchase_order.js:2147 +#: templates/js/translated/return_order.js:346 +#: templates/js/translated/return_order.js:750 +#: templates/js/translated/sales_order.js:871 +#: templates/js/translated/sales_order.js:1903 +msgid "Target Date" +msgstr "" + +#: build/templates/build/build_base.html:165 +#, python-format +msgid "This build was due on %(target)s" +msgstr "" + +#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:222 +#: order/templates/order/order_base.html:122 +#: order/templates/order/return_order_base.html:117 +#: order/templates/order/sales_order_base.html:126 +#: templates/js/translated/table_filters.js:98 +#: templates/js/translated/table_filters.js:524 +#: templates/js/translated/table_filters.js:626 +#: templates/js/translated/table_filters.js:667 +msgid "Overdue" +msgstr "" + +#: build/templates/build/build_base.html:177 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" +msgstr "" + +#: build/templates/build/build_base.html:190 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 +#: order/templates/order/sales_order_base.html:9 +#: order/templates/order/sales_order_base.html:28 +#: report/templates/report/inventree_build_order_report.html:135 +#: report/templates/report/inventree_sales_order_report.html:14 +#: stock/templates/stock/item_base.html:369 +#: templates/email/overdue_sales_order.html:15 +#: templates/js/translated/pricing.js:929 +#: templates/js/translated/sales_order.js:805 +#: templates/js/translated/sales_order.js:1028 +#: templates/js/translated/stock.js:2924 +msgid "Sales Order" +msgstr "" + +#: build/templates/build/build_base.html:197 +#: build/templates/build/detail.html:115 +#: report/templates/report/inventree_build_order_report.html:152 +#: templates/js/translated/table_filters.js:24 +msgid "Issued By" +msgstr "" + +#: build/templates/build/build_base.html:211 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2331 +msgid "Priority" +msgstr "" + +#: build/templates/build/build_base.html:269 +msgid "Delete Build Order" +msgstr "" + +#: build/templates/build/build_base.html:279 +msgid "Build Order QR Code" +msgstr "" + +#: build/templates/build/build_base.html:291 +msgid "Link Barcode to Build Order" +msgstr "" + +#: build/templates/build/detail.html:15 +msgid "Build Details" +msgstr "" + +#: build/templates/build/detail.html:38 +msgid "Stock Source" +msgstr "" + +#: build/templates/build/detail.html:43 +msgid "Stock can be taken from any available location." +msgstr "" + +#: build/templates/build/detail.html:49 order/models.py:1448 +#: templates/js/translated/purchase_order.js:2189 +msgid "Destination" +msgstr "" + +#: build/templates/build/detail.html:56 +msgid "Destination location not specified" +msgstr "" + +#: build/templates/build/detail.html:73 +msgid "Allocated Parts" +msgstr "" + +#: build/templates/build/detail.html:80 stock/admin.py:162 +#: stock/templates/stock/item_base.html:162 +#: templates/js/translated/build.js:1555 +#: templates/js/translated/model_renderers.js:241 +#: templates/js/translated/purchase_order.js:1274 +#: templates/js/translated/stock.js:1133 templates/js/translated/stock.js:2190 +#: templates/js/translated/stock.js:3127 +#: templates/js/translated/table_filters.js:313 +#: templates/js/translated/table_filters.js:404 +msgid "Batch" +msgstr "" + +#: build/templates/build/detail.html:133 +#: order/templates/order/order_base.html:173 +#: order/templates/order/return_order_base.html:151 +#: order/templates/order/sales_order_base.html:190 +#: templates/js/translated/build.js:2374 +msgid "Created" +msgstr "" + +#: build/templates/build/detail.html:144 +msgid "No target date set" +msgstr "" + +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:206 +#: templates/js/translated/table_filters.js:689 +msgid "Completed" +msgstr "" + +#: build/templates/build/detail.html:153 +msgid "Build not complete" +msgstr "" + +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:21 +msgid "Child Build Orders" +msgstr "" + +#: build/templates/build/detail.html:177 +msgid "Build Order Line Items" +msgstr "" + +#: build/templates/build/detail.html:181 +msgid "Deallocate stock" +msgstr "" + +#: build/templates/build/detail.html:182 +msgid "Deallocate Stock" +msgstr "" + +#: build/templates/build/detail.html:184 +msgid "Automatically allocate stock to build" +msgstr "" + +#: build/templates/build/detail.html:185 +msgid "Auto Allocate" +msgstr "" + +#: build/templates/build/detail.html:187 +msgid "Manually allocate stock to build" +msgstr "" + +#: build/templates/build/detail.html:188 +msgid "Allocate Stock" +msgstr "" + +#: build/templates/build/detail.html:191 +msgid "Order required parts" +msgstr "" + +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:795 +msgid "Order Parts" +msgstr "" + +#: build/templates/build/detail.html:205 +msgid "Available stock has been filtered based on specified source location for this build order" +msgstr "" + +#: build/templates/build/detail.html:215 +msgid "Incomplete Build Outputs" +msgstr "" + +#: build/templates/build/detail.html:219 +msgid "Create new build output" +msgstr "" + +#: build/templates/build/detail.html:220 +msgid "New Build Output" +msgstr "" + +#: build/templates/build/detail.html:249 build/templates/build/sidebar.html:19 +msgid "Consumed Stock" +msgstr "" + +#: build/templates/build/detail.html:261 +msgid "Completed Build Outputs" +msgstr "" + +#: build/templates/build/detail.html:273 build/templates/build/sidebar.html:23 +#: company/templates/company/detail.html:229 +#: company/templates/company/manufacturer_part.html:141 +#: company/templates/company/manufacturer_part_sidebar.html:9 +#: company/templates/company/sidebar.html:39 +#: order/templates/order/po_sidebar.html:9 +#: order/templates/order/purchase_order_detail.html:84 +#: order/templates/order/return_order_detail.html:70 +#: order/templates/order/return_order_sidebar.html:7 +#: order/templates/order/sales_order_detail.html:124 +#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:217 +#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:110 +#: stock/templates/stock/stock_sidebar.html:23 +msgid "Attachments" +msgstr "" + +#: build/templates/build/detail.html:288 +msgid "Build Notes" +msgstr "" + +#: build/templates/build/detail.html:442 +msgid "Allocation Complete" +msgstr "" + +#: build/templates/build/detail.html:443 +msgid "All lines have been fully allocated" +msgstr "" + +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 +msgid "New Build Order" +msgstr "" + +#: build/templates/build/sidebar.html:5 +msgid "Build Order Details" +msgstr "" + +#: build/templates/build/sidebar.html:8 order/serializers.py:83 +#: order/templates/order/po_sidebar.html:5 +#: order/templates/order/return_order_detail.html:18 +#: order/templates/order/so_sidebar.html:5 +#: report/templates/report/inventree_purchase_order_report.html:22 +#: report/templates/report/inventree_return_order_report.html:19 +#: report/templates/report/inventree_sales_order_report.html:22 +msgid "Line Items" +msgstr "" + +#: build/templates/build/sidebar.html:10 +msgid "Incomplete Outputs" +msgstr "" + +#: common/api.py:690 +msgid "Is Link" +msgstr "" + +#: common/api.py:698 +msgid "Is File" +msgstr "" + +#: common/api.py:740 +msgid "User does not have permission to delete this attachment" +msgstr "" + +#: common/currency.py:132 +msgid "Invalid currency code" +msgstr "" + +#: common/currency.py:134 +msgid "Duplicate currency code" +msgstr "" + +#: common/currency.py:139 +msgid "No valid currency codes provided" +msgstr "" + +#: common/currency.py:156 +msgid "No plugin" +msgstr "" + +#: common/files.py:63 +#, python-brace-format +msgid "Unsupported file format: {fmt}" +msgstr "" + +#: common/files.py:65 +msgid "Error reading file (invalid encoding)" +msgstr "" + +#: common/files.py:70 +msgid "Error reading file (invalid format)" +msgstr "" + +#: common/files.py:72 +msgid "Error reading file (incorrect dimension)" +msgstr "" + +#: common/files.py:74 +msgid "Error reading file (data could be corrupted)" +msgstr "" + +#: common/forms.py:12 +msgid "File" +msgstr "" + +#: common/forms.py:12 +msgid "Select file to upload" +msgstr "" + +#: common/forms.py:25 +msgid "{name.title()} File" +msgstr "" + +#: common/forms.py:26 +#, python-brace-format +msgid "Select {name} file to upload" +msgstr "" + +#: common/models.py:73 +msgid "Updated" +msgstr "" + +#: common/models.py:74 +msgid "Timestamp of last update" +msgstr "" + +#: common/models.py:107 +msgid "Site URL is locked by configuration" +msgstr "" + +#: common/models.py:137 +msgid "Unique project code" +msgstr "" + +#: common/models.py:144 +msgid "Project description" +msgstr "" + +#: common/models.py:153 +msgid "User or group responsible for this project" +msgstr "" + +#: common/models.py:770 +msgid "Settings key (must be unique - case insensitive)" +msgstr "" + +#: common/models.py:774 +msgid "Settings value" +msgstr "" + +#: common/models.py:826 +msgid "Chosen value is not a valid option" +msgstr "" + +#: common/models.py:842 +msgid "Value must be a boolean value" +msgstr "" + +#: common/models.py:850 +msgid "Value must be an integer value" +msgstr "" + +#: common/models.py:887 +msgid "Key string must be unique" +msgstr "" + +#: common/models.py:1119 +msgid "No group" +msgstr "" + +#: common/models.py:1218 +msgid "Restart required" +msgstr "" + +#: common/models.py:1220 +msgid "A setting has been changed which requires a server restart" +msgstr "" + +#: common/models.py:1227 +msgid "Pending migrations" +msgstr "" + +#: common/models.py:1228 +msgid "Number of pending database migrations" +msgstr "" + +#: common/models.py:1233 +msgid "Server Instance Name" +msgstr "" + +#: common/models.py:1235 +msgid "String descriptor for the server instance" +msgstr "" + +#: common/models.py:1239 +msgid "Use instance name" +msgstr "" + +#: common/models.py:1240 +msgid "Use the instance name in the title-bar" +msgstr "" + +#: common/models.py:1245 +msgid "Restrict showing `about`" +msgstr "" + +#: common/models.py:1246 +msgid "Show the `about` modal only to superusers" +msgstr "" + +#: common/models.py:1251 company/models.py:111 company/models.py:112 +msgid "Company name" +msgstr "" + +#: common/models.py:1252 +msgid "Internal company name" +msgstr "" + +#: common/models.py:1256 +msgid "Base URL" +msgstr "" + +#: common/models.py:1257 +msgid "Base URL for server instance" +msgstr "" + +#: common/models.py:1263 +msgid "Default Currency" +msgstr "" + +#: common/models.py:1264 +msgid "Select base currency for pricing calculations" +msgstr "" + +#: common/models.py:1270 +msgid "Supported Currencies" +msgstr "" + +#: common/models.py:1271 +msgid "List of supported currency codes" +msgstr "" + +#: common/models.py:1277 +msgid "Currency Update Interval" +msgstr "" + +#: common/models.py:1279 +msgid "How often to update exchange rates (set to zero to disable)" +msgstr "" + +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 +msgid "days" +msgstr "" + +#: common/models.py:1286 +msgid "Currency Update Plugin" +msgstr "" + +#: common/models.py:1287 +msgid "Currency update plugin to use" +msgstr "" + +#: common/models.py:1292 +msgid "Download from URL" +msgstr "" + +#: common/models.py:1294 +msgid "Allow download of remote images and files from external URL" +msgstr "" + +#: common/models.py:1300 +msgid "Download Size Limit" +msgstr "" + +#: common/models.py:1301 +msgid "Maximum allowable download size for remote image" +msgstr "" + +#: common/models.py:1307 +msgid "User-agent used to download from URL" +msgstr "" + +#: common/models.py:1309 +msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" +msgstr "" + +#: common/models.py:1314 +msgid "Strict URL Validation" +msgstr "" + +#: common/models.py:1315 +msgid "Require schema specification when validating URLs" +msgstr "" + +#: common/models.py:1320 +msgid "Require confirm" +msgstr "" + +#: common/models.py:1321 +msgid "Require explicit user confirmation for certain action." +msgstr "" + +#: common/models.py:1326 +msgid "Tree Depth" +msgstr "" + +#: common/models.py:1328 +msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." +msgstr "" + +#: common/models.py:1334 +msgid "Update Check Interval" +msgstr "" + +#: common/models.py:1335 +msgid "How often to check for updates (set to zero to disable)" +msgstr "" + +#: common/models.py:1341 +msgid "Automatic Backup" +msgstr "" + +#: common/models.py:1342 +msgid "Enable automatic backup of database and media files" +msgstr "" + +#: common/models.py:1347 +msgid "Auto Backup Interval" +msgstr "" + +#: common/models.py:1348 +msgid "Specify number of days between automated backup events" +msgstr "" + +#: common/models.py:1354 +msgid "Task Deletion Interval" +msgstr "" + +#: common/models.py:1356 +msgid "Background task results will be deleted after specified number of days" +msgstr "" + +#: common/models.py:1363 +msgid "Error Log Deletion Interval" +msgstr "" + +#: common/models.py:1365 +msgid "Error logs will be deleted after specified number of days" +msgstr "" + +#: common/models.py:1372 +msgid "Notification Deletion Interval" +msgstr "" + +#: common/models.py:1374 +msgid "User notifications will be deleted after specified number of days" +msgstr "" + +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 +msgid "Barcode Support" +msgstr "" + +#: common/models.py:1382 +msgid "Enable barcode scanner support in the web interface" +msgstr "" + +#: common/models.py:1387 +msgid "Barcode Input Delay" +msgstr "" + +#: common/models.py:1388 +msgid "Barcode input processing delay time" +msgstr "" + +#: common/models.py:1394 +msgid "Barcode Webcam Support" +msgstr "" + +#: common/models.py:1395 +msgid "Allow barcode scanning via webcam in browser" +msgstr "" + +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 +msgid "Part Revisions" +msgstr "" + +#: common/models.py:1407 +msgid "Enable revision field for Part" +msgstr "" + +#: common/models.py:1412 +msgid "Allow Deletion from Assembly" +msgstr "" + +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" +msgstr "" + +#: common/models.py:1418 +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" +msgstr "" + +#: common/models.py:1423 +msgid "Allow multiple parts to share the same IPN" +msgstr "" + +#: common/models.py:1428 +msgid "Allow Editing IPN" +msgstr "" + +#: common/models.py:1429 +msgid "Allow changing the IPN value while editing a part" +msgstr "" + +#: common/models.py:1434 +msgid "Copy Part BOM Data" +msgstr "" + +#: common/models.py:1435 +msgid "Copy BOM data by default when duplicating a part" +msgstr "" + +#: common/models.py:1440 +msgid "Copy Part Parameter Data" +msgstr "" + +#: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 +msgid "Copy Category Parameter Templates" +msgstr "" + +#: common/models.py:1453 +msgid "Copy category parameter templates when creating a part" +msgstr "" + +#: common/models.py:1458 part/admin.py:108 part/models.py:3842 +#: report/models.py:294 report/models.py:361 report/serializers.py:90 +#: report/serializers.py:131 stock/serializers.py:232 +#: templates/js/translated/table_filters.js:139 +#: templates/js/translated/table_filters.js:772 +msgid "Template" +msgstr "" + +#: common/models.py:1459 +msgid "Parts are templates by default" +msgstr "" + +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1057 +#: templates/js/translated/bom.js:1639 +#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:726 +msgid "Assembly" +msgstr "" + +#: common/models.py:1465 +msgid "Parts can be assembled from other components by default" +msgstr "" + +#: common/models.py:1470 part/admin.py:95 part/models.py:1063 +#: templates/js/translated/table_filters.js:734 +msgid "Component" +msgstr "" + +#: common/models.py:1471 +msgid "Parts can be used as sub-components by default" +msgstr "" + +#: common/models.py:1476 part/admin.py:100 part/models.py:1075 +msgid "Purchaseable" +msgstr "" + +#: common/models.py:1477 +msgid "Parts are purchaseable by default" +msgstr "" + +#: common/models.py:1482 part/admin.py:104 part/models.py:1081 +#: templates/js/translated/table_filters.js:760 +msgid "Salable" +msgstr "" + +#: common/models.py:1483 +msgid "Parts are salable by default" +msgstr "" + +#: common/models.py:1489 +msgid "Parts are trackable by default" +msgstr "" + +#: common/models.py:1494 part/admin.py:117 part/models.py:1097 +#: part/templates/part/part_base.html:154 +#: templates/js/translated/table_filters.js:143 +#: templates/js/translated/table_filters.js:780 +msgid "Virtual" +msgstr "" + +#: common/models.py:1495 +msgid "Parts are virtual by default" +msgstr "" + +#: common/models.py:1500 +msgid "Show Import in Views" +msgstr "" + +#: common/models.py:1501 +msgid "Display the import wizard in some part views" +msgstr "" + +#: common/models.py:1506 +msgid "Show related parts" +msgstr "" + +#: common/models.py:1507 +msgid "Display related parts for a part" +msgstr "" + +#: common/models.py:1512 +msgid "Initial Stock Data" +msgstr "" + +#: common/models.py:1513 +msgid "Allow creation of initial stock when adding a new part" +msgstr "" + +#: common/models.py:1518 templates/js/translated/part.js:107 +msgid "Initial Supplier Data" +msgstr "" + +#: common/models.py:1520 +msgid "Allow creation of initial supplier data when adding a new part" +msgstr "" + +#: common/models.py:1526 +msgid "Part Name Display Format" +msgstr "" + +#: common/models.py:1527 +msgid "Format to display the part name" +msgstr "" + +#: common/models.py:1533 +msgid "Part Category Default Icon" +msgstr "" + +#: common/models.py:1534 +msgid "Part category default icon (empty means no icon)" +msgstr "" + +#: common/models.py:1538 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/models.py:1540 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1546 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1548 +msgid "Minimum number of decimal places to display when rendering pricing data" +msgstr "" + +#: common/models.py:1559 +msgid "Maximum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1561 +msgid "Maximum number of decimal places to display when rendering pricing data" +msgstr "" + +#: common/models.py:1572 +msgid "Use Supplier Pricing" +msgstr "" + +#: common/models.py:1574 +msgid "Include supplier price breaks in overall pricing calculations" +msgstr "" + +#: common/models.py:1580 +msgid "Purchase History Override" +msgstr "" + +#: common/models.py:1582 +msgid "Historical purchase order pricing overrides supplier price breaks" +msgstr "" + +#: common/models.py:1588 +msgid "Use Stock Item Pricing" +msgstr "" + +#: common/models.py:1590 +msgid "Use pricing from manually entered stock data for pricing calculations" +msgstr "" + +#: common/models.py:1596 +msgid "Stock Item Pricing Age" +msgstr "" + +#: common/models.py:1598 +msgid "Exclude stock items older than this number of days from pricing calculations" +msgstr "" + +#: common/models.py:1605 +msgid "Use Variant Pricing" +msgstr "" + +#: common/models.py:1606 +msgid "Include variant pricing in overall pricing calculations" +msgstr "" + +#: common/models.py:1611 +msgid "Active Variants Only" +msgstr "" + +#: common/models.py:1613 +msgid "Only use active variant parts for calculating variant pricing" +msgstr "" + +#: common/models.py:1619 +msgid "Pricing Rebuild Interval" +msgstr "" + +#: common/models.py:1621 +msgid "Number of days before part pricing is automatically updated" +msgstr "" + +#: common/models.py:1628 +msgid "Internal Prices" +msgstr "" + +#: common/models.py:1629 +msgid "Enable internal prices for parts" +msgstr "" + +#: common/models.py:1634 +msgid "Internal Price Override" +msgstr "" + +#: common/models.py:1636 +msgid "If available, internal prices override price range calculations" +msgstr "" + +#: common/models.py:1642 +msgid "Enable label printing" +msgstr "" + +#: common/models.py:1643 +msgid "Enable label printing from the web interface" +msgstr "" + +#: common/models.py:1648 +msgid "Label Image DPI" +msgstr "" + +#: common/models.py:1650 +msgid "DPI resolution when generating image files to supply to label printing plugins" +msgstr "" + +#: common/models.py:1656 +msgid "Enable Reports" +msgstr "" + +#: common/models.py:1657 +msgid "Enable generation of reports" +msgstr "" + +#: common/models.py:1662 templates/stats.html:25 +msgid "Debug Mode" +msgstr "" + +#: common/models.py:1663 +msgid "Generate reports in debug mode (HTML output)" +msgstr "" + +#: common/models.py:1668 +msgid "Log Report Errors" +msgstr "" + +#: common/models.py:1669 +msgid "Log errors which occur when generating reports" +msgstr "" + +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:29 +#: report/models.py:302 +msgid "Page Size" +msgstr "" + +#: common/models.py:1675 +msgid "Default page size for PDF reports" +msgstr "" + +#: common/models.py:1680 +msgid "Enable Test Reports" +msgstr "" + +#: common/models.py:1681 +msgid "Enable generation of test reports" +msgstr "" + +#: common/models.py:1686 +msgid "Attach Test Reports" +msgstr "" + +#: common/models.py:1688 +msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" +msgstr "" + +#: common/models.py:1694 +msgid "Globally Unique Serials" +msgstr "" + +#: common/models.py:1695 +msgid "Serial numbers for stock items must be globally unique" +msgstr "" + +#: common/models.py:1700 +msgid "Autofill Serial Numbers" +msgstr "" + +#: common/models.py:1701 +msgid "Autofill serial numbers in forms" +msgstr "" + +#: common/models.py:1706 +msgid "Delete Depleted Stock" +msgstr "" + +#: common/models.py:1708 +msgid "Determines default behavior when a stock item is depleted" +msgstr "" + +#: common/models.py:1714 +msgid "Batch Code Template" +msgstr "" + +#: common/models.py:1716 +msgid "Template for generating default batch codes for stock items" +msgstr "" + +#: common/models.py:1721 +msgid "Stock Expiry" +msgstr "" + +#: common/models.py:1722 +msgid "Enable stock expiry functionality" +msgstr "" + +#: common/models.py:1727 +msgid "Sell Expired Stock" +msgstr "" + +#: common/models.py:1728 +msgid "Allow sale of expired stock" +msgstr "" + +#: common/models.py:1733 +msgid "Stock Stale Time" +msgstr "" + +#: common/models.py:1735 +msgid "Number of days stock items are considered stale before expiring" +msgstr "" + +#: common/models.py:1742 +msgid "Build Expired Stock" +msgstr "" + +#: common/models.py:1743 +msgid "Allow building with expired stock" +msgstr "" + +#: common/models.py:1748 +msgid "Stock Ownership Control" +msgstr "" + +#: common/models.py:1749 +msgid "Enable ownership control over stock locations and items" +msgstr "" + +#: common/models.py:1754 +msgid "Stock Location Default Icon" +msgstr "" + +#: common/models.py:1755 +msgid "Stock location default icon (empty means no icon)" +msgstr "" + +#: common/models.py:1759 +msgid "Show Installed Stock Items" +msgstr "" + +#: common/models.py:1760 +msgid "Display installed stock items in stock tables" +msgstr "" + +#: common/models.py:1765 +msgid "Check BOM when installing items" +msgstr "" + +#: common/models.py:1767 +msgid "Installed stock items must exist in the BOM for the parent part" +msgstr "" + +#: common/models.py:1773 +msgid "Allow Out of Stock Transfer" +msgstr "" + +#: common/models.py:1775 +msgid "Allow stock items which are not in stock to be transferred between stock locations" +msgstr "" + +#: common/models.py:1781 +msgid "Build Order Reference Pattern" +msgstr "" + +#: common/models.py:1783 +msgid "Required pattern for generating Build Order reference field" +msgstr "" + +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 +msgid "Require Responsible Owner" +msgstr "" + +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 +msgid "A responsible owner must be assigned to each order" +msgstr "" + +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 +msgid "Block Until Tests Pass" +msgstr "" + +#: common/models.py:1817 +msgid "Prevent build outputs from being completed until all required tests pass" +msgstr "" + +#: common/models.py:1823 +msgid "Enable Return Orders" +msgstr "" + +#: common/models.py:1824 +msgid "Enable return order functionality in the user interface" +msgstr "" + +#: common/models.py:1829 +msgid "Return Order Reference Pattern" +msgstr "" + +#: common/models.py:1831 +msgid "Required pattern for generating Return Order reference field" +msgstr "" + +#: common/models.py:1843 +msgid "Edit Completed Return Orders" +msgstr "" + +#: common/models.py:1845 +msgid "Allow editing of return orders after they have been completed" +msgstr "" + +#: common/models.py:1851 +msgid "Sales Order Reference Pattern" +msgstr "" + +#: common/models.py:1853 +msgid "Required pattern for generating Sales Order reference field" +msgstr "" + +#: common/models.py:1865 +msgid "Sales Order Default Shipment" +msgstr "" + +#: common/models.py:1866 +msgid "Enable creation of default shipment with sales orders" +msgstr "" + +#: common/models.py:1871 +msgid "Edit Completed Sales Orders" +msgstr "" + +#: common/models.py:1873 +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1879 +msgid "Mark Shipped Orders as Complete" +msgstr "" + +#: common/models.py:1881 +msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" +msgstr "" + +#: common/models.py:1887 +msgid "Purchase Order Reference Pattern" +msgstr "" + +#: common/models.py:1889 +msgid "Required pattern for generating Purchase Order reference field" +msgstr "" + +#: common/models.py:1901 +msgid "Edit Completed Purchase Orders" +msgstr "" + +#: common/models.py:1903 +msgid "Allow editing of purchase orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1909 +msgid "Auto Complete Purchase Orders" +msgstr "" + +#: common/models.py:1911 +msgid "Automatically mark purchase orders as complete when all line items are received" +msgstr "" + +#: common/models.py:1918 +msgid "Enable password forgot" +msgstr "" + +#: common/models.py:1919 +msgid "Enable password forgot function on the login pages" +msgstr "" + +#: common/models.py:1924 +msgid "Enable registration" +msgstr "" + +#: common/models.py:1925 +msgid "Enable self-registration for users on the login pages" +msgstr "" + +#: common/models.py:1930 +msgid "Enable SSO" +msgstr "" + +#: common/models.py:1931 +msgid "Enable SSO on the login pages" +msgstr "" + +#: common/models.py:1936 +msgid "Enable SSO registration" +msgstr "" + +#: common/models.py:1938 +msgid "Enable self-registration via SSO for users on the login pages" +msgstr "" + +#: common/models.py:1944 +msgid "Enable SSO group sync" +msgstr "" + +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" + +#: common/models.py:1952 +msgid "SSO group key" +msgstr "" + +#: common/models.py:1954 +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" + +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" + +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" + +#: common/models.py:1968 +msgid "Remove groups outside of SSO" +msgstr "" + +#: common/models.py:1970 +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 "" + +#: common/models.py:1976 +msgid "Email required" +msgstr "" + +#: common/models.py:1977 +msgid "Require user to supply mail on signup" +msgstr "" + +#: common/models.py:1982 +msgid "Auto-fill SSO users" +msgstr "" + +#: common/models.py:1984 +msgid "Automatically fill out user-details from SSO account-data" +msgstr "" + +#: common/models.py:1990 +msgid "Mail twice" +msgstr "" + +#: common/models.py:1991 +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" +msgstr "" + +#: common/models.py:1997 +msgid "On signup ask users twice for their password" +msgstr "" + +#: common/models.py:2002 +msgid "Allowed domains" +msgstr "" + +#: common/models.py:2004 +msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgstr "" + +#: common/models.py:2010 +msgid "Group on signup" +msgstr "" + +#: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" + +#: common/models.py:2018 +msgid "Enforce MFA" +msgstr "" + +#: common/models.py:2019 +msgid "Users must use multifactor security." +msgstr "" + +#: common/models.py:2024 +msgid "Check plugins on startup" +msgstr "" + +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:2034 +msgid "Check for plugin updates" +msgstr "" + +#: common/models.py:2035 +msgid "Enable periodic checks for updates to installed plugins" +msgstr "" + +#: common/models.py:2041 +msgid "Enable URL integration" +msgstr "" + +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" +msgstr "" + +#: common/models.py:2048 +msgid "Enable navigation integration" +msgstr "" + +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" +msgstr "" + +#: common/models.py:2056 +msgid "Enable plugins to add apps" +msgstr "" + +#: common/models.py:2062 +msgid "Enable schedule integration" +msgstr "" + +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" +msgstr "" + +#: common/models.py:2069 +msgid "Enable event integration" +msgstr "" + +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" +msgstr "" + +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" +msgstr "" + +#: common/models.py:2121 +msgid "Enable Test Station Data" +msgstr "" + +#: common/models.py:2122 +msgid "Enable test station data collection for test results" +msgstr "" + +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" +msgstr "" + +#: common/models.py:2177 +msgid "Hide inactive parts" +msgstr "" + +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" +msgstr "" + +#: common/models.py:2185 +msgid "Show subscribed parts" +msgstr "" + +#: common/models.py:2186 +msgid "Show subscribed parts on the homepage" +msgstr "" + +#: common/models.py:2191 +msgid "Show subscribed categories" +msgstr "" + +#: common/models.py:2192 +msgid "Show subscribed part categories on the homepage" +msgstr "" + +#: common/models.py:2197 +msgid "Show latest parts" +msgstr "" + +#: common/models.py:2198 +msgid "Show latest parts on the homepage" +msgstr "" + +#: common/models.py:2203 +msgid "Show invalid BOMs" +msgstr "" + +#: common/models.py:2204 +msgid "Show BOMs that await validation on the homepage" +msgstr "" + +#: common/models.py:2209 +msgid "Show recent stock changes" +msgstr "" + +#: common/models.py:2210 +msgid "Show recently changed stock items on the homepage" +msgstr "" + +#: common/models.py:2215 +msgid "Show low stock" +msgstr "" + +#: common/models.py:2216 +msgid "Show low stock items on the homepage" +msgstr "" + +#: common/models.py:2221 +msgid "Show depleted stock" +msgstr "" + +#: common/models.py:2222 +msgid "Show depleted stock items on the homepage" +msgstr "" + +#: common/models.py:2227 +msgid "Show needed stock" +msgstr "" + +#: common/models.py:2228 +msgid "Show stock items needed for builds on the homepage" +msgstr "" + +#: common/models.py:2233 +msgid "Show expired stock" +msgstr "" + +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" +msgstr "" + +#: common/models.py:2239 +msgid "Show stale stock" +msgstr "" + +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" +msgstr "" + +#: common/models.py:2246 +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" +msgstr "" + +#: common/models.py:2252 +msgid "Show overdue builds on the homepage" +msgstr "" + +#: common/models.py:2257 +msgid "Show outstanding POs" +msgstr "" + +#: common/models.py:2258 +msgid "Show outstanding POs on the homepage" +msgstr "" + +#: common/models.py:2263 +msgid "Show overdue POs" +msgstr "" + +#: common/models.py:2264 +msgid "Show overdue POs on the homepage" +msgstr "" + +#: common/models.py:2269 +msgid "Show outstanding SOs" +msgstr "" + +#: common/models.py:2270 +msgid "Show outstanding SOs on the homepage" +msgstr "" + +#: common/models.py:2275 +msgid "Show overdue SOs" +msgstr "" + +#: common/models.py:2276 +msgid "Show overdue SOs on the homepage" +msgstr "" + +#: common/models.py:2281 +msgid "Show pending SO shipments" +msgstr "" + +#: common/models.py:2282 +msgid "Show pending SO shipments on the homepage" +msgstr "" + +#: common/models.py:2287 +msgid "Show News" +msgstr "" + +#: common/models.py:2288 +msgid "Show news on the homepage" +msgstr "" + +#: common/models.py:2293 +msgid "Inline label display" +msgstr "" + +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" +msgstr "" + +#: common/models.py:2301 +msgid "Default label printer" +msgstr "" + +#: common/models.py:2303 +msgid "Configure which label printer should be selected by default" +msgstr "" + +#: common/models.py:2309 +msgid "Inline report display" +msgstr "" + +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" +msgstr "" + +#: common/models.py:2317 +msgid "Search Parts" +msgstr "" + +#: common/models.py:2318 +msgid "Display parts in search preview window" +msgstr "" + +#: common/models.py:2323 +msgid "Search Supplier Parts" +msgstr "" + +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" +msgstr "" + +#: common/models.py:2329 +msgid "Search Manufacturer Parts" +msgstr "" + +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" +msgstr "" + +#: common/models.py:2336 +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" +msgstr "" + +#: common/models.py:2342 +msgid "Display part categories in search preview window" +msgstr "" + +#: common/models.py:2347 +msgid "Search Stock" +msgstr "" + +#: common/models.py:2348 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" +msgstr "" + +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" +msgstr "" + +#: common/models.py:2361 +msgid "Search Locations" +msgstr "" + +#: common/models.py:2362 +msgid "Display stock locations in search preview window" +msgstr "" + +#: common/models.py:2367 +msgid "Search Companies" +msgstr "" + +#: common/models.py:2368 +msgid "Display companies in search preview window" +msgstr "" + +#: common/models.py:2373 +msgid "Search Build Orders" +msgstr "" + +#: common/models.py:2374 +msgid "Display build orders in search preview window" +msgstr "" + +#: common/models.py:2379 +msgid "Search Purchase Orders" +msgstr "" + +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" +msgstr "" + +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" +msgstr "" + +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" +msgstr "" + +#: common/models.py:2393 +msgid "Search Sales Orders" +msgstr "" + +#: common/models.py:2394 +msgid "Display sales orders in search preview window" +msgstr "" + +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" +msgstr "" + +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" +msgstr "" + +#: common/models.py:2407 +msgid "Search Return Orders" +msgstr "" + +#: common/models.py:2408 +msgid "Display return orders in search preview window" +msgstr "" + +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" +msgstr "" + +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" +msgstr "" + +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" +msgstr "" + +#: common/models.py:2430 +msgid "Enable regular expressions in search queries" +msgstr "" + +#: common/models.py:2435 +msgid "Whole Word Search" +msgstr "" + +#: common/models.py:2436 +msgid "Search queries return results for whole word matches" +msgstr "" + +#: common/models.py:2441 +msgid "Show Quantity in Forms" +msgstr "" + +#: common/models.py:2442 +msgid "Display available part quantity in some forms" +msgstr "" + +#: common/models.py:2447 +msgid "Escape Key Closes Forms" +msgstr "" + +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" +msgstr "" + +#: common/models.py:2454 +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" +msgstr "" + +#: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 +msgid "Receive error reports" +msgstr "" + +#: common/models.py:2496 +msgid "Receive notifications for system errors" +msgstr "" + +#: common/models.py:2501 +msgid "Last used printing machines" +msgstr "" + +#: common/models.py:2502 +msgid "Save the last used printing machines for a user" +msgstr "" + +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3204 part/models.py:3291 part/models.py:3365 +#: part/models.py:3393 plugin/models.py:274 plugin/models.py:275 +#: report/templates/report/inventree_test_report.html:105 +#: templates/js/translated/stock.js:3036 users/models.py:111 +msgid "User" +msgstr "" + +#: common/models.py:2545 +msgid "Price break quantity" +msgstr "" + +#: common/models.py:2552 company/serializers.py:506 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 +#: templates/js/translated/pricing.js:621 +#: templates/js/translated/return_order.js:740 +msgid "Price" +msgstr "" + +#: common/models.py:2553 +msgid "Unit price at specified quantity" +msgstr "" + +#: common/models.py:2649 common/models.py:2834 +msgid "Endpoint" +msgstr "" + +#: common/models.py:2650 +msgid "Endpoint at which this webhook is received" +msgstr "" + +#: common/models.py:2660 +msgid "Name for this webhook" +msgstr "" + +#: common/models.py:2664 +msgid "Is this webhook active" +msgstr "" + +#: common/models.py:2680 users/models.py:159 +msgid "Token" +msgstr "" + +#: common/models.py:2681 +msgid "Token for access" +msgstr "" + +#: common/models.py:2689 +msgid "Secret" +msgstr "" + +#: common/models.py:2690 +msgid "Shared secret for HMAC" +msgstr "" + +#: common/models.py:2798 +msgid "Message ID" +msgstr "" + +#: common/models.py:2799 +msgid "Unique identifier for this message" +msgstr "" + +#: common/models.py:2807 +msgid "Host" +msgstr "" + +#: common/models.py:2808 +msgid "Host from which this message was received" +msgstr "" + +#: common/models.py:2816 +msgid "Header" +msgstr "" + +#: common/models.py:2817 +msgid "Header of this message" +msgstr "" + +#: common/models.py:2824 +msgid "Body" +msgstr "" + +#: common/models.py:2825 +msgid "Body of this message" +msgstr "" + +#: common/models.py:2835 +msgid "Endpoint on which this message was received" +msgstr "" + +#: common/models.py:2840 +msgid "Worked on" +msgstr "" + +#: common/models.py:2841 +msgid "Was the work on this message finished?" +msgstr "" + +#: common/models.py:2967 +msgid "Id" +msgstr "" + +#: common/models.py:2969 templates/js/translated/company.js:965 +#: templates/js/translated/news.js:44 +msgid "Title" +msgstr "" + +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:960 +#: part/templates/part/part_scheduling.html:11 +#: report/templates/report/inventree_build_order_report.html:164 +#: stock/admin.py:229 templates/js/translated/company.js:1319 +#: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2473 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/purchase_order.js:2204 +#: templates/js/translated/return_order.js:779 +#: templates/js/translated/sales_order.js:1092 +#: templates/js/translated/sales_order.js:2023 +msgid "Link" +msgstr "" + +#: common/models.py:2973 templates/js/translated/news.js:60 +msgid "Published" +msgstr "" + +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 +msgid "Author" +msgstr "" + +#: common/models.py:2977 templates/js/translated/news.js:52 +msgid "Summary" +msgstr "" + +#: common/models.py:2980 +msgid "Read" +msgstr "" + +#: common/models.py:2980 +msgid "Was this news item read?" +msgstr "" + +#: common/models.py:2997 company/models.py:159 part/models.py:970 +#: 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 +#: stock/templates/stock/item_base.html:133 templates/503.html:31 +#: templates/hover_image.html:7 templates/hover_image.html:9 +#: templates/modals.html:6 +msgid "Image" +msgstr "" + +#: common/models.py:2997 +msgid "Image file" +msgstr "" + +#: common/models.py:3009 common/models.py:3213 +msgid "Target model type for this image" +msgstr "" + +#: common/models.py:3013 +msgid "Target model ID for this image" +msgstr "" + +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 +msgid "Unit name must be a valid identifier" +msgstr "" + +#: common/models.py:3090 +msgid "Unit name" +msgstr "" + +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 +msgid "Symbol" +msgstr "" + +#: common/models.py:3098 +msgid "Optional unit symbol" +msgstr "" + +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 +msgid "Definition" +msgstr "" + +#: common/models.py:3105 +msgid "Unit definition" +msgstr "" + +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 +#: templates/js/translated/attachment.js:119 +#: templates/js/translated/attachment.js:345 +msgid "Attachment" +msgstr "" + +#: common/models.py:3175 +msgid "Missing file" +msgstr "" + +#: common/models.py:3176 +msgid "Missing external link" +msgstr "" + +#: common/models.py:3221 +msgid "Select file to attach" +msgstr "" + +#: common/models.py:3236 templates/js/translated/attachment.js:120 +#: templates/js/translated/attachment.js:360 +msgid "Comment" +msgstr "" + +#: common/models.py:3237 +msgid "Attachment comment" +msgstr "" + +#: common/models.py:3253 +msgid "Upload date" +msgstr "" + +#: common/models.py:3254 +msgid "Date the file was uploaded" +msgstr "" + +#: common/models.py:3258 +msgid "File size" +msgstr "" + +#: common/models.py:3258 +msgid "File size in bytes" +msgstr "" + +#: common/models.py:3296 common/serializers.py:557 +msgid "Invalid model type specified for attachment" +msgstr "" + +#: common/notifications.py:314 +#, python-brace-format +msgid "New {verbose_name}" +msgstr "" + +#: common/notifications.py:316 +msgid "A new order has been created and assigned to you" +msgstr "" + +#: common/notifications.py:322 +#, python-brace-format +msgid "{verbose_name} canceled" +msgstr "" + +#: common/notifications.py:324 +msgid "A order that is assigned to you was canceled" +msgstr "" + +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 +msgid "Items Received" +msgstr "" + +#: common/notifications.py:332 +msgid "Items have been received against a purchase order" +msgstr "" + +#: common/notifications.py:339 +msgid "Items have been received against a return order" +msgstr "" + +#: common/notifications.py:457 +msgid "Error raised by plugin" +msgstr "" + +#: common/serializers.py:375 +msgid "Is Running" +msgstr "" + +#: common/serializers.py:381 +msgid "Pending Tasks" +msgstr "" + +#: common/serializers.py:387 +msgid "Scheduled Tasks" +msgstr "" + +#: common/serializers.py:393 +msgid "Failed Tasks" +msgstr "" + +#: common/serializers.py:408 +msgid "Task ID" +msgstr "" + +#: common/serializers.py:408 +msgid "Unique task ID" +msgstr "" + +#: common/serializers.py:410 +msgid "Lock" +msgstr "" + +#: common/serializers.py:410 +msgid "Lock time" +msgstr "" + +#: common/serializers.py:412 +msgid "Task name" +msgstr "" + +#: common/serializers.py:414 +msgid "Function" +msgstr "" + +#: common/serializers.py:414 +msgid "Function name" +msgstr "" + +#: common/serializers.py:416 +msgid "Arguments" +msgstr "" + +#: common/serializers.py:416 +msgid "Task arguments" +msgstr "" + +#: common/serializers.py:419 +msgid "Keyword Arguments" +msgstr "" + +#: common/serializers.py:419 +msgid "Task keyword arguments" +msgstr "" + +#: common/serializers.py:529 +msgid "Filename" +msgstr "" + +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 +msgid "Model Type" +msgstr "" + +#: common/serializers.py:563 +msgid "User does not have permission to create or edit attachments for this model" +msgstr "" + +#: common/validators.py:33 +msgid "No attachment model type provided" +msgstr "" + +#: common/validators.py:39 +msgid "Invalid attachment model type" +msgstr "" + +#: common/validators.py:80 +msgid "Minimum places cannot be greater than maximum places" +msgstr "" + +#: common/validators.py:92 +msgid "Maximum places cannot be less than minimum places" +msgstr "" + +#: common/validators.py:103 +msgid "An empty domain is not allowed." +msgstr "" + +#: common/validators.py:105 +#, python-brace-format +msgid "Invalid domain name: {domain}" +msgstr "" + +#: common/views.py:84 order/templates/order/order_wizard/po_upload.html:51 +#: order/templates/order/purchase_order_detail.html:24 order/views.py:118 +#: part/templates/part/import_wizard/part_upload.html:58 part/views.py:109 +#: templates/patterns/wizard/upload.html:37 +msgid "Upload File" +msgstr "" + +#: common/views.py:84 order/templates/order/order_wizard/match_fields.html:52 +#: order/views.py:119 +#: part/templates/part/import_wizard/ajax_match_fields.html:45 +#: part/templates/part/import_wizard/match_fields.html:52 part/views.py:110 +#: templates/patterns/wizard/match_fields.html:51 +msgid "Match Fields" +msgstr "" + +#: common/views.py:84 +msgid "Match Items" +msgstr "" + +#: common/views.py:401 +msgid "Fields matching failed" +msgstr "" + +#: common/views.py:464 +msgid "Parts imported" +msgstr "" + +#: common/views.py:494 order/templates/order/order_wizard/match_fields.html:27 +#: order/templates/order/order_wizard/match_parts.html:19 +#: order/templates/order/order_wizard/po_upload.html:49 +#: part/templates/part/import_wizard/match_fields.html:27 +#: part/templates/part/import_wizard/match_references.html:19 +#: part/templates/part/import_wizard/part_upload.html:56 +#: templates/patterns/wizard/match_fields.html:26 +#: templates/patterns/wizard/upload.html:35 +msgid "Previous Step" +msgstr "" + +#: company/api.py:141 +msgid "Part is Active" +msgstr "" + +#: company/api.py:145 +msgid "Manufacturer is Active" +msgstr "" + +#: company/api.py:278 +msgid "Supplier Part is Active" +msgstr "" + +#: company/api.py:282 +msgid "Internal Part is Active" +msgstr "" + +#: company/api.py:286 +msgid "Supplier is Active" +msgstr "" + +#: company/models.py:100 company/models.py:371 +#: company/templates/company/company_base.html:8 +#: company/templates/company/company_base.html:12 stock/api.py:814 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 +msgid "Company" +msgstr "" + +#: company/models.py:101 company/views.py:51 +#: templates/js/translated/search.js:192 +msgid "Companies" +msgstr "" + +#: company/models.py:117 +msgid "Company description" +msgstr "" + +#: company/models.py:118 +msgid "Description of the company" +msgstr "" + +#: company/models.py:123 company/templates/company/company_base.html:106 +#: templates/InvenTree/settings/plugin_settings.html:54 +#: templates/js/translated/company.js:532 +msgid "Website" +msgstr "" + +#: company/models.py:123 +msgid "Company website URL" +msgstr "" + +#: company/models.py:128 +msgid "Phone number" +msgstr "" + +#: company/models.py:130 +msgid "Contact phone number" +msgstr "" + +#: company/models.py:137 +msgid "Contact email address" +msgstr "" + +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 +#: order/templates/order/return_order_base.html:174 +#: order/templates/order/sales_order_base.html:218 +msgid "Contact" +msgstr "" + +#: company/models.py:144 +msgid "Point of contact" +msgstr "" + +#: company/models.py:150 +msgid "Link to external company information" +msgstr "" + +#: company/models.py:163 +msgid "Is this company active?" +msgstr "" + +#: company/models.py:168 +msgid "Is customer" +msgstr "" + +#: company/models.py:169 +msgid "Do you sell items to this company?" +msgstr "" + +#: company/models.py:174 +msgid "Is supplier" +msgstr "" + +#: company/models.py:175 +msgid "Do you purchase items from this company?" +msgstr "" + +#: company/models.py:180 +msgid "Is manufacturer" +msgstr "" + +#: company/models.py:181 +msgid "Does this company manufacture parts?" +msgstr "" + +#: company/models.py:189 +msgid "Default currency used for this company" +msgstr "" + +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + +#: company/models.py:372 +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" +msgstr "" + +#: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 +msgid "Primary address" +msgstr "" + +#: company/models.py:385 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:390 templates/js/translated/company.js:914 +#: templates/js/translated/company.js:971 +msgid "Line 1" +msgstr "" + +#: company/models.py:391 +msgid "Address line 1" +msgstr "" + +#: company/models.py:397 templates/js/translated/company.js:915 +#: templates/js/translated/company.js:977 +msgid "Line 2" +msgstr "" + +#: company/models.py:398 +msgid "Address line 2" +msgstr "" + +#: company/models.py:404 company/models.py:405 +#: templates/js/translated/company.js:983 +msgid "Postal code" +msgstr "" + +#: company/models.py:411 +msgid "City/Region" +msgstr "" + +#: company/models.py:412 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:418 +msgid "State/Province" +msgstr "" + +#: company/models.py:419 +msgid "State or province" +msgstr "" + +#: company/models.py:425 templates/js/translated/company.js:1001 +msgid "Country" +msgstr "" + +#: company/models.py:426 +msgid "Address country" +msgstr "" + +#: company/models.py:432 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:433 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:439 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:440 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:447 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:469 company/models.py:581 company/models.py:799 +#: company/templates/company/manufacturer_part.html:7 +#: company/templates/company/manufacturer_part.html:24 +#: stock/templates/stock/item_base.html:217 +msgid "Manufacturer Part" +msgstr "" + +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:444 stock/templates/stock/item_base.html:142 +#: templates/js/translated/bom.js:622 +msgid "Base Part" +msgstr "" + +#: company/models.py:483 company/models.py:769 +msgid "Select part" +msgstr "" + +#: company/models.py:492 company/templates/company/company_base.html:82 +#: company/templates/company/manufacturer_part.html:90 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 +#: stock/templates/stock/item_base.html:207 +#: templates/js/translated/company.js:507 +#: templates/js/translated/company.js:1118 +#: templates/js/translated/company.js:1296 +#: templates/js/translated/company.js:1611 +#: templates/js/translated/table_filters.js:805 +msgid "Manufacturer" +msgstr "" + +#: company/models.py:493 +msgid "Select manufacturer" +msgstr "" + +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:519 +#: part/serializers.py:553 templates/js/translated/company.js:351 +#: templates/js/translated/company.js:1117 +#: templates/js/translated/company.js:1312 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 +#: templates/js/translated/purchase_order.js:1851 +#: templates/js/translated/purchase_order.js:2053 +msgid "MPN" +msgstr "" + +#: company/models.py:507 +msgid "URL for external manufacturer part link" +msgstr "" + +#: company/models.py:516 +msgid "Manufacturer part description" +msgstr "" + +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 +msgid "Parameter name" +msgstr "" + +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 +#: templates/js/translated/stock.js:1522 +msgid "Value" +msgstr "" + +#: company/models.py:595 +msgid "Parameter value" +msgstr "" + +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1050 part/models.py:3668 +#: part/templates/part/part_base.html:284 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2374 +msgid "Units" +msgstr "" + +#: company/models.py:603 +msgid "Parameter units" +msgstr "" + +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 +#: templates/js/translated/build.js:1054 +#: templates/js/translated/company.js:1600 +#: templates/js/translated/purchase_order.js:752 +#: templates/js/translated/stock.js:2280 +msgid "Supplier Part" +msgstr "" + +#: company/models.py:707 +msgid "Pack units must be compatible with the base part units" +msgstr "" + +#: company/models.py:714 +msgid "Pack units must be greater than zero" +msgstr "" + +#: company/models.py:728 +msgid "Linked manufacturer part must reference the same base part" +msgstr "" + +#: company/models.py:777 company/templates/company/company_base.html:87 +#: company/templates/company/supplier_part.html:129 order/models.py:486 +#: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 +#: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 +#: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 +#: templates/email/overdue_purchase_order.html:16 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:511 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 +#: templates/js/translated/pricing.js:498 +#: templates/js/translated/purchase_order.js:1689 +#: templates/js/translated/table_filters.js:809 +msgid "Supplier" +msgstr "" + +#: company/models.py:778 +msgid "Select supplier" +msgstr "" + +#: company/models.py:784 part/serializers.py:538 +msgid "Supplier stock keeping unit" +msgstr "" + +#: company/models.py:790 +msgid "Is this supplier part active?" +msgstr "" + +#: company/models.py:800 +msgid "Select manufacturer part" +msgstr "" + +#: company/models.py:807 +msgid "URL for external supplier part link" +msgstr "" + +#: company/models.py:816 +msgid "Supplier part description" +msgstr "" + +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4185 part/templates/part/upload_bom.html:59 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:32 +#: 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:772 +msgid "Note" +msgstr "" + +#: company/models.py:832 part/models.py:2014 +msgid "base cost" +msgstr "" + +#: company/models.py:833 part/models.py:2015 +msgid "Minimum charge (e.g. stocking fee)" +msgstr "" + +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1545 +#: stock/templates/stock/item_base.html:240 +#: templates/js/translated/company.js:1646 +#: templates/js/translated/stock.js:2424 +msgid "Packaging" +msgstr "" + +#: company/models.py:841 +msgid "Part packaging" +msgstr "" + +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:841 +#: templates/js/translated/purchase_order.js:1103 +#: templates/js/translated/purchase_order.js:2084 +#: templates/js/translated/purchase_order.js:2101 +msgid "Pack Quantity" +msgstr "" + +#: company/models.py:848 +msgid "Total quantity supplied in a single pack. Leave empty for single items." +msgstr "" + +#: company/models.py:867 part/models.py:2021 +msgid "multiple" +msgstr "" + +#: company/models.py:868 +msgid "Order multiple" +msgstr "" + +#: company/models.py:880 +msgid "Quantity available from supplier" +msgstr "" + +#: company/models.py:886 +msgid "Availability Updated" +msgstr "" + +#: company/models.py:887 +msgid "Date of last update of availability data" +msgstr "" + +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 +msgid "Default currency used for this supplier" +msgstr "" + +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:386 part/admin.py:126 part/serializers.py:881 +#: part/templates/part/part_base.html:197 +#: templates/js/translated/company.js:1689 +#: templates/js/translated/table_filters.js:355 +msgid "In Stock" +msgstr "" + +#: company/templates/company/company_base.html:16 +#: part/templates/part/part_base.html:146 +#: templates/js/translated/company.js:1287 +#: templates/js/translated/company.js:1575 +#: templates/js/translated/model_renderers.js:312 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 +msgid "Inactive" +msgstr "" + +#: company/templates/company/company_base.html:27 +#: templates/js/translated/purchase_order.js:242 +msgid "Create Purchase Order" +msgstr "" + +#: company/templates/company/company_base.html:33 +msgid "Company actions" +msgstr "" + +#: company/templates/company/company_base.html:38 +msgid "Edit company information" +msgstr "" + +#: company/templates/company/company_base.html:39 +#: templates/js/translated/company.js:445 +msgid "Edit Company" +msgstr "" + +#: company/templates/company/company_base.html:43 +msgid "Delete company" +msgstr "" + +#: company/templates/company/company_base.html:44 +#: company/templates/company/company_base.html:168 +msgid "Delete Company" +msgstr "" + +#: company/templates/company/company_base.html:53 +#: company/templates/company/manufacturer_part.html:51 +#: company/templates/company/supplier_part.html:83 +#: part/templates/part/part_thumb.html:20 +#: report/templates/report/inventree_build_order_report.html:98 +#: report/templates/report/inventree_purchase_order_report.html:40 +#: report/templates/report/inventree_sales_order_report.html:40 +#: report/templates/report/inventree_test_report.html:84 +#: report/templates/report/inventree_test_report.html:162 +msgid "Part image" +msgstr "" + +#: company/templates/company/company_base.html:61 +#: part/templates/part/part_thumb.html:12 +msgid "Upload new image" +msgstr "" + +#: company/templates/company/company_base.html:64 +#: part/templates/part/part_thumb.html:14 +msgid "Download image from URL" +msgstr "" + +#: company/templates/company/company_base.html:66 +#: part/templates/part/part_thumb.html:16 +msgid "Delete image" +msgstr "" + +#: company/templates/company/company_base.html:92 order/models.py:938 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1295 +#: stock/templates/stock/item_base.html:405 +#: templates/email/overdue_sales_order.html:16 +#: templates/js/translated/company.js:503 +#: templates/js/translated/return_order.js:295 +#: templates/js/translated/sales_order.js:820 +#: templates/js/translated/stock.js:2959 +#: templates/js/translated/table_filters.js:813 +msgid "Customer" +msgstr "" + +#: company/templates/company/company_base.html:117 +msgid "Uses default currency" +msgstr "" + +#: company/templates/company/company_base.html:131 +msgid "Phone" +msgstr "" + +#: company/templates/company/company_base.html:211 +#: part/templates/part/part_base.html:527 +msgid "Remove Image" +msgstr "" + +#: company/templates/company/company_base.html:212 +msgid "Remove associated image from this company" +msgstr "" + +#: company/templates/company/company_base.html:214 +#: part/templates/part/part_base.html:530 +#: templates/InvenTree/settings/user.html:88 +#: templates/InvenTree/settings/user_sso.html:43 +msgid "Remove" +msgstr "" + +#: company/templates/company/company_base.html:243 +#: part/templates/part/part_base.html:559 +msgid "Upload Image" +msgstr "" + +#: company/templates/company/company_base.html:258 +#: part/templates/part/part_base.html:613 +msgid "Download Image" +msgstr "" + +#: company/templates/company/detail.html:15 +#: company/templates/company/manufacturer_part_sidebar.html:7 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 +msgid "Supplier Parts" +msgstr "" + +#: company/templates/company/detail.html:19 +msgid "Create new supplier part" +msgstr "" + +#: company/templates/company/detail.html:20 +#: company/templates/company/manufacturer_part.html:123 +#: part/templates/part/detail.html:356 +msgid "New Supplier Part" +msgstr "" + +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 +msgid "Manufacturer Parts" +msgstr "" + +#: company/templates/company/detail.html:45 +msgid "Create new manufacturer part" +msgstr "" + +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 +msgid "New Manufacturer Part" +msgstr "" + +#: company/templates/company/detail.html:65 +msgid "Supplier Stock" +msgstr "" + +#: company/templates/company/detail.html:75 +#: company/templates/company/sidebar.html:12 +#: company/templates/company/supplier_part_sidebar.html:7 +#: order/templates/order/order_base.html:13 +#: order/templates/order/purchase_orders.html:8 +#: order/templates/order/purchase_orders.html:12 +#: part/templates/part/detail.html:106 part/templates/part/part_sidebar.html:35 +#: templates/InvenTree/index.html:227 templates/InvenTree/search.html:199 +#: templates/InvenTree/settings/sidebar.html:57 +#: templates/js/translated/search.js:205 templates/navbar.html:50 +#: users/models.py:208 +msgid "Purchase Orders" +msgstr "" + +#: company/templates/company/detail.html:79 +#: order/templates/order/purchase_orders.html:17 +msgid "Create new purchase order" +msgstr "" + +#: company/templates/company/detail.html:80 +#: order/templates/order/purchase_orders.html:18 +msgid "New Purchase Order" +msgstr "" + +#: company/templates/company/detail.html:101 +#: company/templates/company/sidebar.html:21 +#: order/templates/order/sales_order_base.html:13 +#: order/templates/order/sales_orders.html:8 +#: order/templates/order/sales_orders.html:15 +#: part/templates/part/detail.html:127 part/templates/part/part_sidebar.html:39 +#: templates/InvenTree/index.html:259 templates/InvenTree/search.html:219 +#: templates/InvenTree/settings/sidebar.html:59 +#: templates/js/translated/search.js:219 templates/navbar.html:62 +#: users/models.py:209 +msgid "Sales Orders" +msgstr "" + +#: company/templates/company/detail.html:105 +#: order/templates/order/sales_orders.html:20 +msgid "Create new sales order" +msgstr "" + +#: company/templates/company/detail.html:106 +#: order/templates/order/sales_orders.html:21 +msgid "New Sales Order" +msgstr "" + +#: company/templates/company/detail.html:126 +msgid "Assigned Stock" +msgstr "" + +#: company/templates/company/detail.html:142 +#: company/templates/company/sidebar.html:29 +#: order/templates/order/return_order_base.html:13 +#: order/templates/order/return_orders.html:8 +#: order/templates/order/return_orders.html:15 +#: templates/InvenTree/settings/sidebar.html:61 +#: templates/js/translated/search.js:232 templates/navbar.html:65 +#: users/models.py:210 +msgid "Return Orders" +msgstr "" + +#: company/templates/company/detail.html:146 +#: order/templates/order/return_orders.html:20 +msgid "Create new return order" +msgstr "" + +#: company/templates/company/detail.html:147 +#: order/templates/order/return_orders.html:21 +msgid "New Return Order" +msgstr "" + +#: company/templates/company/detail.html:168 +msgid "Company Notes" +msgstr "" + +#: company/templates/company/detail.html:183 +msgid "Company Contacts" +msgstr "" + +#: company/templates/company/detail.html:187 +#: company/templates/company/detail.html:188 +msgid "Add Contact" +msgstr "" + +#: company/templates/company/detail.html:206 +msgid "Company addresses" +msgstr "" + +#: company/templates/company/detail.html:210 +#: company/templates/company/detail.html:211 +msgid "Add Address" +msgstr "" + +#: company/templates/company/manufacturer_part.html:15 company/views.py:37 +#: templates/InvenTree/search.html:180 templates/navbar.html:49 +msgid "Manufacturers" +msgstr "" + +#: company/templates/company/manufacturer_part.html:35 +#: company/templates/company/supplier_part.html:227 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:83 +msgid "Order part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:39 +#: templates/js/translated/company.js:1343 +msgid "Edit manufacturer part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:43 +#: templates/js/translated/company.js:1344 +msgid "Delete manufacturer part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:65 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:527 +msgid "Internal Part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:95 +msgid "No manufacturer information available" +msgstr "" + +#: company/templates/company/manufacturer_part.html:119 +#: company/templates/company/supplier_part.html:15 company/views.py:31 +#: part/admin.py:122 part/serializers.py:886 +#: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 +#: templates/navbar.html:48 +msgid "Suppliers" +msgstr "" + +#: company/templates/company/manufacturer_part.html:156 +#: company/templates/company/manufacturer_part_sidebar.html:5 +#: part/templates/part/category_sidebar.html:20 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 +msgid "Parameters" +msgstr "" + +#: company/templates/company/manufacturer_part.html:160 +#: part/templates/part/detail.html:200 +#: templates/InvenTree/settings/category.html:12 +#: templates/InvenTree/settings/part_parameters.html:24 +msgid "New Parameter" +msgstr "" + +#: company/templates/company/manufacturer_part.html:196 +#: templates/js/translated/part.js:1426 +msgid "Add Parameter" +msgstr "" + +#: company/templates/company/sidebar.html:6 +msgid "Manufactured Parts" +msgstr "" + +#: company/templates/company/sidebar.html:10 +msgid "Supplied Parts" +msgstr "" + +#: company/templates/company/sidebar.html:16 +msgid "Supplied Stock Items" +msgstr "" + +#: company/templates/company/sidebar.html:25 +msgid "Assigned Stock Items" +msgstr "" + +#: company/templates/company/sidebar.html:33 +msgid "Contacts" +msgstr "" + +#: company/templates/company/supplier_part.html:50 +#: templates/js/translated/company.js:1526 +msgid "Supplier part actions" +msgstr "" + +#: company/templates/company/supplier_part.html:55 +#: company/templates/company/supplier_part.html:56 +#: company/templates/company/supplier_part.html:228 +#: part/templates/part/detail.html:110 +msgid "Order Part" +msgstr "" + +#: company/templates/company/supplier_part.html:60 +#: company/templates/company/supplier_part.html:61 +msgid "Update Availability" +msgstr "" + +#: company/templates/company/supplier_part.html:63 +#: company/templates/company/supplier_part.html:64 +#: templates/js/translated/company.js:294 +msgid "Edit Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:68 +#: company/templates/company/supplier_part.html:69 +#: templates/js/translated/company.js:269 +msgid "Duplicate Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:73 +msgid "Delete Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:74 +msgid "Delete Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:133 +msgid "No supplier information available" +msgstr "" + +#: company/templates/company/supplier_part.html:139 order/serializers.py:516 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 +#: templates/js/translated/pricing.js:510 +#: templates/js/translated/purchase_order.js:1850 +#: templates/js/translated/purchase_order.js:2028 +msgid "SKU" +msgstr "" + +#: company/templates/company/supplier_part.html:206 +msgid "Supplier Part Stock" +msgstr "" + +#: company/templates/company/supplier_part.html:209 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:207 +msgid "Create new stock item" +msgstr "" + +#: company/templates/company/supplier_part.html:210 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:208 +#: templates/js/translated/stock.js:537 +msgid "New Stock Item" +msgstr "" + +#: company/templates/company/supplier_part.html:223 +msgid "Supplier Part Orders" +msgstr "" + +#: company/templates/company/supplier_part.html:246 +msgid "Pricing Information" +msgstr "" + +#: company/templates/company/supplier_part.html:251 +#: templates/js/translated/company.js:398 +#: templates/js/translated/pricing.js:684 +msgid "Add Price Break" +msgstr "" + +#: company/templates/company/supplier_part.html:276 +msgid "Supplier Part QR Code" +msgstr "" + +#: company/templates/company/supplier_part.html:287 +msgid "Link Barcode to Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:359 +msgid "Update Part Availability" +msgstr "" + +#: company/templates/company/supplier_part_sidebar.html:5 +#: part/serializers.py:885 part/stocktake.py:224 +#: part/templates/part/category.html:183 +#: part/templates/part/category_sidebar.html:17 stock/admin.py:68 +#: stock/serializers.py:980 stock/serializers.py:1158 +#: stock/templates/stock/location.html:170 +#: stock/templates/stock/location.html:191 +#: stock/templates/stock/location.html:203 +#: stock/templates/stock/location_sidebar.html:7 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 +#: users/models.py:206 +msgid "Stock Items" +msgstr "" + +#: company/templates/company/supplier_part_sidebar.html:9 +msgid "Supplier Part Pricing" +msgstr "" + +#: company/views.py:32 +msgid "New Supplier" +msgstr "" + +#: company/views.py:38 +msgid "New Manufacturer" +msgstr "" + +#: company/views.py:43 templates/InvenTree/search.html:210 +#: templates/navbar.html:60 +msgid "Customers" +msgstr "" + +#: company/views.py:44 +msgid "New Customer" +msgstr "" + +#: company/views.py:52 +msgid "New Company" +msgstr "" + +#: generic/states/tests.py:18 order/status_codes.py:13 +msgid "Placed" +msgstr "" + +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3848 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 +msgid "Copies" +msgstr "" + +#: machine/machine_types/label_printer.py:213 +msgid "Number of copies to print for each label" +msgstr "" + +#: machine/machine_types/label_printer.py:228 +msgid "Connected" +msgstr "" + +#: machine/machine_types/label_printer.py:229 order/api.py:1388 +#: templates/js/translated/sales_order.js:1078 +msgid "Unknown" +msgstr "" + +#: machine/machine_types/label_printer.py:230 +msgid "Printing" +msgstr "" + +#: machine/machine_types/label_printer.py:231 +msgid "No media" +msgstr "" + +#: machine/machine_types/label_printer.py:232 +msgid "Disconnected" +msgstr "" + +#: machine/machine_types/label_printer.py:239 +msgid "Label Printer" +msgstr "" + +#: machine/machine_types/label_printer.py:240 +msgid "Directly print labels for various items." +msgstr "" + +#: machine/machine_types/label_printer.py:246 +msgid "Printer Location" +msgstr "" + +#: machine/machine_types/label_printer.py:247 +msgid "Scope the printer to a specific location" +msgstr "" + +#: machine/models.py:25 +msgid "Name of machine" +msgstr "" + +#: machine/models.py:29 +msgid "Machine Type" +msgstr "" + +#: machine/models.py:29 +msgid "Type of machine" +msgstr "" + +#: machine/models.py:34 machine/models.py:146 +msgid "Driver" +msgstr "" + +#: machine/models.py:35 +msgid "Driver used for the machine" +msgstr "" + +#: machine/models.py:39 +msgid "Machines can be disabled" +msgstr "" + +#: machine/models.py:95 +msgid "Driver available" +msgstr "" + +#: machine/models.py:100 +msgid "No errors" +msgstr "" + +#: machine/models.py:105 +msgid "Initialized" +msgstr "" + +#: machine/models.py:117 +msgid "Machine status" +msgstr "" + +#: machine/models.py:145 +msgid "Machine" +msgstr "" + +#: machine/models.py:151 +msgid "Machine Config" +msgstr "" + +#: machine/models.py:156 +msgid "Config type" +msgstr "" + +#: order/admin.py:30 order/models.py:90 +#: report/templates/report/inventree_purchase_order_report.html:31 +#: report/templates/report/inventree_sales_order_report.html:31 +#: templates/js/translated/order.js:327 +#: templates/js/translated/purchase_order.js:2125 +#: templates/js/translated/sales_order.js:1883 +msgid "Total Price" +msgstr "" + +#: order/api.py:149 order/serializers.py:94 +#: order/templates/order/order_base.html:118 +#: order/templates/order/return_order_base.html:113 +#: order/templates/order/sales_order_base.html:122 +msgid "Order Status" +msgstr "" + +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 +msgid "Has Pricing" +msgstr "" + +#: order/api.py:228 +msgid "No matching purchase order found" +msgstr "" + +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 +#: templates/js/translated/sales_order.js:1524 +msgid "Order" +msgstr "" + +#: order/api.py:421 order/api.py:776 +msgid "Order Complete" +msgstr "" + +#: order/api.py:444 +msgid "Order Pending" +msgstr "" + +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 +#: order/templates/order/order_base.html:18 +#: report/templates/report/inventree_purchase_order_report.html:14 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 +#: templates/email/overdue_purchase_order.html:15 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 +#: templates/js/translated/purchase_order.js:168 +#: templates/js/translated/purchase_order.js:753 +#: templates/js/translated/purchase_order.js:1673 +#: templates/js/translated/stock.js:2260 templates/js/translated/stock.js:2907 +msgid "Purchase Order" +msgstr "" + +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 +#: order/templates/order/return_order_base.html:28 +#: report/templates/report/inventree_return_order_report.html:13 +#: templates/js/translated/return_order.js:280 +#: templates/js/translated/stock.js:2941 +msgid "Return Order" +msgstr "" + +#: order/models.py:91 +msgid "Total price for this order" +msgstr "" + +#: order/models.py:96 order/serializers.py:72 +msgid "Order Currency" +msgstr "" + +#: order/models.py:99 order/serializers.py:73 +msgid "Currency for this order (leave blank to use company default)" +msgstr "" + +#: order/models.py:247 +msgid "Contact does not match selected company" +msgstr "" + +#: order/models.py:290 +msgid "Order description (optional)" +msgstr "" + +#: order/models.py:299 +msgid "Select project code for this order" +msgstr "" + +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +msgid "Link to external page" +msgstr "" + +#: order/models.py:311 +msgid "Expected date for order delivery. Order will be overdue after this date." +msgstr "" + +#: order/models.py:325 +msgid "Created By" +msgstr "" + +#: order/models.py:333 +msgid "User or group responsible for this order" +msgstr "" + +#: order/models.py:344 +msgid "Point of contact for this order" +msgstr "" + +#: order/models.py:354 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:464 order/models.py:927 +msgid "Order reference" +msgstr "" + +#: order/models.py:472 order/models.py:951 +msgid "Purchase order status" +msgstr "" + +#: order/models.py:487 +msgid "Company from which the items are being ordered" +msgstr "" + +#: order/models.py:498 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1702 +msgid "Supplier Reference" +msgstr "" + +#: order/models.py:499 +msgid "Supplier order reference code" +msgstr "" + +#: order/models.py:508 +msgid "received by" +msgstr "" + +#: order/models.py:514 order/models.py:2084 +msgid "Issue Date" +msgstr "" + +#: order/models.py:515 order/models.py:2085 +msgid "Date order was issued" +msgstr "" + +#: order/models.py:522 order/models.py:2092 +msgid "Date order was completed" +msgstr "" + +#: order/models.py:566 +msgid "Part supplier must match PO supplier" +msgstr "" + +#: order/models.py:760 +msgid "Quantity must be a positive number" +msgstr "" + +#: order/models.py:939 +msgid "Company to which the items are being sold" +msgstr "" + +#: order/models.py:962 order/models.py:2077 +msgid "Customer Reference " +msgstr "" + +#: order/models.py:963 order/models.py:2078 +msgid "Customer order reference code" +msgstr "" + +#: order/models.py:967 order/models.py:1687 +#: templates/js/translated/sales_order.js:879 +#: templates/js/translated/sales_order.js:1060 +msgid "Shipment Date" +msgstr "" + +#: order/models.py:976 +msgid "shipped by" +msgstr "" + +#: order/models.py:1025 +msgid "Order is already complete" +msgstr "" + +#: order/models.py:1028 +msgid "Order is already cancelled" +msgstr "" + +#: order/models.py:1032 +msgid "Only an open order can be marked as complete" +msgstr "" + +#: order/models.py:1036 +msgid "Order cannot be completed as there are incomplete shipments" +msgstr "" + +#: order/models.py:1041 +msgid "Order cannot be completed as there are incomplete line items" +msgstr "" + +#: order/models.py:1273 +msgid "Item quantity" +msgstr "" + +#: order/models.py:1290 +msgid "Line item reference" +msgstr "" + +#: order/models.py:1297 +msgid "Line item notes" +msgstr "" + +#: order/models.py:1309 +msgid "Target date for this line item (leave blank to use the target date from the order)" +msgstr "" + +#: order/models.py:1330 +msgid "Line item description (optional)" +msgstr "" + +#: order/models.py:1336 +msgid "Context" +msgstr "" + +#: order/models.py:1337 +msgid "Additional context for this line" +msgstr "" + +#: order/models.py:1347 +msgid "Unit price" +msgstr "" + +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 +msgid "Supplier part must match supplier" +msgstr "" + +#: order/models.py:1392 +msgid "deleted" +msgstr "" + +#: order/models.py:1420 +msgid "Supplier part" +msgstr "" + +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 +#: templates/js/translated/purchase_order.js:1306 +#: templates/js/translated/purchase_order.js:2169 +#: templates/js/translated/return_order.js:763 +#: templates/js/translated/table_filters.js:120 +#: templates/js/translated/table_filters.js:602 +msgid "Received" +msgstr "" + +#: order/models.py:1428 +msgid "Number of items received" +msgstr "" + +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:606 +#: stock/templates/stock/item_base.html:183 +#: templates/js/translated/stock.js:2311 +msgid "Purchase Price" +msgstr "" + +#: order/models.py:1437 +msgid "Unit purchase price" +msgstr "" + +#: order/models.py:1452 +msgid "Where does the Purchaser want this item to be stored?" +msgstr "" + +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 +msgid "Virtual part cannot be assigned to a sales order" +msgstr "" + +#: order/models.py:1558 +msgid "Only salable parts can be assigned to a sales order" +msgstr "" + +#: order/models.py:1584 part/templates/part/part_pricing.html:107 +#: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 +msgid "Sale Price" +msgstr "" + +#: order/models.py:1585 +msgid "Unit sale price" +msgstr "" + +#: order/models.py:1594 order/status_codes.py:43 +#: templates/js/translated/sales_order.js:1559 +#: templates/js/translated/sales_order.js:1680 +#: templates/js/translated/sales_order.js:1993 +msgid "Shipped" +msgstr "" + +#: order/models.py:1595 +msgid "Shipped quantity" +msgstr "" + +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 +msgid "Date of shipment" +msgstr "" + +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" +msgstr "" + +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" +msgstr "" + +#: order/models.py:1704 +msgid "User who checked this shipment" +msgstr "" + +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1399 +#: order/serializers.py:1509 templates/js/translated/model_renderers.js:454 +msgid "Shipment" +msgstr "" + +#: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 +msgid "Invoice Number" +msgstr "" + +#: order/models.py:1729 +msgid "Reference number for associated invoice" +msgstr "" + +#: order/models.py:1749 +msgid "Shipment has already been sent" +msgstr "" + +#: order/models.py:1752 +msgid "Shipment has no allocated stock items" +msgstr "" + +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 +msgid "Stock item has not been assigned" +msgstr "" + +#: order/models.py:1889 +msgid "Cannot allocate stock item to a line with a different part" +msgstr "" + +#: order/models.py:1892 +msgid "Cannot allocate stock to a line without a part" +msgstr "" + +#: order/models.py:1895 +msgid "Allocation quantity cannot exceed stock quantity" +msgstr "" + +#: order/models.py:1914 order/serializers.py:1276 +msgid "Quantity must be 1 for serialized stock item" +msgstr "" + +#: order/models.py:1917 +msgid "Sales order does not match shipment" +msgstr "" + +#: order/models.py:1918 plugin/base/barcodes/api.py:481 +msgid "Shipment does not match sales order" +msgstr "" + +#: order/models.py:1926 +msgid "Line" +msgstr "" + +#: order/models.py:1935 +msgid "Sales order shipment reference" +msgstr "" + +#: order/models.py:1948 order/models.py:2266 +#: templates/js/translated/return_order.js:721 +msgid "Item" +msgstr "" + +#: order/models.py:1949 +msgid "Select stock item to allocate" +msgstr "" + +#: order/models.py:1958 +msgid "Enter stock allocation quantity" +msgstr "" + +#: order/models.py:2047 +msgid "Return Order reference" +msgstr "" + +#: order/models.py:2059 +msgid "Company from which items are being returned" +msgstr "" + +#: order/models.py:2071 +msgid "Return order status" +msgstr "" + +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 +msgid "Only serialized items can be assigned to a Return Order" +msgstr "" + +#: order/models.py:2267 +msgid "Select item to return from customer" +msgstr "" + +#: order/models.py:2273 +msgid "Received Date" +msgstr "" + +#: order/models.py:2274 +msgid "The date this this return item was received" +msgstr "" + +#: order/models.py:2285 templates/js/translated/return_order.js:732 +#: templates/js/translated/table_filters.js:123 +msgid "Outcome" +msgstr "" + +#: order/models.py:2286 +msgid "Outcome for this line item" +msgstr "" + +#: order/models.py:2293 +msgid "Cost associated with return or repair for this line item" +msgstr "" + +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:87 +msgid "Completed Lines" +msgstr "" + +#: order/serializers.py:306 +msgid "Order cannot be cancelled" +msgstr "" + +#: order/serializers.py:321 order/serializers.py:1292 +msgid "Allow order to be closed with incomplete line items" +msgstr "" + +#: order/serializers.py:331 order/serializers.py:1302 +msgid "Order has incomplete line items" +msgstr "" + +#: order/serializers.py:469 +msgid "Order is not open" +msgstr "" + +#: order/serializers.py:490 +msgid "Auto Pricing" +msgstr "" + +#: order/serializers.py:492 +msgid "Automatically calculate purchase price based on supplier part data" +msgstr "" + +#: order/serializers.py:502 +msgid "Purchase price currency" +msgstr "" + +#: order/serializers.py:508 +msgid "Merge Items" +msgstr "" + +#: order/serializers.py:510 +msgid "Merge items with the same part, destination and target date into one line item" +msgstr "" + +#: order/serializers.py:523 part/models.py:946 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:531 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:547 +msgid "Supplier part must be specified" +msgstr "" + +#: order/serializers.py:550 +msgid "Purchase order must be specified" +msgstr "" + +#: order/serializers.py:558 +msgid "Supplier must match purchase order" +msgstr "" + +#: order/serializers.py:559 +msgid "Purchase order must match supplier" +msgstr "" + +#: order/serializers.py:599 order/serializers.py:1370 +msgid "Line Item" +msgstr "" + +#: order/serializers.py:605 +msgid "Line item does not match purchase order" +msgstr "" + +#: order/serializers.py:615 order/serializers.py:723 order/serializers.py:1716 +msgid "Select destination location for received items" +msgstr "" + +#: order/serializers.py:631 templates/js/translated/purchase_order.js:1130 +msgid "Enter batch code for incoming stock items" +msgstr "" + +#: order/serializers.py:639 templates/js/translated/purchase_order.js:1154 +msgid "Enter serial numbers for incoming stock items" +msgstr "" + +#: order/serializers.py:650 templates/js/translated/barcode.js:52 +msgid "Barcode" +msgstr "" + +#: order/serializers.py:651 +msgid "Scanned barcode" +msgstr "" + +#: order/serializers.py:667 +msgid "Barcode is already in use" +msgstr "" + +#: order/serializers.py:691 +msgid "An integer quantity must be provided for trackable parts" +msgstr "" + +#: order/serializers.py:739 order/serializers.py:1732 +msgid "Line items must be provided" +msgstr "" + +#: order/serializers.py:755 +msgid "Destination location must be specified" +msgstr "" + +#: order/serializers.py:766 +msgid "Supplied barcode values must be unique" +msgstr "" + +#: order/serializers.py:1118 +msgid "Sale price currency" +msgstr "" + +#: order/serializers.py:1179 +msgid "No shipment details provided" +msgstr "" + +#: order/serializers.py:1240 order/serializers.py:1379 +msgid "Line item is not associated with this order" +msgstr "" + +#: order/serializers.py:1259 +msgid "Quantity must be positive" +msgstr "" + +#: order/serializers.py:1389 +msgid "Enter serial numbers to allocate" +msgstr "" + +#: order/serializers.py:1411 order/serializers.py:1517 +msgid "Shipment has already been shipped" +msgstr "" + +#: order/serializers.py:1414 order/serializers.py:1520 +msgid "Shipment is not associated with this order" +msgstr "" + +#: order/serializers.py:1461 +msgid "No match found for the following serial numbers" +msgstr "" + +#: order/serializers.py:1468 +msgid "The following serial numbers are already allocated" +msgstr "" + +#: order/serializers.py:1686 +msgid "Return order line item" +msgstr "" + +#: order/serializers.py:1692 +msgid "Line item does not match return order" +msgstr "" + +#: order/serializers.py:1695 +msgid "Line item has already been received" +msgstr "" + +#: order/serializers.py:1724 +msgid "Items can only be received against orders which are in progress" +msgstr "" + +#: order/serializers.py:1807 +msgid "Line price currency" +msgstr "" + +#: order/status_codes.py:16 order/status_codes.py:46 stock/status_codes.py:16 +msgid "Lost" +msgstr "" + +#: order/status_codes.py:17 order/status_codes.py:47 stock/status_codes.py:22 +msgid "Returned" +msgstr "" + +#: order/status_codes.py:40 order/status_codes.py:67 +msgid "In Progress" +msgstr "" + +#: order/status_codes.py:85 +msgid "Return" +msgstr "" + +#: order/status_codes.py:88 +msgid "Repair" +msgstr "" + +#: order/status_codes.py:91 +msgid "Replace" +msgstr "" + +#: order/status_codes.py:94 +msgid "Refund" +msgstr "" + +#: order/status_codes.py:97 +msgid "Reject" +msgstr "" + +#: order/tasks.py:25 +msgid "Overdue Purchase Order" +msgstr "" + +#: order/tasks.py:30 +#, python-brace-format +msgid "Purchase order {po} is now overdue" +msgstr "" + +#: order/tasks.py:75 +msgid "Overdue Sales Order" +msgstr "" + +#: order/tasks.py:80 +#, python-brace-format +msgid "Sales order {so} is now overdue" +msgstr "" + +#: order/templates/order/order_base.html:51 +msgid "Print purchase order report" +msgstr "" + +#: order/templates/order/order_base.html:53 +#: order/templates/order/return_order_base.html:62 +#: order/templates/order/sales_order_base.html:62 +msgid "Export order to file" +msgstr "" + +#: order/templates/order/order_base.html:59 +#: order/templates/order/return_order_base.html:72 +#: order/templates/order/sales_order_base.html:71 +msgid "Order actions" +msgstr "" + +#: order/templates/order/order_base.html:64 +#: order/templates/order/return_order_base.html:76 +#: order/templates/order/sales_order_base.html:75 +msgid "Edit order" +msgstr "" + +#: order/templates/order/order_base.html:68 +#: order/templates/order/return_order_base.html:78 +#: order/templates/order/sales_order_base.html:77 +msgid "Cancel order" +msgstr "" + +#: order/templates/order/order_base.html:73 +msgid "Duplicate order" +msgstr "" + +#: order/templates/order/order_base.html:79 +#: order/templates/order/order_base.html:80 +#: order/templates/order/return_order_base.html:82 +#: order/templates/order/return_order_base.html:83 +#: order/templates/order/sales_order_base.html:83 +#: order/templates/order/sales_order_base.html:84 +msgid "Issue Order" +msgstr "" + +#: order/templates/order/order_base.html:83 +#: order/templates/order/return_order_base.html:86 +msgid "Mark order as complete" +msgstr "" + +#: order/templates/order/order_base.html:84 +#: order/templates/order/return_order_base.html:87 +#: order/templates/order/sales_order_base.html:97 +msgid "Complete Order" +msgstr "" + +#: order/templates/order/order_base.html:91 +msgid "Supplier part thumbnail" +msgstr "" + +#: order/templates/order/order_base.html:106 +#: order/templates/order/return_order_base.html:101 +#: order/templates/order/sales_order_base.html:110 +msgid "Order Reference" +msgstr "" + +#: order/templates/order/order_base.html:111 +#: order/templates/order/return_order_base.html:106 +#: order/templates/order/sales_order_base.html:115 +msgid "Order Description" +msgstr "" + +#: order/templates/order/order_base.html:141 +msgid "No suppplier information available" +msgstr "" + +#: order/templates/order/order_base.html:154 +#: order/templates/order/sales_order_base.html:161 +msgid "Completed Line Items" +msgstr "" + +#: order/templates/order/order_base.html:160 +#: order/templates/order/sales_order_base.html:167 +#: order/templates/order/sales_order_base.html:177 +msgid "Incomplete" +msgstr "" + +#: order/templates/order/order_base.html:179 +#: order/templates/order/return_order_base.html:157 +#: report/templates/report/inventree_build_order_report.html:121 +msgid "Issued" +msgstr "" + +#: order/templates/order/order_base.html:224 +msgid "Total cost" +msgstr "" + +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:199 +#: order/templates/order/sales_order_base.html:243 +msgid "Total cost could not be calculated" +msgstr "" + +#: order/templates/order/order_base.html:314 +msgid "Purchase Order QR Code" +msgstr "" + +#: order/templates/order/order_base.html:326 +msgid "Link Barcode to Purchase Order" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:9 +#: part/templates/part/import_wizard/ajax_match_fields.html:9 +#: part/templates/part/import_wizard/match_fields.html:9 +#: templates/patterns/wizard/match_fields.html:8 +msgid "Missing selections for the following required columns" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:20 +#: part/templates/part/import_wizard/ajax_match_fields.html:20 +#: part/templates/part/import_wizard/match_fields.html:20 +#: templates/patterns/wizard/match_fields.html:19 +msgid "Duplicate selections found, see below. Fix them then retry submitting." +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:29 +#: order/templates/order/order_wizard/match_parts.html:21 +#: part/templates/part/import_wizard/match_fields.html:29 +#: part/templates/part/import_wizard/match_references.html:21 +#: templates/patterns/wizard/match_fields.html:28 +msgid "Submit Selections" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:35 +#: part/templates/part/import_wizard/ajax_match_fields.html:28 +#: part/templates/part/import_wizard/match_fields.html:35 +#: templates/patterns/wizard/match_fields.html:34 +msgid "File Fields" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:42 +#: part/templates/part/import_wizard/ajax_match_fields.html:35 +#: part/templates/part/import_wizard/match_fields.html:42 +#: templates/patterns/wizard/match_fields.html:41 +msgid "Remove column" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:60 +#: part/templates/part/import_wizard/ajax_match_fields.html:53 +#: part/templates/part/import_wizard/match_fields.html:60 +#: templates/patterns/wizard/match_fields.html:59 +msgid "Duplicate selection" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:71 +#: order/templates/order/order_wizard/match_parts.html:52 +#: part/templates/part/import_wizard/ajax_match_fields.html:64 +#: part/templates/part/import_wizard/ajax_match_references.html:42 +#: part/templates/part/import_wizard/match_fields.html:71 +#: part/templates/part/import_wizard/match_references.html:49 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:530 +#: templates/js/translated/build.js:1804 +#: templates/js/translated/purchase_order.js:696 +#: templates/js/translated/purchase_order.js:1236 +#: templates/js/translated/return_order.js:505 +#: templates/js/translated/sales_order.js:1145 +#: templates/js/translated/stock.js:714 templates/js/translated/stock.js:883 +#: templates/patterns/wizard/match_fields.html:70 +msgid "Remove row" +msgstr "" + +#: order/templates/order/order_wizard/match_parts.html:12 +#: part/templates/part/import_wizard/ajax_match_references.html:12 +#: part/templates/part/import_wizard/match_references.html:12 +msgid "Errors exist in the submitted data" +msgstr "" + +#: order/templates/order/order_wizard/match_parts.html:28 +#: part/templates/part/import_wizard/ajax_match_references.html:21 +#: part/templates/part/import_wizard/match_references.html:28 +msgid "Row" +msgstr "" + +#: order/templates/order/order_wizard/match_parts.html:29 +msgid "Select Supplier Part" +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:8 +msgid "Return to Orders" +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:13 +msgid "Upload File for Purchase Order" +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:14 +msgid "Order is already processed. Files cannot be uploaded." +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:27 +#: part/templates/part/import_wizard/ajax_part_upload.html:10 +#: part/templates/part/import_wizard/part_upload.html:26 +#: templates/patterns/wizard/upload.html:13 +#, python-format +msgid "Step %(step)s of %(count)s" +msgstr "" + +#: order/templates/order/po_sidebar.html:7 +msgid "Received Stock" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:18 +msgid "Purchase Order Items" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:27 +#: order/templates/order/return_order_detail.html:24 +#: order/templates/order/sales_order_detail.html:24 +#: templates/js/translated/purchase_order.js:414 +#: templates/js/translated/return_order.js:458 +#: templates/js/translated/sales_order.js:237 +msgid "Add Line Item" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:31 +#: order/templates/order/purchase_order_detail.html:32 +#: order/templates/order/return_order_detail.html:28 +#: order/templates/order/return_order_detail.html:29 +msgid "Receive Line Items" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:50 +#: order/templates/order/return_order_detail.html:45 +#: order/templates/order/sales_order_detail.html:41 +msgid "Extra Lines" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:56 +#: order/templates/order/return_order_detail.html:51 +#: order/templates/order/sales_order_detail.html:47 +msgid "Add Extra Line" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:74 +msgid "Received Items" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:99 +#: order/templates/order/return_order_detail.html:85 +#: order/templates/order/sales_order_detail.html:139 +msgid "Order Notes" +msgstr "" + +#: order/templates/order/return_order_base.html:18 +#: order/templates/order/sales_order_base.html:18 +msgid "Customer logo thumbnail" +msgstr "" + +#: order/templates/order/return_order_base.html:60 +msgid "Print return order report" +msgstr "" + +#: order/templates/order/return_order_base.html:64 +#: order/templates/order/sales_order_base.html:64 +msgid "Print packing list" +msgstr "" + +#: order/templates/order/return_order_base.html:138 +#: order/templates/order/sales_order_base.html:155 +#: templates/js/translated/return_order.js:308 +#: templates/js/translated/sales_order.js:833 +msgid "Customer Reference" +msgstr "" + +#: order/templates/order/return_order_base.html:195 +#: order/templates/order/sales_order_base.html:239 +#: part/templates/part/part_pricing.html:32 +#: part/templates/part/part_pricing.html:58 +#: part/templates/part/part_pricing.html:99 +#: part/templates/part/part_pricing.html:114 +#: templates/js/translated/part.js:1076 +#: templates/js/translated/purchase_order.js:1752 +#: templates/js/translated/return_order.js:380 +#: templates/js/translated/sales_order.js:891 +msgid "Total Cost" +msgstr "" + +#: order/templates/order/return_order_base.html:259 +msgid "Return Order QR Code" +msgstr "" + +#: order/templates/order/return_order_base.html:271 +msgid "Link Barcode to Return Order" +msgstr "" + +#: order/templates/order/return_order_sidebar.html:5 +msgid "Order Details" +msgstr "" + +#: order/templates/order/sales_order_base.html:60 +msgid "Print sales order report" +msgstr "" + +#: order/templates/order/sales_order_base.html:88 +#: order/templates/order/sales_order_base.html:89 +msgid "Ship Items" +msgstr "" + +#: order/templates/order/sales_order_base.html:92 +#: order/templates/order/sales_order_base.html:93 +msgid "Mark As Shipped" +msgstr "" + +#: order/templates/order/sales_order_base.html:96 +#: templates/js/translated/sales_order.js:536 +msgid "Complete Sales Order" +msgstr "" + +#: order/templates/order/sales_order_base.html:135 +msgid "This Sales Order has not been fully allocated" +msgstr "" + +#: order/templates/order/sales_order_base.html:173 +#: order/templates/order/sales_order_detail.html:99 +#: order/templates/order/so_sidebar.html:11 +msgid "Completed Shipments" +msgstr "" + +#: order/templates/order/sales_order_base.html:321 +msgid "Sales Order QR Code" +msgstr "" + +#: order/templates/order/sales_order_base.html:333 +msgid "Link Barcode to Sales Order" +msgstr "" + +#: order/templates/order/sales_order_detail.html:18 +msgid "Sales Order Items" +msgstr "" + +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 +msgid "Pending Shipments" +msgstr "" + +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1277 templates/js/translated/build.js:1065 +#: templates/js/translated/filters.js:296 +msgid "Actions" +msgstr "" + +#: order/templates/order/sales_order_detail.html:80 +msgid "New Shipment" +msgstr "" + +#: order/views.py:120 +msgid "Match Supplier Parts" +msgstr "" + +#: order/views.py:406 +msgid "Sales order not found" +msgstr "" + +#: order/views.py:412 +msgid "Price not found" +msgstr "" + +#: order/views.py:415 +#, python-brace-format +msgid "Updated {part} unit-price to {price}" +msgstr "" + +#: order/views.py:421 +#, python-brace-format +msgid "Updated {part} unit-price to {price} and quantity to {qty}" +msgstr "" + +#: part/admin.py:48 part/models.py:945 part/templates/part/part_base.html:269 +#: report/templates/report/inventree_stock_location_report.html:103 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2345 +#: templates/js/translated/stock.js:2036 +msgid "IPN" +msgstr "" + +#: part/admin.py:50 part/models.py:954 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2351 +msgid "Revision" +msgstr "" + +#: part/admin.py:53 part/admin.py:319 part/models.py:927 +#: part/templates/part/category.html:94 part/templates/part/part_base.html:298 +msgid "Keywords" +msgstr "" + +#: part/admin.py:60 +msgid "Part Image" +msgstr "" + +#: part/admin.py:63 part/admin.py:302 part/stocktake.py:222 +msgid "Category ID" +msgstr "" + +#: part/admin.py:67 part/admin.py:304 part/serializers.py:863 +#: part/stocktake.py:223 +msgid "Category Name" +msgstr "" + +#: part/admin.py:71 part/admin.py:316 +msgid "Default Location ID" +msgstr "" + +#: part/admin.py:76 +msgid "Default Supplier ID" +msgstr "" + +#: part/admin.py:81 part/models.py:913 part/templates/part/part_base.html:177 +msgid "Variant Of" +msgstr "" + +#: part/admin.py:84 part/models.py:1041 part/templates/part/part_base.html:203 +msgid "Minimum Stock" +msgstr "" + +#: part/admin.py:138 part/templates/part/part_sidebar.html:27 +msgid "Used In" +msgstr "" + +#: part/admin.py:150 part/serializers.py:880 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 +msgid "Building" +msgstr "" + +#: part/admin.py:155 part/models.py:3099 part/models.py:3113 +#: templates/js/translated/part.js:973 +msgid "Minimum Cost" +msgstr "" + +#: part/admin.py:158 part/models.py:3106 part/models.py:3120 +#: templates/js/translated/part.js:983 +msgid "Maximum Cost" +msgstr "" + +#: part/admin.py:308 part/admin.py:387 stock/admin.py:57 stock/admin.py:215 +msgid "Parent ID" +msgstr "" + +#: part/admin.py:312 part/admin.py:394 stock/admin.py:61 +msgid "Parent Name" +msgstr "" + +#: part/admin.py:320 part/templates/part/category.html:88 +#: part/templates/part/category.html:101 +msgid "Category Path" +msgstr "" + +#: part/admin.py:325 part/models.py:398 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:141 part/templates/part/category.html:161 +#: part/templates/part/category_sidebar.html:9 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 +#: templates/InvenTree/settings/sidebar.html:47 +#: templates/js/translated/part.js:2821 templates/js/translated/search.js:130 +#: templates/navbar.html:24 users/models.py:203 +msgid "Parts" +msgstr "" + +#: part/admin.py:378 +msgid "BOM Level" +msgstr "" + +#: part/admin.py:381 +msgid "BOM Item ID" +msgstr "" + +#: part/admin.py:391 +msgid "Parent IPN" +msgstr "" + +#: part/admin.py:415 part/serializers.py:1328 +#: templates/js/translated/pricing.js:358 +#: templates/js/translated/pricing.js:1024 +msgid "Minimum Price" +msgstr "" + +#: part/admin.py:420 part/serializers.py:1343 +#: templates/js/translated/pricing.js:353 +#: templates/js/translated/pricing.js:1032 +msgid "Maximum Price" +msgstr "" + +#: part/api.py:105 +msgid "Starred" +msgstr "" + +#: part/api.py:107 +msgid "Filter by starred categories" +msgstr "" + +#: part/api.py:124 stock/api.py:312 +msgid "Depth" +msgstr "" + +#: part/api.py:124 +msgid "Filter by category depth" +msgstr "" + +#: part/api.py:142 stock/api.py:330 +msgid "Top Level" +msgstr "" + +#: part/api.py:144 +msgid "Filter by top-level categories" +msgstr "" + +#: part/api.py:157 stock/api.py:345 +msgid "Cascade" +msgstr "" + +#: part/api.py:159 +msgid "Include sub-categories in filtered results" +msgstr "" + +#: part/api.py:180 templates/js/translated/part.js:307 +msgid "Parent" +msgstr "" + +#: part/api.py:182 +msgid "Filter by parent category" +msgstr "" + +#: part/api.py:215 +msgid "Exclude Tree" +msgstr "" + +#: part/api.py:217 +msgid "Exclude sub-categories under the specified category" +msgstr "" + +#: part/api.py:442 +msgid "Has Results" +msgstr "" + +#: part/api.py:609 +msgid "Incoming Purchase Order" +msgstr "" + +#: part/api.py:627 +msgid "Outgoing Sales Order" +msgstr "" + +#: part/api.py:643 +msgid "Stock produced by Build Order" +msgstr "" + +#: part/api.py:727 +msgid "Stock required for Build Order" +msgstr "" + +#: part/api.py:875 +msgid "Validate entire Bill of Materials" +msgstr "" + +#: part/api.py:881 +msgid "This option must be selected" +msgstr "" + +#: part/api.py:1098 +msgid "BOM Valid" +msgstr "" + +#: part/api.py:1496 part/models.py:937 part/models.py:3386 part/models.py:3943 +#: part/serializers.py:419 part/serializers.py:1184 +#: part/templates/part/part_base.html:260 stock/api.py:783 +#: templates/InvenTree/settings/settings_staff_js.html:300 +#: templates/js/translated/notification.js:60 +#: templates/js/translated/part.js:2381 +msgid "Category" +msgstr "" + +#: part/api.py:1786 +msgid "Uses" +msgstr "" + +#: part/bom.py:170 part/models.py:105 part/models.py:980 +#: part/templates/part/category.html:116 part/templates/part/part_base.html:367 +#: templates/js/translated/part.js:2395 +msgid "Default Location" +msgstr "" + +#: part/bom.py:171 part/serializers.py:887 +#: templates/email/low_stock_notification.html:16 +msgid "Total Stock" +msgstr "" + +#: part/forms.py:49 +msgid "Input quantity for price calculation" +msgstr "" + +#: part/models.py:86 part/models.py:3944 part/templates/part/category.html:16 +#: part/templates/part/part_app_base.html:10 +msgid "Part Category" +msgstr "" + +#: part/models.py:87 part/templates/part/category.html:136 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 +#: users/models.py:202 +msgid "Part Categories" +msgstr "" + +#: part/models.py:106 +msgid "Default location for parts in this category" +msgstr "" + +#: part/models.py:111 stock/models.py:175 templates/js/translated/part.js:2827 +#: templates/js/translated/stock.js:2772 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:283 +msgid "Structural" +msgstr "" + +#: part/models.py:113 +msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." +msgstr "" + +#: part/models.py:122 +msgid "Default keywords" +msgstr "" + +#: part/models.py:123 +msgid "Default keywords for parts in this category" +msgstr "" + +#: part/models.py:129 stock/models.py:87 stock/models.py:158 +#: templates/InvenTree/settings/settings_staff_js.html:456 +msgid "Icon" +msgstr "" + +#: part/models.py:130 stock/models.py:159 +msgid "Icon (optional)" +msgstr "" + +#: part/models.py:152 +msgid "You cannot make this part category structural because some parts are already assigned to it!" +msgstr "" + +#: part/models.py:487 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:490 +msgid "Cannot delete this part as it is still active" +msgstr "" + +#: part/models.py:495 +msgid "Cannot delete this part as it is used in an assembly" +msgstr "" + +#: part/models.py:533 +msgid "Invalid choice for parent part" +msgstr "" + +#: part/models.py:581 part/models.py:588 +#, python-brace-format +msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" +msgstr "" + +#: part/models.py:600 +#, python-brace-format +msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" +msgstr "" + +#: part/models.py:663 +#, python-brace-format +msgid "IPN must match regex pattern {pattern}" +msgstr "" + +#: part/models.py:741 +msgid "Stock item with this serial number already exists" +msgstr "" + +#: part/models.py:842 +msgid "Duplicate IPN not allowed in part settings" +msgstr "" + +#: part/models.py:852 +msgid "Part with this Name, IPN and Revision already exists." +msgstr "" + +#: part/models.py:867 +msgid "Parts cannot be assigned to structural part categories!" +msgstr "" + +#: part/models.py:896 part/models.py:3999 +msgid "Part name" +msgstr "" + +#: part/models.py:901 +msgid "Is Template" +msgstr "" + +#: part/models.py:902 +msgid "Is this part a template part?" +msgstr "" + +#: part/models.py:912 +msgid "Is this part a variant of another part?" +msgstr "" + +#: part/models.py:920 +msgid "Part description (optional)" +msgstr "" + +#: part/models.py:928 +msgid "Part keywords to improve visibility in search results" +msgstr "" + +#: part/models.py:938 +msgid "Part category" +msgstr "" + +#: part/models.py:953 +msgid "Part revision or version number" +msgstr "" + +#: part/models.py:978 +msgid "Where is this item normally stored?" +msgstr "" + +#: part/models.py:1024 part/templates/part/part_base.html:376 +msgid "Default Supplier" +msgstr "" + +#: part/models.py:1025 +msgid "Default supplier part" +msgstr "" + +#: part/models.py:1032 +msgid "Default Expiry" +msgstr "" + +#: part/models.py:1033 +msgid "Expiry time (in days) for stock items of this part" +msgstr "" + +#: part/models.py:1042 +msgid "Minimum allowed stock level" +msgstr "" + +#: part/models.py:1051 +msgid "Units of measure for this part" +msgstr "" + +#: part/models.py:1058 +msgid "Can this part be built from other parts?" +msgstr "" + +#: part/models.py:1064 +msgid "Can this part be used to build other parts?" +msgstr "" + +#: part/models.py:1070 +msgid "Does this part have tracking for unique items?" +msgstr "" + +#: part/models.py:1076 +msgid "Can this part be purchased from external suppliers?" +msgstr "" + +#: part/models.py:1082 +msgid "Can this part be sold to customers?" +msgstr "" + +#: part/models.py:1086 +msgid "Is this part active?" +msgstr "" + +#: part/models.py:1091 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1092 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1098 +msgid "Is this a virtual part, such as a software product or license?" +msgstr "" + +#: part/models.py:1104 +msgid "BOM checksum" +msgstr "" + +#: part/models.py:1105 +msgid "Stored BOM checksum" +msgstr "" + +#: part/models.py:1113 +msgid "BOM checked by" +msgstr "" + +#: part/models.py:1118 +msgid "BOM checked date" +msgstr "" + +#: part/models.py:1134 +msgid "Creation User" +msgstr "" + +#: part/models.py:1144 +msgid "Owner responsible for this part" +msgstr "" + +#: part/models.py:1149 part/templates/part/part_base.html:339 +#: stock/templates/stock/item_base.html:451 +#: templates/js/translated/part.js:2488 +msgid "Last Stocktake" +msgstr "" + +#: part/models.py:2022 +msgid "Sell multiple" +msgstr "" + +#: part/models.py:3013 +msgid "Currency used to cache pricing calculations" +msgstr "" + +#: part/models.py:3029 +msgid "Minimum BOM Cost" +msgstr "" + +#: part/models.py:3030 +msgid "Minimum cost of component parts" +msgstr "" + +#: part/models.py:3036 +msgid "Maximum BOM Cost" +msgstr "" + +#: part/models.py:3037 +msgid "Maximum cost of component parts" +msgstr "" + +#: part/models.py:3043 +msgid "Minimum Purchase Cost" +msgstr "" + +#: part/models.py:3044 +msgid "Minimum historical purchase cost" +msgstr "" + +#: part/models.py:3050 +msgid "Maximum Purchase Cost" +msgstr "" + +#: part/models.py:3051 +msgid "Maximum historical purchase cost" +msgstr "" + +#: part/models.py:3057 +msgid "Minimum Internal Price" +msgstr "" + +#: part/models.py:3058 +msgid "Minimum cost based on internal price breaks" +msgstr "" + +#: part/models.py:3064 +msgid "Maximum Internal Price" +msgstr "" + +#: part/models.py:3065 +msgid "Maximum cost based on internal price breaks" +msgstr "" + +#: part/models.py:3071 +msgid "Minimum Supplier Price" +msgstr "" + +#: part/models.py:3072 +msgid "Minimum price of part from external suppliers" +msgstr "" + +#: part/models.py:3078 +msgid "Maximum Supplier Price" +msgstr "" + +#: part/models.py:3079 +msgid "Maximum price of part from external suppliers" +msgstr "" + +#: part/models.py:3085 +msgid "Minimum Variant Cost" +msgstr "" + +#: part/models.py:3086 +msgid "Calculated minimum cost of variant parts" +msgstr "" + +#: part/models.py:3092 +msgid "Maximum Variant Cost" +msgstr "" + +#: part/models.py:3093 +msgid "Calculated maximum cost of variant parts" +msgstr "" + +#: part/models.py:3100 +msgid "Override minimum cost" +msgstr "" + +#: part/models.py:3107 +msgid "Override maximum cost" +msgstr "" + +#: part/models.py:3114 +msgid "Calculated overall minimum cost" +msgstr "" + +#: part/models.py:3121 +msgid "Calculated overall maximum cost" +msgstr "" + +#: part/models.py:3127 +msgid "Minimum Sale Price" +msgstr "" + +#: part/models.py:3128 +msgid "Minimum sale price based on price breaks" +msgstr "" + +#: part/models.py:3134 +msgid "Maximum Sale Price" +msgstr "" + +#: part/models.py:3135 +msgid "Maximum sale price based on price breaks" +msgstr "" + +#: part/models.py:3141 +msgid "Minimum Sale Cost" +msgstr "" + +#: part/models.py:3142 +msgid "Minimum historical sale price" +msgstr "" + +#: part/models.py:3148 +msgid "Maximum Sale Cost" +msgstr "" + +#: part/models.py:3149 +msgid "Maximum historical sale price" +msgstr "" + +#: part/models.py:3168 +msgid "Part for stocktake" +msgstr "" + +#: part/models.py:3173 +msgid "Item Count" +msgstr "" + +#: part/models.py:3174 +msgid "Number of individual stock entries at time of stocktake" +msgstr "" + +#: part/models.py:3182 +msgid "Total available stock at time of stocktake" +msgstr "" + +#: part/models.py:3186 part/models.py:3269 +#: part/templates/part/part_scheduling.html:13 +#: report/templates/report/inventree_test_report.html:106 +#: templates/InvenTree/settings/plugin_settings.html:37 +#: templates/InvenTree/settings/settings_staff_js.html:540 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 +#: templates/js/translated/pricing.js:950 +#: templates/js/translated/purchase_order.js:1731 +#: templates/js/translated/stock.js:2821 +msgid "Date" +msgstr "" + +#: part/models.py:3187 +msgid "Date stocktake was performed" +msgstr "" + +#: part/models.py:3195 +msgid "Additional notes" +msgstr "" + +#: part/models.py:3205 +msgid "User who performed this stocktake" +msgstr "" + +#: part/models.py:3211 +msgid "Minimum Stock Cost" +msgstr "" + +#: part/models.py:3212 +msgid "Estimated minimum cost of stock on hand" +msgstr "" + +#: part/models.py:3218 +msgid "Maximum Stock Cost" +msgstr "" + +#: part/models.py:3219 +msgid "Estimated maximum cost of stock on hand" +msgstr "" + +#: part/models.py:3275 templates/InvenTree/settings/settings_staff_js.html:529 +msgid "Report" +msgstr "" + +#: part/models.py:3276 +msgid "Stocktake report file (generated internally)" +msgstr "" + +#: part/models.py:3281 templates/InvenTree/settings/settings_staff_js.html:536 +msgid "Part Count" +msgstr "" + +#: part/models.py:3282 +msgid "Number of parts covered by stocktake" +msgstr "" + +#: part/models.py:3292 +msgid "User who requested this stocktake report" +msgstr "" + +#: part/models.py:3302 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3414 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3440 +msgid "Invalid template name - must include at least one alphanumeric character" +msgstr "" + +#: part/models.py:3461 part/models.py:3630 +msgid "Choices must be unique" +msgstr "" + +#: part/models.py:3472 +msgid "Test templates can only be created for trackable parts" +msgstr "" + +#: part/models.py:3483 +msgid "Test template with the same key already exists for part" +msgstr "" + +#: part/models.py:3500 templates/js/translated/part.js:2897 +msgid "Test Name" +msgstr "" + +#: part/models.py:3501 +msgid "Enter a name for the test" +msgstr "" + +#: part/models.py:3507 +msgid "Test Key" +msgstr "" + +#: part/models.py:3508 +msgid "Simplified key for the test" +msgstr "" + +#: part/models.py:3515 +msgid "Test Description" +msgstr "" + +#: part/models.py:3516 +msgid "Enter description for this test" +msgstr "" + +#: part/models.py:3520 report/models.py:209 +#: templates/js/translated/part.js:2918 +#: templates/js/translated/table_filters.js:481 +msgid "Enabled" +msgstr "" + +#: part/models.py:3520 +msgid "Is this test enabled?" +msgstr "" + +#: part/models.py:3525 templates/js/translated/part.js:2926 +#: templates/js/translated/table_filters.js:477 +msgid "Required" +msgstr "" + +#: part/models.py:3526 +msgid "Is this test required to pass?" +msgstr "" + +#: part/models.py:3531 templates/js/translated/part.js:2934 +msgid "Requires Value" +msgstr "" + +#: part/models.py:3532 +msgid "Does this test require a value when adding a test result?" +msgstr "" + +#: part/models.py:3537 templates/js/translated/part.js:2941 +msgid "Requires Attachment" +msgstr "" + +#: part/models.py:3539 +msgid "Does this test require a file attachment when adding a test result?" +msgstr "" + +#: part/models.py:3545 part/models.py:3689 templates/js/translated/part.js:1640 +msgid "Choices" +msgstr "" + +#: part/models.py:3546 +msgid "Valid choices for this test (comma-separated)" +msgstr "" + +#: part/models.py:3578 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3605 +msgid "Checkbox parameters cannot have units" +msgstr "" + +#: part/models.py:3610 +msgid "Checkbox parameters cannot have choices" +msgstr "" + +#: part/models.py:3647 +msgid "Parameter template name must be unique" +msgstr "" + +#: part/models.py:3662 +msgid "Parameter Name" +msgstr "" + +#: part/models.py:3669 +msgid "Physical units for this parameter" +msgstr "" + +#: part/models.py:3677 +msgid "Parameter description" +msgstr "" + +#: part/models.py:3683 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 +msgid "Checkbox" +msgstr "" + +#: part/models.py:3684 +msgid "Is this parameter a checkbox?" +msgstr "" + +#: part/models.py:3690 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "" + +#: part/models.py:3724 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3750 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3786 +msgid "Invalid choice for parameter value" +msgstr "" + +#: part/models.py:3835 +msgid "Parent Part" +msgstr "" + +#: part/models.py:3843 part/models.py:3951 part/models.py:3952 +#: templates/InvenTree/settings/settings_staff_js.html:295 +msgid "Parameter Template" +msgstr "" + +#: part/models.py:3849 +msgid "Parameter Value" +msgstr "" + +#: part/models.py:3899 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3958 templates/InvenTree/settings/settings_staff_js.html:304 +msgid "Default Value" +msgstr "" + +#: part/models.py:3959 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:3997 +msgid "Part ID or part name" +msgstr "" + +#: part/models.py:3998 +msgid "Unique part ID value" +msgstr "" + +#: part/models.py:4000 +msgid "Part IPN value" +msgstr "" + +#: part/models.py:4001 +msgid "Level" +msgstr "" + +#: part/models.py:4001 +msgid "BOM level" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4119 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4129 +msgid "Select parent part" +msgstr "" + +#: part/models.py:4139 +msgid "Sub part" +msgstr "" + +#: part/models.py:4140 +msgid "Select part to be used in BOM" +msgstr "" + +#: part/models.py:4151 +msgid "BOM quantity for this BOM item" +msgstr "" + +#: part/models.py:4157 +msgid "This BOM item is optional" +msgstr "" + +#: part/models.py:4163 +msgid "This BOM item is consumable (it is not tracked in build orders)" +msgstr "" + +#: part/models.py:4170 part/templates/part/upload_bom.html:55 +msgid "Overage" +msgstr "" + +#: part/models.py:4171 +msgid "Estimated build wastage quantity (absolute or percentage)" +msgstr "" + +#: part/models.py:4178 +msgid "BOM item reference" +msgstr "" + +#: part/models.py:4186 +msgid "BOM item notes" +msgstr "" + +#: part/models.py:4192 +msgid "Checksum" +msgstr "" + +#: part/models.py:4193 +msgid "BOM line checksum" +msgstr "" + +#: part/models.py:4198 templates/js/translated/table_filters.js:174 +msgid "Validated" +msgstr "" + +#: part/models.py:4199 +msgid "This BOM item has been validated" +msgstr "" + +#: part/models.py:4204 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1054 +#: templates/js/translated/table_filters.js:178 +#: templates/js/translated/table_filters.js:211 +msgid "Gets inherited" +msgstr "" + +#: part/models.py:4205 +msgid "This BOM item is inherited by BOMs for variant parts" +msgstr "" + +#: part/models.py:4211 +msgid "Stock items for variant parts can be used for this BOM item" +msgstr "" + +#: part/models.py:4296 stock/models.py:663 +msgid "Quantity must be integer value for trackable parts" +msgstr "" + +#: part/models.py:4306 part/models.py:4308 +msgid "Sub part must be specified" +msgstr "" + +#: part/models.py:4446 +msgid "BOM Item Substitute" +msgstr "" + +#: part/models.py:4467 +msgid "Substitute part cannot be the same as the master part" +msgstr "" + +#: part/models.py:4480 +msgid "Parent BOM item" +msgstr "" + +#: part/models.py:4488 +msgid "Substitute part" +msgstr "" + +#: part/models.py:4504 +msgid "Part 1" +msgstr "" + +#: part/models.py:4512 +msgid "Part 2" +msgstr "" + +#: part/models.py:4513 +msgid "Select Related Part" +msgstr "" + +#: part/models.py:4532 +msgid "Part relationship cannot be created between a part and itself" +msgstr "" + +#: part/models.py:4537 +msgid "Duplicate relationship already exists" +msgstr "" + +#: part/serializers.py:124 +msgid "Parent Category" +msgstr "" + +#: part/serializers.py:125 templates/js/translated/part.js:308 +msgid "Parent part category" +msgstr "" + +#: part/serializers.py:132 part/serializers.py:154 +#: part/templates/part/category.html:122 part/templates/part/category.html:207 +#: part/templates/part/category_sidebar.html:7 +msgid "Subcategories" +msgstr "" + +#: part/serializers.py:189 +msgid "Results" +msgstr "" + +#: part/serializers.py:190 +msgid "Number of results recorded against this template" +msgstr "" + +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:612 +msgid "Purchase currency of this stock item" +msgstr "" + +#: part/serializers.py:283 +msgid "Number of parts using this template" +msgstr "" + +#: part/serializers.py:410 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:420 +msgid "Select category" +msgstr "" + +#: part/serializers.py:455 +msgid "Original Part" +msgstr "" + +#: part/serializers.py:456 +msgid "Select original part to duplicate" +msgstr "" + +#: part/serializers.py:461 +msgid "Copy Image" +msgstr "" + +#: part/serializers.py:462 +msgid "Copy image from original part" +msgstr "" + +#: part/serializers.py:468 part/templates/part/detail.html:277 +msgid "Copy BOM" +msgstr "" + +#: part/serializers.py:469 +msgid "Copy bill of materials from original part" +msgstr "" + +#: part/serializers.py:475 +msgid "Copy Parameters" +msgstr "" + +#: part/serializers.py:476 +msgid "Copy parameter data from original part" +msgstr "" + +#: part/serializers.py:482 +msgid "Copy Notes" +msgstr "" + +#: part/serializers.py:483 +msgid "Copy notes from original part" +msgstr "" + +#: part/serializers.py:501 +msgid "Initial Stock Quantity" +msgstr "" + +#: part/serializers.py:503 +msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." +msgstr "" + +#: part/serializers.py:510 +msgid "Initial Stock Location" +msgstr "" + +#: part/serializers.py:511 +msgid "Specify initial stock location for this Part" +msgstr "" + +#: part/serializers.py:528 +msgid "Select supplier (or leave blank to skip)" +msgstr "" + +#: part/serializers.py:544 +msgid "Select manufacturer (or leave blank to skip)" +msgstr "" + +#: part/serializers.py:554 +msgid "Manufacturer part number" +msgstr "" + +#: part/serializers.py:561 +msgid "Selected company is not a valid supplier" +msgstr "" + +#: part/serializers.py:570 +msgid "Selected company is not a valid manufacturer" +msgstr "" + +#: part/serializers.py:581 +msgid "Manufacturer part matching this MPN already exists" +msgstr "" + +#: part/serializers.py:588 +msgid "Supplier part matching this SKU already exists" +msgstr "" + +#: part/serializers.py:890 +msgid "Unallocated Stock" +msgstr "" + +#: part/serializers.py:893 +msgid "Variant Stock" +msgstr "" + +#: part/serializers.py:923 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 +msgid "Duplicate Part" +msgstr "" + +#: part/serializers.py:924 +msgid "Copy initial data from another Part" +msgstr "" + +#: part/serializers.py:930 templates/js/translated/part.js:102 +msgid "Initial Stock" +msgstr "" + +#: part/serializers.py:931 +msgid "Create Part with initial stock quantity" +msgstr "" + +#: part/serializers.py:937 +msgid "Supplier Information" +msgstr "" + +#: part/serializers.py:938 +msgid "Add initial supplier information for this part" +msgstr "" + +#: part/serializers.py:946 +msgid "Copy Category Parameters" +msgstr "" + +#: part/serializers.py:947 +msgid "Copy parameter templates from selected part category" +msgstr "" + +#: part/serializers.py:952 +msgid "Existing Image" +msgstr "" + +#: part/serializers.py:953 +msgid "Filename of an existing part image" +msgstr "" + +#: part/serializers.py:970 +msgid "Image file does not exist" +msgstr "" + +#: part/serializers.py:1176 +msgid "Limit stocktake report to a particular part, and any variant parts" +msgstr "" + +#: part/serializers.py:1186 +msgid "Limit stocktake report to a particular part category, and any child categories" +msgstr "" + +#: part/serializers.py:1196 +msgid "Limit stocktake report to a particular stock location, and any child locations" +msgstr "" + +#: part/serializers.py:1202 +msgid "Exclude External Stock" +msgstr "" + +#: part/serializers.py:1203 +msgid "Exclude stock items in external locations" +msgstr "" + +#: part/serializers.py:1208 +msgid "Generate Report" +msgstr "" + +#: part/serializers.py:1209 +msgid "Generate report file containing calculated stocktake data" +msgstr "" + +#: part/serializers.py:1214 +msgid "Update Parts" +msgstr "" + +#: part/serializers.py:1215 +msgid "Update specified parts with calculated stocktake data" +msgstr "" + +#: part/serializers.py:1223 +msgid "Stocktake functionality is not enabled" +msgstr "" + +#: part/serializers.py:1329 +msgid "Override calculated value for minimum price" +msgstr "" + +#: part/serializers.py:1336 +msgid "Minimum price currency" +msgstr "" + +#: part/serializers.py:1344 +msgid "Override calculated value for maximum price" +msgstr "" + +#: part/serializers.py:1351 +msgid "Maximum price currency" +msgstr "" + +#: part/serializers.py:1380 +msgid "Update" +msgstr "" + +#: part/serializers.py:1381 +msgid "Update pricing for this part" +msgstr "" + +#: part/serializers.py:1404 +#, python-brace-format +msgid "Could not convert from provided currencies to {default_currency}" +msgstr "" + +#: part/serializers.py:1411 +msgid "Minimum price must not be greater than maximum price" +msgstr "" + +#: part/serializers.py:1414 +msgid "Maximum price must not be less than minimum price" +msgstr "" + +#: part/serializers.py:1565 part/templates/part/part_base.html:235 +#: templates/js/translated/bom.js:1219 +msgid "Can Build" +msgstr "" + +#: part/serializers.py:1803 +msgid "Select part to copy BOM from" +msgstr "" + +#: part/serializers.py:1811 +msgid "Remove Existing Data" +msgstr "" + +#: part/serializers.py:1812 +msgid "Remove existing BOM items before copying" +msgstr "" + +#: part/serializers.py:1817 +msgid "Include Inherited" +msgstr "" + +#: part/serializers.py:1818 +msgid "Include BOM items which are inherited from templated parts" +msgstr "" + +#: part/serializers.py:1823 +msgid "Skip Invalid Rows" +msgstr "" + +#: part/serializers.py:1824 +msgid "Enable this option to skip invalid rows" +msgstr "" + +#: part/serializers.py:1829 +msgid "Copy Substitute Parts" +msgstr "" + +#: part/serializers.py:1830 +msgid "Copy substitute parts when duplicate BOM items" +msgstr "" + +#: part/serializers.py:1867 +msgid "Clear Existing BOM" +msgstr "" + +#: part/serializers.py:1868 +msgid "Delete existing BOM items before uploading" +msgstr "" + +#: part/serializers.py:1900 +msgid "No part column specified" +msgstr "" + +#: part/serializers.py:1944 +msgid "Multiple matching parts found" +msgstr "" + +#: part/serializers.py:1947 +msgid "No matching part found" +msgstr "" + +#: part/serializers.py:1950 +msgid "Part is not designated as a component" +msgstr "" + +#: part/serializers.py:1959 +msgid "Quantity not provided" +msgstr "" + +#: part/serializers.py:1967 +msgid "Invalid quantity" +msgstr "" + +#: part/serializers.py:1990 +msgid "At least one BOM item is required" +msgstr "" + +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 +#: templates/js/translated/purchase_order.js:2084 +msgid "Total Quantity" +msgstr "" + +#: part/stocktake.py:226 +msgid "Total Cost Min" +msgstr "" + +#: part/stocktake.py:227 +msgid "Total Cost Max" +msgstr "" + +#: part/stocktake.py:285 +msgid "Stocktake Report Available" +msgstr "" + +#: part/stocktake.py:286 +msgid "A new stocktake report is available for download" +msgstr "" + +#: part/tasks.py:37 +msgid "Low stock notification" +msgstr "" + +#: part/tasks.py:39 +#, python-brace-format +msgid "The available stock for {part.name} has fallen below the configured minimum level" +msgstr "" + +#: part/templates/part/bom.html:6 +msgid "You do not have permission to edit the BOM." +msgstr "" + +#: part/templates/part/bom.html:15 +msgid "The BOM this part has been changed, and must be validated" +msgstr "" + +#: part/templates/part/bom.html:17 +#, python-format +msgid "This BOM was last checked by %(checker)s on %(check_date)s" +msgstr "" + +#: part/templates/part/bom.html:21 +msgid "This BOM has not been validated." +msgstr "" + +#: part/templates/part/category.html:35 +msgid "Perform stocktake for this part category" +msgstr "" + +#: part/templates/part/category.html:41 part/templates/part/category.html:45 +msgid "You are subscribed to notifications for this category" +msgstr "" + +#: part/templates/part/category.html:49 +msgid "Subscribe to notifications for this category" +msgstr "" + +#: part/templates/part/category.html:55 +msgid "Category Actions" +msgstr "" + +#: part/templates/part/category.html:60 +msgid "Edit category" +msgstr "" + +#: part/templates/part/category.html:61 +msgid "Edit Category" +msgstr "" + +#: part/templates/part/category.html:65 +msgid "Delete category" +msgstr "" + +#: part/templates/part/category.html:66 +msgid "Delete Category" +msgstr "" + +#: part/templates/part/category.html:102 +msgid "Top level part category" +msgstr "" + +#: part/templates/part/category.html:127 +msgid "Parts (Including subcategories)" +msgstr "" + +#: part/templates/part/category.html:165 +msgid "Create new part" +msgstr "" + +#: part/templates/part/category.html:166 templates/js/translated/bom.js:444 +msgid "New Part" +msgstr "" + +#: part/templates/part/category.html:192 +#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/sidebar.html:49 +msgid "Part Parameters" +msgstr "" + +#: part/templates/part/category.html:211 +msgid "Create new part category" +msgstr "" + +#: part/templates/part/category.html:212 +msgid "New Category" +msgstr "" + +#: part/templates/part/category_sidebar.html:13 +msgid "Import Parts" +msgstr "" + +#: part/templates/part/copy_part.html:10 +#, python-format +msgid "Make a copy of part '%(full_name)s'." +msgstr "" + +#: part/templates/part/copy_part.html:14 +#: part/templates/part/create_part.html:11 +msgid "Possible Matching Parts" +msgstr "" + +#: part/templates/part/copy_part.html:15 +#: part/templates/part/create_part.html:12 +msgid "The new part may be a duplicate of these existing parts" +msgstr "" + +#: part/templates/part/create_part.html:17 +#, python-format +msgid "%(full_name)s - %(desc)s (%(match_per)s%% match)" +msgstr "" + +#: part/templates/part/detail.html:20 +msgid "Part Stock" +msgstr "" + +#: part/templates/part/detail.html:44 +msgid "Refresh scheduling data" +msgstr "" + +#: part/templates/part/detail.html:45 part/templates/part/prices.html:15 +#: templates/js/translated/tables.js:552 +msgid "Refresh" +msgstr "" + +#: part/templates/part/detail.html:66 +msgid "Add stocktake information" +msgstr "" + +#: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 +#: stock/admin.py:255 templates/InvenTree/settings/part_stocktake.html:30 +#: templates/InvenTree/settings/sidebar.html:53 +#: templates/js/translated/stock.js:2216 users/models.py:204 +msgid "Stocktake" +msgstr "" + +#: part/templates/part/detail.html:83 +msgid "Part Test Templates" +msgstr "" + +#: part/templates/part/detail.html:88 +msgid "Add Test Template" +msgstr "" + +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 +msgid "Sales Order Allocations" +msgstr "" + +#: part/templates/part/detail.html:156 +msgid "Part Notes" +msgstr "" + +#: part/templates/part/detail.html:171 +msgid "Part Variants" +msgstr "" + +#: part/templates/part/detail.html:175 +msgid "Create new variant" +msgstr "" + +#: part/templates/part/detail.html:176 +msgid "New Variant" +msgstr "" + +#: part/templates/part/detail.html:199 +msgid "Add new parameter" +msgstr "" + +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 +msgid "Related Parts" +msgstr "" + +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 +msgid "Add Related" +msgstr "" + +#: part/templates/part/detail.html:255 part/templates/part/part_sidebar.html:17 +#: report/templates/report/inventree_bill_of_materials_report.html:100 +msgid "Bill of Materials" +msgstr "" + +#: part/templates/part/detail.html:260 +msgid "Export actions" +msgstr "" + +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 +msgid "Export BOM" +msgstr "" + +#: part/templates/part/detail.html:266 +msgid "Print BOM Report" +msgstr "" + +#: part/templates/part/detail.html:272 +msgid "BOM actions" +msgstr "" + +#: part/templates/part/detail.html:276 +msgid "Upload BOM" +msgstr "" + +#: part/templates/part/detail.html:278 +msgid "Validate BOM" +msgstr "" + +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1320 templates/js/translated/bom.js:1321 +msgid "Add BOM Item" +msgstr "" + +#: part/templates/part/detail.html:297 +msgid "Assemblies" +msgstr "" + +#: part/templates/part/detail.html:313 +msgid "Part Builds" +msgstr "" + +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 +msgid "Build Order Allocations" +msgstr "" + +#: part/templates/part/detail.html:352 +msgid "Part Suppliers" +msgstr "" + +#: part/templates/part/detail.html:372 +msgid "Part Manufacturers" +msgstr "" + +#: part/templates/part/detail.html:657 +msgid "Related Part" +msgstr "" + +#: part/templates/part/detail.html:665 +msgid "Add Related Part" +msgstr "" + +#: part/templates/part/detail.html:750 +msgid "Add Test Result Template" +msgstr "" + +#: part/templates/part/import_wizard/ajax_part_upload.html:29 +#: part/templates/part/import_wizard/part_upload.html:14 +msgid "Insufficient privileges." +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:8 +msgid "Return to Parts" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:13 +msgid "Import Parts from File" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:31 +msgid "Requirements for part import" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:33 +msgid "The part import file must contain the required named columns as provided in the " +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:33 +msgid "Part Import Template" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:89 +msgid "Download Part Import Template" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:92 +#: templates/js/translated/bom.js:309 templates/js/translated/bom.js:343 +#: templates/js/translated/order.js:129 templates/js/translated/tables.js:189 +msgid "Format" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:93 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 +#: templates/js/translated/order.js:130 +msgid "Select file format" +msgstr "" + +#: part/templates/part/part_app_base.html:12 +msgid "Part List" +msgstr "" + +#: part/templates/part/part_base.html:25 part/templates/part/part_base.html:29 +msgid "You are subscribed to notifications for this part" +msgstr "" + +#: part/templates/part/part_base.html:33 +msgid "Subscribe to notifications for this part" +msgstr "" + +#: part/templates/part/part_base.html:52 +#: stock/templates/stock/item_base.html:62 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 +msgid "Print Label" +msgstr "" + +#: part/templates/part/part_base.html:58 +msgid "Show pricing information" +msgstr "" + +#: part/templates/part/part_base.html:63 +#: stock/templates/stock/item_base.html:110 +#: stock/templates/stock/location.html:83 +msgid "Stock actions" +msgstr "" + +#: part/templates/part/part_base.html:70 +msgid "Count part stock" +msgstr "" + +#: part/templates/part/part_base.html:76 +msgid "Transfer part stock" +msgstr "" + +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2297 +msgid "Part actions" +msgstr "" + +#: part/templates/part/part_base.html:94 +msgid "Duplicate part" +msgstr "" + +#: part/templates/part/part_base.html:97 +msgid "Edit part" +msgstr "" + +#: part/templates/part/part_base.html:100 +msgid "Delete part" +msgstr "" + +#: part/templates/part/part_base.html:119 +msgid "Part is a template part (variants can be made from this part)" +msgstr "" + +#: part/templates/part/part_base.html:123 +msgid "Part can be assembled from other parts" +msgstr "" + +#: part/templates/part/part_base.html:127 +msgid "Part can be used in assemblies" +msgstr "" + +#: part/templates/part/part_base.html:131 +msgid "Part stock is tracked by serial number" +msgstr "" + +#: part/templates/part/part_base.html:135 +msgid "Part can be purchased from external suppliers" +msgstr "" + +#: part/templates/part/part_base.html:139 +msgid "Part can be sold to customers" +msgstr "" + +#: part/templates/part/part_base.html:145 +msgid "Part is not active" +msgstr "" + +#: part/templates/part/part_base.html:153 +msgid "Part is virtual (not a physical part)" +msgstr "" + +#: part/templates/part/part_base.html:163 +#: part/templates/part/part_base.html:681 +msgid "Show Part Details" +msgstr "" + +#: part/templates/part/part_base.html:218 +#: stock/templates/stock/item_base.html:388 +msgid "Allocated to Build Orders" +msgstr "" + +#: part/templates/part/part_base.html:227 +#: stock/templates/stock/item_base.html:381 +msgid "Allocated to Sales Orders" +msgstr "" + +#: part/templates/part/part_base.html:291 +msgid "Minimum stock level" +msgstr "" + +#: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2461 +#: templates/js/translated/pricing.js:391 +#: templates/js/translated/pricing.js:1054 +msgid "Price Range" +msgstr "" + +#: part/templates/part/part_base.html:352 +msgid "Latest Serial Number" +msgstr "" + +#: part/templates/part/part_base.html:356 +#: stock/templates/stock/item_base.html:322 +msgid "Search for serial number" +msgstr "" + +#: part/templates/part/part_base.html:444 +msgid "Part QR Code" +msgstr "" + +#: part/templates/part/part_base.html:461 +msgid "Link Barcode to Part" +msgstr "" + +#: part/templates/part/part_base.html:511 +msgid "Calculate" +msgstr "" + +#: part/templates/part/part_base.html:528 +msgid "Remove associated image from this part" +msgstr "" + +#: part/templates/part/part_base.html:579 +msgid "No matching images found" +msgstr "" + +#: part/templates/part/part_base.html:675 +msgid "Hide Part Details" +msgstr "" + +#: part/templates/part/part_pricing.html:22 part/templates/part/prices.html:76 +#: part/templates/part/prices.html:227 templates/js/translated/pricing.js:485 +msgid "Supplier Pricing" +msgstr "" + +#: part/templates/part/part_pricing.html:26 +#: part/templates/part/part_pricing.html:52 +#: part/templates/part/part_pricing.html:95 +#: part/templates/part/part_pricing.html:110 +msgid "Unit Cost" +msgstr "" + +#: part/templates/part/part_pricing.html:40 +msgid "No supplier pricing available" +msgstr "" + +#: part/templates/part/part_pricing.html:48 part/templates/part/prices.html:90 +#: part/templates/part/prices.html:250 +msgid "BOM Pricing" +msgstr "" + +#: part/templates/part/part_pricing.html:66 +msgid "Unit Purchase Price" +msgstr "" + +#: part/templates/part/part_pricing.html:72 +msgid "Total Purchase Price" +msgstr "" + +#: part/templates/part/part_pricing.html:83 +msgid "No BOM pricing available" +msgstr "" + +#: part/templates/part/part_pricing.html:92 +msgid "Internal Price" +msgstr "" + +#: part/templates/part/part_pricing.html:123 +msgid "No pricing information is available for this part." +msgstr "" + +#: part/templates/part/part_scheduling.html:14 +msgid "Scheduled Quantity" +msgstr "" + +#: part/templates/part/part_sidebar.html:11 +msgid "Variants" +msgstr "" + +#: part/templates/part/part_sidebar.html:14 +#: stock/templates/stock/loc_link.html:3 stock/templates/stock/location.html:24 +#: stock/templates/stock/stock_app_base.html:10 +#: templates/InvenTree/search.html:153 +#: templates/InvenTree/settings/sidebar.html:51 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2409 templates/js/translated/stock.js:1059 +#: templates/js/translated/stock.js:2070 templates/navbar.html:31 +msgid "Stock" +msgstr "" + +#: part/templates/part/part_sidebar.html:30 +#: templates/InvenTree/settings/sidebar.html:39 +msgid "Pricing" +msgstr "" + +#: part/templates/part/part_sidebar.html:44 +msgid "Scheduling" +msgstr "" + +#: part/templates/part/part_sidebar.html:54 +msgid "Test Templates" +msgstr "" + +#: part/templates/part/part_thumb.html:11 +msgid "Select from existing images" +msgstr "" + +#: part/templates/part/prices.html:11 +msgid "Pricing Overview" +msgstr "" + +#: part/templates/part/prices.html:14 +msgid "Refresh Part Pricing" +msgstr "" + +#: part/templates/part/prices.html:17 +msgid "Override Part Pricing" +msgstr "" + +#: part/templates/part/prices.html:18 +#: templates/InvenTree/settings/settings_staff_js.html:80 +#: templates/InvenTree/settings/user.html:24 +#: templates/js/translated/helpers.js:100 +#: templates/js/translated/pricing.js:628 templates/notes_buttons.html:3 +#: templates/notes_buttons.html:4 +msgid "Edit" +msgstr "" + +#: part/templates/part/prices.html:28 stock/admin.py:251 +#: stock/templates/stock/item_base.html:446 +#: templates/js/translated/company.js:1703 +#: templates/js/translated/company.js:1713 +#: templates/js/translated/stock.js:2246 +msgid "Last Updated" +msgstr "" + +#: part/templates/part/prices.html:37 part/templates/part/prices.html:127 +msgid "Price Category" +msgstr "" + +#: part/templates/part/prices.html:38 part/templates/part/prices.html:128 +msgid "Minimum" +msgstr "" + +#: part/templates/part/prices.html:39 part/templates/part/prices.html:129 +msgid "Maximum" +msgstr "" + +#: part/templates/part/prices.html:51 part/templates/part/prices.html:174 +msgid "Internal Pricing" +msgstr "" + +#: part/templates/part/prices.html:64 part/templates/part/prices.html:206 +msgid "Purchase History" +msgstr "" + +#: part/templates/part/prices.html:98 part/templates/part/prices.html:274 +msgid "Variant Pricing" +msgstr "" + +#: part/templates/part/prices.html:106 +msgid "Pricing Overrides" +msgstr "" + +#: part/templates/part/prices.html:113 +msgid "Overall Pricing" +msgstr "" + +#: part/templates/part/prices.html:149 part/templates/part/prices.html:326 +msgid "Sale History" +msgstr "" + +#: part/templates/part/prices.html:157 +msgid "Sale price data is not available for this part" +msgstr "" + +#: part/templates/part/prices.html:164 +msgid "Price range data is not available for this part." +msgstr "" + +#: part/templates/part/prices.html:175 part/templates/part/prices.html:207 +#: part/templates/part/prices.html:228 part/templates/part/prices.html:251 +#: part/templates/part/prices.html:275 part/templates/part/prices.html:298 +#: part/templates/part/prices.html:327 +msgid "Jump to overview" +msgstr "" + +#: part/templates/part/prices.html:180 +msgid "Add Internal Price Break" +msgstr "" + +#: part/templates/part/prices.html:297 +msgid "Sale Pricing" +msgstr "" + +#: part/templates/part/prices.html:303 +msgid "Add Sell Price Break" +msgstr "" + +#: part/templates/part/pricing_javascript.html:24 +msgid "Update Pricing" +msgstr "" + +#: part/templates/part/stock_count.html:7 +#: templates/js/translated/model_renderers.js:227 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 +msgid "No Stock" +msgstr "" + +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 +msgid "Low Stock" +msgstr "" + +#: part/templates/part/upload_bom.html:8 +msgid "Return to BOM" +msgstr "" + +#: part/templates/part/upload_bom.html:13 +msgid "Upload Bill of Materials" +msgstr "" + +#: part/templates/part/upload_bom.html:19 +msgid "BOM upload requirements" +msgstr "" + +#: part/templates/part/upload_bom.html:23 +#: part/templates/part/upload_bom.html:90 +msgid "Upload BOM File" +msgstr "" + +#: part/templates/part/upload_bom.html:29 +msgid "Submit BOM Data" +msgstr "" + +#: part/templates/part/upload_bom.html:37 +msgid "Requirements for BOM upload" +msgstr "" + +#: part/templates/part/upload_bom.html:39 +msgid "The BOM file must contain the required named columns as provided in the " +msgstr "" + +#: part/templates/part/upload_bom.html:39 +msgid "BOM Upload Template" +msgstr "" + +#: part/templates/part/upload_bom.html:40 +msgid "Each part must already exist in the database" +msgstr "" + +#: part/templates/part/variant_part.html:9 +msgid "Create new part variant" +msgstr "" + +#: part/templates/part/variant_part.html:10 +msgid "Create a new variant part from this template" +msgstr "" + +#: part/views.py:111 +msgid "Match References" +msgstr "" + +#: part/views.py:275 +#, python-brace-format +msgid "Can't import part {new_part.name} because there is no category assigned" +msgstr "" + +#: part/views.py:425 +msgid "Select Part Image" +msgstr "" + +#: part/views.py:448 +msgid "Updated part image" +msgstr "" + +#: part/views.py:451 +msgid "Part image not found" +msgstr "" + +#: part/views.py:545 +msgid "Part Pricing" +msgstr "" + +#: plugin/api.py:170 +msgid "Plugin cannot be deleted as it is currently active" +msgstr "" + +#: plugin/base/action/api.py:32 +msgid "No action specified" +msgstr "" + +#: plugin/base/action/api.py:41 +msgid "No matching action found" +msgstr "" + +#: plugin/base/barcodes/api.py:124 plugin/base/barcodes/api.py:328 +#: plugin/base/barcodes/api.py:503 +msgid "No match found for barcode data" +msgstr "" + +#: plugin/base/barcodes/api.py:128 +msgid "Match found for barcode data" +msgstr "" + +#: plugin/base/barcodes/api.py:154 +#: templates/js/translated/purchase_order.js:1406 +msgid "Barcode matches existing item" +msgstr "" + +#: plugin/base/barcodes/api.py:293 +msgid "No matching part data found" +msgstr "" + +#: plugin/base/barcodes/api.py:310 +msgid "No matching supplier parts found" +msgstr "" + +#: plugin/base/barcodes/api.py:314 +msgid "Multiple matching supplier parts found" +msgstr "" + +#: plugin/base/barcodes/api.py:338 +msgid "Matched supplier part" +msgstr "" + +#: plugin/base/barcodes/api.py:387 +msgid "Item has already been received" +msgstr "" + +#: plugin/base/barcodes/api.py:424 +msgid "No match for supplier barcode" +msgstr "" + +#: plugin/base/barcodes/api.py:467 +msgid "Multiple matching line items found" +msgstr "" + +#: plugin/base/barcodes/api.py:470 +msgid "No matching line item found" +msgstr "" + +#: plugin/base/barcodes/api.py:508 plugin/base/barcodes/api.py:515 +msgid "Barcode does not match an existing stock item" +msgstr "" + +#: plugin/base/barcodes/api.py:526 +msgid "Stock item does not match line item" +msgstr "" + +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2783 +#: templates/js/translated/sales_order.js:1953 +msgid "Insufficient stock available" +msgstr "" + +#: plugin/base/barcodes/api.py:559 +msgid "Stock item allocated to sales order" +msgstr "" + +#: plugin/base/barcodes/api.py:563 +msgid "Not enough information" +msgstr "" + +#: plugin/base/barcodes/mixins.py:147 plugin/base/barcodes/mixins.py:179 +msgid "Found multiple matching supplier parts for barcode" +msgstr "" + +#: plugin/base/barcodes/mixins.py:197 +#, python-brace-format +msgid "Found multiple purchase orders matching '{order}'" +msgstr "" + +#: plugin/base/barcodes/mixins.py:201 +#, python-brace-format +msgid "No matching purchase order for '{order}'" +msgstr "" + +#: plugin/base/barcodes/mixins.py:206 +msgid "Purchase order does not match supplier" +msgstr "" + +#: plugin/base/barcodes/mixins.py:440 +msgid "Failed to find pending line item for supplier part" +msgstr "" + +#: plugin/base/barcodes/mixins.py:471 +msgid "Further information required to receive line item" +msgstr "" + +#: plugin/base/barcodes/mixins.py:479 +msgid "Received purchase order line item" +msgstr "" + +#: plugin/base/barcodes/serializers.py:21 +msgid "Scanned barcode data" +msgstr "" + +#: plugin/base/barcodes/serializers.py:81 +msgid "Purchase Order to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:87 +msgid "Purchase order is not pending" +msgstr "" + +#: plugin/base/barcodes/serializers.py:105 +msgid "PurchaseOrder to receive items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:111 +msgid "Purchase order has not been placed" +msgstr "" + +#: plugin/base/barcodes/serializers.py:119 +msgid "Location to receive items into" +msgstr "" + +#: plugin/base/barcodes/serializers.py:125 +msgid "Cannot select a structural location" +msgstr "" + +#: plugin/base/barcodes/serializers.py:139 +msgid "Sales Order to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:145 +msgid "Sales order is not pending" +msgstr "" + +#: plugin/base/barcodes/serializers.py:153 +msgid "Sales order line item to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:160 +msgid "Sales order shipment to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:166 +msgid "Shipment has already been delivered" +msgstr "" + +#: plugin/base/barcodes/serializers.py:171 +msgid "Quantity to allocate" +msgstr "" + +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 +msgid "Label printing failed" +msgstr "" + +#: plugin/base/label/mixins.py:56 +msgid "Error rendering label to PDF" +msgstr "" + +#: plugin/base/label/mixins.py:70 +msgid "Error rendering label to HTML" +msgstr "" + +#: plugin/base/label/mixins.py:151 +msgid "No items provided to print" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:25 +msgid "InvenTree Barcodes" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:26 +msgid "Provides native support for barcodes" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:28 +#: plugin/builtin/integration/core_notifications.py:35 +#: plugin/builtin/integration/currency_exchange.py:21 +#: plugin/builtin/labels/inventree_label.py:22 +#: plugin/builtin/labels/inventree_machine.py:64 +#: plugin/builtin/labels/label_sheet.py:64 +#: plugin/builtin/suppliers/digikey.py:19 plugin/builtin/suppliers/lcsc.py:21 +#: plugin/builtin/suppliers/mouser.py:19 plugin/builtin/suppliers/tme.py:21 +msgid "InvenTree contributors" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:34 +msgid "InvenTree Notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:36 +msgid "Integrated outgoing notification methods" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:41 +#: plugin/builtin/integration/core_notifications.py:80 +msgid "Enable email notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:42 +#: plugin/builtin/integration/core_notifications.py:81 +msgid "Allow sending of emails for event notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:47 +msgid "Enable slack notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:49 +msgid "Allow sending of slack channel messages for event notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:55 +msgid "Slack incoming webhook url" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:56 +msgid "URL that is used to send messages to a slack channel" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:164 +msgid "Open link" +msgstr "" + +#: plugin/builtin/integration/currency_exchange.py:22 +msgid "InvenTree Currency Exchange" +msgstr "" + +#: plugin/builtin/integration/currency_exchange.py:23 +msgid "Default currency exchange integration" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:19 +msgid "InvenTree PDF label printer" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:20 +msgid "Provides native support for printing PDF labels" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:28 +#: plugin/builtin/labels/label_sheet.py:70 +msgid "Debug mode" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:29 +#: plugin/builtin/labels/label_sheet.py:71 +msgid "Enable debug mode - returns raw HTML instead of PDF" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:61 +msgid "InvenTree machine label printer" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:62 +msgid "Provides support for printing using a machine" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:151 +msgid "last used" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:168 +msgid "Options" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:30 +msgid "Page size for the label sheet" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:35 +msgid "Skip Labels" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:36 +msgid "Skip this number of labels when printing label sheets" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:42 +msgid "Border" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:43 +msgid "Print a border around each label" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:48 report/models.py:308 +msgid "Landscape" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:49 +msgid "Print the label sheet in landscape mode" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:61 +msgid "InvenTree Label Sheet Printer" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:62 +msgid "Arrays multiple labels onto a single sheet" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:113 +msgid "Label is too large for page size" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:147 +msgid "No labels were generated" +msgstr "" + +#: plugin/builtin/suppliers/digikey.py:16 +msgid "Supplier Integration - DigiKey" +msgstr "" + +#: plugin/builtin/suppliers/digikey.py:17 +msgid "Provides support for scanning DigiKey barcodes" +msgstr "" + +#: plugin/builtin/suppliers/digikey.py:26 +msgid "The Supplier which acts as 'DigiKey'" +msgstr "" + +#: plugin/builtin/suppliers/lcsc.py:18 +msgid "Supplier Integration - LCSC" +msgstr "" + +#: plugin/builtin/suppliers/lcsc.py:19 +msgid "Provides support for scanning LCSC barcodes" +msgstr "" + +#: plugin/builtin/suppliers/lcsc.py:27 +msgid "The Supplier which acts as 'LCSC'" +msgstr "" + +#: plugin/builtin/suppliers/mouser.py:16 +msgid "Supplier Integration - Mouser" +msgstr "" + +#: plugin/builtin/suppliers/mouser.py:17 +msgid "Provides support for scanning Mouser barcodes" +msgstr "" + +#: plugin/builtin/suppliers/mouser.py:25 +msgid "The Supplier which acts as 'Mouser'" +msgstr "" + +#: plugin/builtin/suppliers/tme.py:18 +msgid "Supplier Integration - TME" +msgstr "" + +#: plugin/builtin/suppliers/tme.py:19 +msgid "Provides support for scanning TME barcodes" +msgstr "" + +#: plugin/builtin/suppliers/tme.py:27 +msgid "The Supplier which acts as 'TME'" +msgstr "" + +#: plugin/installer.py:194 plugin/installer.py:282 +msgid "Only staff users can administer plugins" +msgstr "" + +#: plugin/installer.py:197 +msgid "Plugin installation is disabled" +msgstr "" + +#: plugin/installer.py:248 +msgid "Installed plugin successfully" +msgstr "" + +#: plugin/installer.py:254 +#, python-brace-format +msgid "Installed plugin into {path}" +msgstr "" + +#: plugin/installer.py:273 +msgid "Plugin was not found in registry" +msgstr "" + +#: plugin/installer.py:276 +msgid "Plugin is not a packaged plugin" +msgstr "" + +#: plugin/installer.py:279 +msgid "Plugin package name not found" +msgstr "" + +#: plugin/installer.py:299 +msgid "Plugin uninstalling is disabled" +msgstr "" + +#: plugin/installer.py:303 +msgid "Plugin cannot be uninstalled as it is currently active" +msgstr "" + +#: plugin/installer.py:316 +msgid "Uninstalled plugin successfully" +msgstr "" + +#: plugin/models.py:36 +msgid "Plugin Configuration" +msgstr "" + +#: plugin/models.py:37 +msgid "Plugin Configurations" +msgstr "" + +#: plugin/models.py:43 users/models.py:100 +msgid "Key" +msgstr "" + +#: plugin/models.py:44 +msgid "Key of plugin" +msgstr "" + +#: plugin/models.py:52 +msgid "PluginName of the plugin" +msgstr "" + +#: plugin/models.py:59 plugin/serializers.py:90 +msgid "Package Name" +msgstr "" + +#: plugin/models.py:61 +msgid "Name of the installed package, if the plugin was installed via PIP" +msgstr "" + +#: plugin/models.py:66 +msgid "Is the plugin active" +msgstr "" + +#: plugin/models.py:157 templates/js/translated/table_filters.js:370 +#: templates/js/translated/table_filters.js:504 +msgid "Installed" +msgstr "" + +#: plugin/models.py:166 +msgid "Sample plugin" +msgstr "" + +#: plugin/models.py:174 +msgid "Builtin Plugin" +msgstr "" + +#: plugin/models.py:182 +msgid "Package Plugin" +msgstr "" + +#: plugin/models.py:220 report/models.py:475 +#: templates/InvenTree/settings/plugin_settings.html:9 +#: templates/js/translated/plugin.js:51 +msgid "Plugin" +msgstr "" + +#: plugin/models.py:267 +msgid "Method" +msgstr "" + +#: plugin/plugin.py:270 +msgid "No author found" +msgstr "" + +#: plugin/registry.py:534 +#, python-brace-format +msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" +msgstr "" + +#: plugin/registry.py:537 +#, python-brace-format +msgid "Plugin requires at least version {v}" +msgstr "" + +#: plugin/registry.py:539 +#, python-brace-format +msgid "Plugin requires at most version {v}" +msgstr "" + +#: plugin/samples/integration/sample.py:52 +msgid "Enable PO" +msgstr "" + +#: plugin/samples/integration/sample.py:53 +msgid "Enable PO functionality in InvenTree interface" +msgstr "" + +#: plugin/samples/integration/sample.py:58 +msgid "API Key" +msgstr "" + +#: plugin/samples/integration/sample.py:59 +msgid "Key required for accessing external API" +msgstr "" + +#: plugin/samples/integration/sample.py:63 +msgid "Numerical" +msgstr "" + +#: plugin/samples/integration/sample.py:64 +msgid "A numerical setting" +msgstr "" + +#: plugin/samples/integration/sample.py:69 +msgid "Choice Setting" +msgstr "" + +#: plugin/samples/integration/sample.py:70 +msgid "A setting with multiple choices" +msgstr "" + +#: plugin/samples/integration/sample_currency_exchange.py:15 +msgid "Sample currency exchange plugin" +msgstr "" + +#: plugin/samples/integration/sample_currency_exchange.py:18 +msgid "InvenTree Contributors" +msgstr "" + +#: plugin/serializers.py:81 +msgid "Source URL" +msgstr "" + +#: plugin/serializers.py:83 +msgid "Source for the package - this can be a custom registry or a VCS path" +msgstr "" + +#: plugin/serializers.py:92 +msgid "Name for the Plugin Package - can also contain a version indicator" +msgstr "" + +#: plugin/serializers.py:99 +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:86 +msgid "Version" +msgstr "" + +#: plugin/serializers.py:101 +msgid "Version specifier for the plugin. Leave blank for latest version." +msgstr "" + +#: plugin/serializers.py:106 +msgid "Confirm plugin installation" +msgstr "" + +#: plugin/serializers.py:108 +msgid "This will install this plugin now into the current instance. The instance will go into maintenance." +msgstr "" + +#: plugin/serializers.py:121 +msgid "Installation not confirmed" +msgstr "" + +#: plugin/serializers.py:123 +msgid "Either packagename of URL must be provided" +msgstr "" + +#: plugin/serializers.py:161 +msgid "Full reload" +msgstr "" + +#: plugin/serializers.py:162 +msgid "Perform a full reload of the plugin registry" +msgstr "" + +#: plugin/serializers.py:168 +msgid "Force reload" +msgstr "" + +#: plugin/serializers.py:170 +msgid "Force a reload of the plugin registry, even if it is already loaded" +msgstr "" + +#: plugin/serializers.py:177 +msgid "Collect plugins" +msgstr "" + +#: plugin/serializers.py:178 +msgid "Collect plugins and add them to the registry" +msgstr "" + +#: plugin/serializers.py:205 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:206 +msgid "Activate this plugin" +msgstr "" + +#: plugin/serializers.py:226 +msgid "Delete configuration" +msgstr "" + +#: plugin/serializers.py:227 +msgid "Delete the plugin configuration from the database" +msgstr "" + +#: report/api.py:88 +msgid "No valid objects provided to template" +msgstr "" + +#: report/api.py:103 report/models.py:439 report/serializers.py:98 +#: report/serializers.py:148 templates/js/translated/purchase_order.js:1747 +#: templates/js/translated/return_order.js:353 +#: templates/js/translated/sales_order.js:887 +#: templates/js/translated/sales_order.js:1047 +msgid "Items" +msgstr "" + +#: report/api.py:180 +msgid "Plugin not found" +msgstr "" + +#: report/api.py:182 +msgid "Plugin is not active" +msgstr "" + +#: report/api.py:184 +msgid "Plugin does not support label printing" +msgstr "" + +#: report/api.py:233 +msgid "Invalid label dimensions" +msgstr "" + +#: report/api.py:248 report/api.py:329 +msgid "No valid items provided to template" +msgstr "" + +#: report/api.py:283 +msgid "Error printing label" +msgstr "" + +#: report/api.py:375 report/api.py:411 +#, python-brace-format +msgid "Template file '{template}' is missing or does not exist" +msgstr "" + +#: report/helpers.py:43 +msgid "A4" +msgstr "" + +#: report/helpers.py:44 +msgid "A3" +msgstr "" + +#: report/helpers.py:45 +msgid "Legal" +msgstr "" + +#: report/helpers.py:46 +msgid "Letter" +msgstr "" + +#: report/models.py:119 +msgid "Template file with this name already exists" +msgstr "" + +#: report/models.py:151 +msgid "Template name" +msgstr "" + +#: report/models.py:157 +msgid "Template description" +msgstr "" + +#: report/models.py:163 +msgid "Revision number (auto-increments)" +msgstr "" + +#: report/models.py:203 +msgid "Filename Pattern" +msgstr "" + +#: report/models.py:204 +msgid "Pattern for generating filenames" +msgstr "" + +#: report/models.py:209 +msgid "Template is enabled" +msgstr "" + +#: report/models.py:215 +msgid "Target model type for template" +msgstr "" + +#: report/models.py:235 +msgid "Filters" +msgstr "" + +#: report/models.py:236 +msgid "Template query filters (comma-separated list of key=value pairs)" +msgstr "" + +#: report/models.py:295 report/models.py:362 +msgid "Template file" +msgstr "" + +#: report/models.py:303 +msgid "Page size for PDF reports" +msgstr "" + +#: report/models.py:309 +msgid "Render report in landscape orientation" +msgstr "" + +#: report/models.py:368 +msgid "Width [mm]" +msgstr "" + +#: report/models.py:369 +msgid "Label width, specified in mm" +msgstr "" + +#: report/models.py:375 +msgid "Height [mm]" +msgstr "" + +#: report/models.py:376 +msgid "Label height, specified in mm" +msgstr "" + +#: report/models.py:439 +msgid "Number of items to process" +msgstr "" + +#: report/models.py:445 +msgid "Report generation is complete" +msgstr "" + +#: report/models.py:449 templates/js/translated/build.js:2352 +msgid "Progress" +msgstr "" + +#: report/models.py:449 +msgid "Report generation progress" +msgstr "" + +#: report/models.py:457 +msgid "Report Template" +msgstr "" + +#: report/models.py:464 report/models.py:487 +msgid "Output File" +msgstr "" + +#: report/models.py:465 report/models.py:488 +msgid "Generated output file" +msgstr "" + +#: report/models.py:476 +msgid "Label output plugin" +msgstr "" + +#: report/models.py:480 +msgid "Label Template" +msgstr "" + +#: report/models.py:503 +msgid "Snippet" +msgstr "" + +#: report/models.py:504 +msgid "Report snippet file" +msgstr "" + +#: report/models.py:511 +msgid "Snippet file description" +msgstr "" + +#: report/models.py:529 +msgid "Asset" +msgstr "" + +#: report/models.py:530 +msgid "Report asset file" +msgstr "" + +#: report/models.py:537 +msgid "Asset file description" +msgstr "" + +#: report/serializers.py:91 +msgid "Select report template" +msgstr "" + +#: report/serializers.py:99 report/serializers.py:149 +msgid "List of item primary keys to include in the report" +msgstr "" + +#: report/serializers.py:132 +msgid "Select label template" +msgstr "" + +#: report/serializers.py:140 +msgid "Printing Plugin" +msgstr "" + +#: report/serializers.py:141 +msgid "Select plugin to use for label printing" +msgstr "" + +#: report/templates/label/part_label.html:31 +#: report/templates/label/stockitem_qr.html:21 +#: report/templates/label/stocklocation_qr.html:20 +#: templates/allauth_2fa/setup.html:18 +msgid "QR Code" +msgstr "" + +#: report/templates/label/part_label_code128.html:31 +#: report/templates/label/stocklocation_qr_and_text.html:31 +#: templates/qr_code.html:7 +msgid "QR code" +msgstr "" + +#: report/templates/report/inventree_bill_of_materials_report.html:133 +msgid "Materials needed" +msgstr "" + +#: report/templates/report/inventree_build_order_report.html:146 +msgid "Required For" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:15 +msgid "Supplier was deleted" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:30 +#: report/templates/report/inventree_sales_order_report.html:30 +#: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 +#: templates/js/translated/pricing.js:596 +#: templates/js/translated/pricing.js:834 +#: templates/js/translated/purchase_order.js:2115 +#: templates/js/translated/sales_order.js:1873 +msgid "Unit Price" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:55 +#: report/templates/report/inventree_return_order_report.html:48 +#: report/templates/report/inventree_sales_order_report.html:55 +msgid "Extra Line Items" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:72 +#: report/templates/report/inventree_sales_order_report.html:72 +#: templates/js/translated/purchase_order.js:2017 +#: templates/js/translated/sales_order.js:1842 +msgid "Total" +msgstr "" + +#: report/templates/report/inventree_return_order_report.html:25 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 +#: templates/js/translated/build.js:520 templates/js/translated/build.js:1542 +#: templates/js/translated/build.js:2530 +#: templates/js/translated/model_renderers.js:230 +#: templates/js/translated/return_order.js:539 +#: templates/js/translated/return_order.js:723 +#: templates/js/translated/sales_order.js:315 +#: templates/js/translated/sales_order.js:1647 +#: templates/js/translated/sales_order.js:1732 +#: templates/js/translated/stock.js:596 +msgid "Serial Number" +msgstr "" + +#: report/templates/report/inventree_stock_location_report.html:97 +msgid "Stock location items" +msgstr "" + +#: report/templates/report/inventree_test_report.html:21 +msgid "Stock Item Test Report" +msgstr "" + +#: report/templates/report/inventree_test_report.html:97 +msgid "Test Results" +msgstr "" + +#: report/templates/report/inventree_test_report.html:102 +#: templates/js/translated/stock.js:1495 +msgid "Test" +msgstr "" + +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 +msgid "Result" +msgstr "" + +#: report/templates/report/inventree_test_report.html:129 +msgid "Pass" +msgstr "" + +#: report/templates/report/inventree_test_report.html:131 +msgid "Fail" +msgstr "" + +#: report/templates/report/inventree_test_report.html:138 +msgid "No result (required)" +msgstr "" + +#: report/templates/report/inventree_test_report.html:140 +msgid "No result" +msgstr "" + +#: report/templates/report/inventree_test_report.html:153 +#: stock/serializers.py:595 stock/templates/stock/stock_sidebar.html:16 +msgid "Installed Items" +msgstr "" + +#: report/templates/report/inventree_test_report.html:167 stock/admin.py:161 +#: templates/js/translated/stock.js:700 templates/js/translated/stock.js:871 +#: templates/js/translated/stock.js:3110 +msgid "Serial" +msgstr "" + +#: report/templatetags/report.py:96 +msgid "Asset file does not exist" +msgstr "" + +#: report/templatetags/report.py:152 report/templatetags/report.py:217 +msgid "Image file not found" +msgstr "" + +#: report/templatetags/report.py:242 +msgid "part_image tag requires a Part instance" +msgstr "" + +#: report/templatetags/report.py:283 +msgid "company_image tag requires a Company instance" +msgstr "" + +#: stock/admin.py:51 stock/admin.py:171 +msgid "Location ID" +msgstr "" + +#: stock/admin.py:63 stock/templates/stock/location.html:131 +#: stock/templates/stock/location.html:137 +msgid "Location Path" +msgstr "" + +#: stock/admin.py:148 +msgid "Stock Item ID" +msgstr "" + +#: stock/admin.py:167 +msgid "Status Code" +msgstr "" + +#: stock/admin.py:179 +msgid "Supplier Part ID" +msgstr "" + +#: stock/admin.py:184 +msgid "Supplier Part SKU" +msgstr "" + +#: stock/admin.py:189 +msgid "Supplier ID" +msgstr "" + +#: stock/admin.py:195 +msgid "Supplier Name" +msgstr "" + +#: stock/admin.py:200 +msgid "Customer ID" +msgstr "" + +#: stock/admin.py:205 stock/models.py:805 +#: stock/templates/stock/item_base.html:354 +msgid "Installed In" +msgstr "" + +#: stock/admin.py:210 +msgid "Build ID" +msgstr "" + +#: stock/admin.py:220 +msgid "Sales Order ID" +msgstr "" + +#: stock/admin.py:225 +msgid "Purchase Order ID" +msgstr "" + +#: stock/admin.py:240 +msgid "Review Needed" +msgstr "" + +#: stock/admin.py:245 +msgid "Delete on Deplete" +msgstr "" + +#: stock/admin.py:260 stock/models.py:899 +#: stock/templates/stock/item_base.html:433 +#: templates/js/translated/stock.js:2230 users/models.py:124 +msgid "Expiry Date" +msgstr "" + +#: stock/api.py:312 +msgid "Filter by location depth" +msgstr "" + +#: stock/api.py:332 +msgid "Filter by top-level locations" +msgstr "" + +#: stock/api.py:347 +msgid "Include sub-locations in filtered results" +msgstr "" + +#: stock/api.py:369 stock/serializers.py:1152 +msgid "Parent Location" +msgstr "" + +#: stock/api.py:370 +msgid "Filter by parent location" +msgstr "" + +#: stock/api.py:617 templates/js/translated/table_filters.js:427 +msgid "External Location" +msgstr "" + +#: stock/api.py:805 +msgid "Part Tree" +msgstr "" + +#: stock/api.py:835 +msgid "Expiry date before" +msgstr "" + +#: stock/api.py:839 +msgid "Expiry date after" +msgstr "" + +#: stock/api.py:842 stock/serializers.py:600 +#: stock/templates/stock/item_base.html:439 +#: templates/js/translated/table_filters.js:441 +msgid "Stale" +msgstr "" + +#: stock/api.py:929 +msgid "Quantity is required" +msgstr "" + +#: stock/api.py:935 +msgid "Valid part must be supplied" +msgstr "" + +#: stock/api.py:966 +msgid "The given supplier part does not exist" +msgstr "" + +#: stock/api.py:976 +msgid "The supplier part has a pack size defined, but flag use_pack_size not set" +msgstr "" + +#: stock/api.py:1007 +msgid "Serial numbers cannot be supplied for a non-trackable part" +msgstr "" + +#: stock/models.py:61 +msgid "Stock Location type" +msgstr "" + +#: stock/models.py:62 +msgid "Stock Location types" +msgstr "" + +#: stock/models.py:88 +msgid "Default icon for all locations that have no icon set (optional)" +msgstr "" + +#: stock/models.py:125 stock/models.py:787 +#: stock/templates/stock/location.html:17 +#: stock/templates/stock/stock_app_base.html:8 +msgid "Stock Location" +msgstr "" + +#: stock/models.py:126 stock/templates/stock/location.html:186 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 +#: users/models.py:205 +msgid "Stock Locations" +msgstr "" + +#: stock/models.py:168 stock/models.py:948 +#: stock/templates/stock/item_base.html:247 +msgid "Owner" +msgstr "" + +#: stock/models.py:169 stock/models.py:949 +msgid "Select Owner" +msgstr "" + +#: stock/models.py:177 +msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." +msgstr "" + +#: stock/models.py:184 templates/js/translated/stock.js:2781 +#: templates/js/translated/table_filters.js:243 +msgid "External" +msgstr "" + +#: stock/models.py:185 +msgid "This is an external stock location" +msgstr "" + +#: stock/models.py:191 templates/js/translated/stock.js:2790 +#: templates/js/translated/table_filters.js:246 +msgid "Location type" +msgstr "" + +#: stock/models.py:195 +msgid "Stock location type of this location" +msgstr "" + +#: stock/models.py:262 +msgid "You cannot make this stock location structural because some stock items are already located into it!" +msgstr "" + +#: stock/models.py:642 +msgid "Stock items cannot be located into structural stock locations!" +msgstr "" + +#: stock/models.py:669 stock/serializers.py:479 +msgid "Stock item cannot be created for virtual parts" +msgstr "" + +#: stock/models.py:686 +#, python-brace-format +msgid "Part type ('{self.supplier_part.part}') must be {self.part}" +msgstr "" + +#: stock/models.py:696 stock/models.py:709 +msgid "Quantity must be 1 for item with a serial number" +msgstr "" + +#: stock/models.py:699 +msgid "Serial number cannot be set if quantity greater than 1" +msgstr "" + +#: stock/models.py:723 +msgid "Item cannot belong to itself" +msgstr "" + +#: stock/models.py:728 +msgid "Item must have a build reference if is_building=True" +msgstr "" + +#: stock/models.py:741 +msgid "Build reference does not point to the same part object" +msgstr "" + +#: stock/models.py:757 +msgid "Parent Stock Item" +msgstr "" + +#: stock/models.py:769 +msgid "Base part" +msgstr "" + +#: stock/models.py:779 +msgid "Select a matching supplier part for this stock item" +msgstr "" + +#: stock/models.py:791 +msgid "Where is this stock item located?" +msgstr "" + +#: stock/models.py:799 stock/serializers.py:1546 +msgid "Packaging this stock item is stored in" +msgstr "" + +#: stock/models.py:810 +msgid "Is this item installed in another item?" +msgstr "" + +#: stock/models.py:829 +msgid "Serial number for this item" +msgstr "" + +#: stock/models.py:843 stock/serializers.py:1529 +msgid "Batch code for this stock item" +msgstr "" + +#: stock/models.py:848 +msgid "Stock Quantity" +msgstr "" + +#: stock/models.py:858 +msgid "Source Build" +msgstr "" + +#: stock/models.py:861 +msgid "Build for this stock item" +msgstr "" + +#: stock/models.py:868 stock/templates/stock/item_base.html:363 +msgid "Consumed By" +msgstr "" + +#: stock/models.py:871 +msgid "Build order which consumed this stock item" +msgstr "" + +#: stock/models.py:880 +msgid "Source Purchase Order" +msgstr "" + +#: stock/models.py:884 +msgid "Purchase order for this stock item" +msgstr "" + +#: stock/models.py:890 +msgid "Destination Sales Order" +msgstr "" + +#: stock/models.py:901 +msgid "Expiry date for stock item. Stock will be considered expired after this date" +msgstr "" + +#: stock/models.py:919 +msgid "Delete on deplete" +msgstr "" + +#: stock/models.py:920 +msgid "Delete this Stock Item when stock is depleted" +msgstr "" + +#: stock/models.py:940 +msgid "Single unit purchase price at time of purchase" +msgstr "" + +#: stock/models.py:971 +msgid "Converted to part" +msgstr "" + +#: stock/models.py:1487 +msgid "Part is not set as trackable" +msgstr "" + +#: stock/models.py:1493 +msgid "Quantity must be integer" +msgstr "" + +#: stock/models.py:1501 +#, python-brace-format +msgid "Quantity must not exceed available stock quantity ({self.quantity})" +msgstr "" + +#: stock/models.py:1507 +msgid "Serial numbers must be a list of integers" +msgstr "" + +#: stock/models.py:1512 +msgid "Quantity does not match serial numbers" +msgstr "" + +#: stock/models.py:1520 stock/serializers.py:722 +msgid "Serial numbers already exist" +msgstr "" + +#: stock/models.py:1617 +msgid "Test template does not exist" +msgstr "" + +#: stock/models.py:1635 +msgid "Stock item has been assigned to a sales order" +msgstr "" + +#: stock/models.py:1639 +msgid "Stock item is installed in another item" +msgstr "" + +#: stock/models.py:1642 +msgid "Stock item contains other items" +msgstr "" + +#: stock/models.py:1645 +msgid "Stock item has been assigned to a customer" +msgstr "" + +#: stock/models.py:1648 +msgid "Stock item is currently in production" +msgstr "" + +#: stock/models.py:1651 +msgid "Serialized stock cannot be merged" +msgstr "" + +#: stock/models.py:1658 stock/serializers.py:1435 +msgid "Duplicate stock items" +msgstr "" + +#: stock/models.py:1662 +msgid "Stock items must refer to the same part" +msgstr "" + +#: stock/models.py:1670 +msgid "Stock items must refer to the same supplier part" +msgstr "" + +#: stock/models.py:1675 +msgid "Stock status codes must match" +msgstr "" + +#: stock/models.py:1936 +msgid "StockItem cannot be moved as it is not in stock" +msgstr "" + +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 +msgid "Entry notes" +msgstr "" + +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 +msgid "Value must be provided for this test" +msgstr "" + +#: stock/models.py:2428 +msgid "Attachment must be uploaded for this test" +msgstr "" + +#: stock/models.py:2433 +msgid "Invalid value for this test" +msgstr "" + +#: stock/models.py:2457 +msgid "Test result" +msgstr "" + +#: stock/models.py:2464 +msgid "Test output value" +msgstr "" + +#: stock/models.py:2472 +msgid "Test result attachment" +msgstr "" + +#: stock/models.py:2476 +msgid "Test notes" +msgstr "" + +#: stock/models.py:2484 templates/js/translated/stock.js:1548 +msgid "Test station" +msgstr "" + +#: stock/models.py:2485 +msgid "The identifier of the test station where the test was performed" +msgstr "" + +#: stock/models.py:2491 +msgid "Started" +msgstr "" + +#: stock/models.py:2492 +msgid "The timestamp of the test start" +msgstr "" + +#: stock/models.py:2498 +msgid "Finished" +msgstr "" + +#: stock/models.py:2499 +msgid "The timestamp of the test finish" +msgstr "" + +#: stock/serializers.py:76 +msgid "Generated batch code" +msgstr "" + +#: stock/serializers.py:85 +msgid "Select build order" +msgstr "" + +#: stock/serializers.py:94 +msgid "Select stock item to generate batch code for" +msgstr "" + +#: stock/serializers.py:103 +msgid "Select location to generate batch code for" +msgstr "" + +#: stock/serializers.py:112 +msgid "Select part to generate batch code for" +msgstr "" + +#: stock/serializers.py:121 +msgid "Select purchase order" +msgstr "" + +#: stock/serializers.py:128 +msgid "Enter quantity for batch code" +msgstr "" + +#: stock/serializers.py:151 +msgid "Generated serial number" +msgstr "" + +#: stock/serializers.py:160 +msgid "Select part to generate serial number for" +msgstr "" + +#: stock/serializers.py:168 +msgid "Quantity of serial numbers to generate" +msgstr "" + +#: stock/serializers.py:233 +msgid "Test template for this result" +msgstr "" + +#: stock/serializers.py:254 +msgid "Template ID or test name must be provided" +msgstr "" + +#: stock/serializers.py:286 +msgid "The test finished time cannot be earlier than the test started time" +msgstr "" + +#: stock/serializers.py:322 +msgid "Serial number is too large" +msgstr "" + +#: stock/serializers.py:451 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:452 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:471 +msgid "Use pack size when adding: the quantity defined is the number of packs" +msgstr "" + +#: stock/serializers.py:592 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:598 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:602 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:608 +msgid "Purchase price of this stock item, per unit or pack" +msgstr "" + +#: stock/serializers.py:627 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:633 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:657 +msgid "Enter number of stock items to serialize" +msgstr "" + +#: stock/serializers.py:670 +#, python-brace-format +msgid "Quantity must not exceed available stock quantity ({q})" +msgstr "" + +#: stock/serializers.py:677 +msgid "Enter serial numbers for new items" +msgstr "" + +#: stock/serializers.py:688 stock/serializers.py:1392 stock/serializers.py:1648 +msgid "Destination stock location" +msgstr "" + +#: stock/serializers.py:695 +msgid "Optional note field" +msgstr "" + +#: stock/serializers.py:705 +msgid "Serial numbers cannot be assigned to this part" +msgstr "" + +#: stock/serializers.py:760 +msgid "Select stock item to install" +msgstr "" + +#: stock/serializers.py:767 +msgid "Quantity to Install" +msgstr "" + +#: stock/serializers.py:768 +msgid "Enter the quantity of items to install" +msgstr "" + +#: stock/serializers.py:773 stock/serializers.py:853 stock/serializers.py:949 +#: stock/serializers.py:999 +msgid "Add transaction note (optional)" +msgstr "" + +#: stock/serializers.py:781 +msgid "Quantity to install must be at least 1" +msgstr "" + +#: stock/serializers.py:789 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:800 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:813 +msgid "Quantity to install must not exceed available quantity" +msgstr "" + +#: stock/serializers.py:848 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:883 +msgid "Select part to convert stock item into" +msgstr "" + +#: stock/serializers.py:896 +msgid "Selected part is not a valid option for conversion" +msgstr "" + +#: stock/serializers.py:913 +msgid "Cannot convert stock item with assigned SupplierPart" +msgstr "" + +#: stock/serializers.py:944 +msgid "Destination location for returned item" +msgstr "" + +#: stock/serializers.py:981 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:987 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:1083 stock/serializers.py:1160 +#: stock/templates/stock/location.html:165 +#: stock/templates/stock/location.html:222 +#: stock/templates/stock/location_sidebar.html:5 +msgid "Sublocations" +msgstr "" + +#: stock/serializers.py:1153 templates/js/translated/stock.js:152 +msgid "Parent stock location" +msgstr "" + +#: stock/serializers.py:1264 +msgid "Part must be salable" +msgstr "" + +#: stock/serializers.py:1268 +msgid "Item is allocated to a sales order" +msgstr "" + +#: stock/serializers.py:1272 +msgid "Item is allocated to a build order" +msgstr "" + +#: stock/serializers.py:1296 +msgid "Customer to assign stock items" +msgstr "" + +#: stock/serializers.py:1302 +msgid "Selected company is not a customer" +msgstr "" + +#: stock/serializers.py:1310 +msgid "Stock assignment notes" +msgstr "" + +#: stock/serializers.py:1320 stock/serializers.py:1574 +msgid "A list of stock items must be provided" +msgstr "" + +#: stock/serializers.py:1399 +msgid "Stock merging notes" +msgstr "" + +#: stock/serializers.py:1404 +msgid "Allow mismatched suppliers" +msgstr "" + +#: stock/serializers.py:1405 +msgid "Allow stock items with different supplier parts to be merged" +msgstr "" + +#: stock/serializers.py:1410 +msgid "Allow mismatched status" +msgstr "" + +#: stock/serializers.py:1411 +msgid "Allow stock items with different status codes to be merged" +msgstr "" + +#: stock/serializers.py:1421 +msgid "At least two stock items must be provided" +msgstr "" + +#: stock/serializers.py:1488 +msgid "No Change" +msgstr "" + +#: stock/serializers.py:1517 +msgid "StockItem primary key value" +msgstr "" + +#: stock/serializers.py:1536 +msgid "Stock item status code" +msgstr "" + +#: stock/serializers.py:1564 +msgid "Stock transaction notes" +msgstr "" + +#: stock/status_codes.py:11 +msgid "OK" +msgstr "" + +#: stock/status_codes.py:12 +msgid "Attention needed" +msgstr "" + +#: stock/status_codes.py:13 +msgid "Damaged" +msgstr "" + +#: stock/status_codes.py:14 +msgid "Destroyed" +msgstr "" + +#: stock/status_codes.py:15 +msgid "Rejected" +msgstr "" + +#: stock/status_codes.py:19 +msgid "Quarantined" +msgstr "" + +#: stock/status_codes.py:40 +msgid "Legacy stock tracking entry" +msgstr "" + +#: stock/status_codes.py:42 templates/js/translated/stock.js:544 +msgid "Stock item created" +msgstr "" + +#: stock/status_codes.py:45 +msgid "Edited stock item" +msgstr "" + +#: stock/status_codes.py:46 +msgid "Assigned serial number" +msgstr "" + +#: stock/status_codes.py:49 +msgid "Stock counted" +msgstr "" + +#: stock/status_codes.py:50 +msgid "Stock manually added" +msgstr "" + +#: stock/status_codes.py:51 +msgid "Stock manually removed" +msgstr "" + +#: stock/status_codes.py:54 +msgid "Location changed" +msgstr "" + +#: stock/status_codes.py:55 +msgid "Stock updated" +msgstr "" + +#: stock/status_codes.py:58 +msgid "Installed into assembly" +msgstr "" + +#: stock/status_codes.py:59 +msgid "Removed from assembly" +msgstr "" + +#: stock/status_codes.py:61 +msgid "Installed component item" +msgstr "" + +#: stock/status_codes.py:62 +msgid "Removed component item" +msgstr "" + +#: stock/status_codes.py:65 +msgid "Split from parent item" +msgstr "" + +#: stock/status_codes.py:66 +msgid "Split child item" +msgstr "" + +#: stock/status_codes.py:69 templates/js/translated/stock.js:1858 +msgid "Merged stock items" +msgstr "" + +#: stock/status_codes.py:72 +msgid "Converted to variant" +msgstr "" + +#: stock/status_codes.py:75 +msgid "Build order output created" +msgstr "" + +#: stock/status_codes.py:76 +msgid "Build order output completed" +msgstr "" + +#: stock/status_codes.py:77 +msgid "Build order output rejected" +msgstr "" + +#: stock/status_codes.py:78 templates/js/translated/stock.js:1764 +msgid "Consumed by build order" +msgstr "" + +#: stock/status_codes.py:81 +msgid "Shipped against Sales Order" +msgstr "" + +#: stock/status_codes.py:84 +msgid "Received against Purchase Order" +msgstr "" + +#: stock/status_codes.py:87 +msgid "Returned against Return Order" +msgstr "" + +#: stock/status_codes.py:90 templates/js/translated/table_filters.js:375 +msgid "Sent to customer" +msgstr "" + +#: stock/status_codes.py:91 +msgid "Returned from customer" +msgstr "" + +#: stock/templates/stock/item.html:17 +msgid "Stock Tracking Information" +msgstr "" + +#: stock/templates/stock/item.html:63 +msgid "Child Stock Items" +msgstr "" + +#: stock/templates/stock/item.html:72 +msgid "This stock item does not have any child items" +msgstr "" + +#: stock/templates/stock/item.html:81 +#: stock/templates/stock/stock_sidebar.html:12 +msgid "Test Data" +msgstr "" + +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:65 +msgid "Test Report" +msgstr "" + +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:276 +msgid "Delete Test Data" +msgstr "" + +#: stock/templates/stock/item.html:93 +msgid "Add Test Data" +msgstr "" + +#: stock/templates/stock/item.html:125 +msgid "Stock Item Notes" +msgstr "" + +#: stock/templates/stock/item.html:140 +msgid "Installed Stock Items" +msgstr "" + +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3271 +msgid "Install Stock Item" +msgstr "" + +#: stock/templates/stock/item.html:264 +msgid "Delete all test results for this stock item" +msgstr "" + +#: stock/templates/stock/item.html:294 templates/js/translated/stock.js:1701 +msgid "Add Test Result" +msgstr "" + +#: stock/templates/stock/item_base.html:33 +msgid "Locate stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:51 +msgid "Scan to Location" +msgstr "" + +#: stock/templates/stock/item_base.html:59 +#: stock/templates/stock/location.html:70 +#: templates/js/translated/filters.js:431 +msgid "Printing actions" +msgstr "" + +#: stock/templates/stock/item_base.html:75 +msgid "Stock adjustment actions" +msgstr "" + +#: stock/templates/stock/item_base.html:79 +#: stock/templates/stock/location.html:90 templates/js/translated/stock.js:1824 +msgid "Count stock" +msgstr "" + +#: stock/templates/stock/item_base.html:81 +#: templates/js/translated/stock.js:1806 +msgid "Add stock" +msgstr "" + +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1815 +msgid "Remove stock" +msgstr "" + +#: stock/templates/stock/item_base.html:85 +msgid "Serialize stock" +msgstr "" + +#: stock/templates/stock/item_base.html:88 +#: stock/templates/stock/location.html:96 templates/js/translated/stock.js:1833 +msgid "Transfer stock" +msgstr "" + +#: stock/templates/stock/item_base.html:91 +#: templates/js/translated/stock.js:1887 +msgid "Assign to customer" +msgstr "" + +#: stock/templates/stock/item_base.html:94 +msgid "Return to stock" +msgstr "" + +#: stock/templates/stock/item_base.html:97 +msgid "Uninstall stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:97 +msgid "Uninstall" +msgstr "" + +#: stock/templates/stock/item_base.html:101 +msgid "Install stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:101 +msgid "Install" +msgstr "" + +#: stock/templates/stock/item_base.html:115 +msgid "Convert to variant" +msgstr "" + +#: stock/templates/stock/item_base.html:118 +msgid "Duplicate stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:120 +msgid "Edit stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:123 +msgid "Delete stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:169 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2298 templates/navbar.html:38 +msgid "Build" +msgstr "" + +#: stock/templates/stock/item_base.html:211 +msgid "No manufacturer set" +msgstr "" + +#: stock/templates/stock/item_base.html:251 +msgid "You are not in the list of owners of this item. This stock item cannot be edited." +msgstr "" + +#: stock/templates/stock/item_base.html:252 +#: stock/templates/stock/location.html:149 +msgid "Read only" +msgstr "" + +#: stock/templates/stock/item_base.html:265 +msgid "This stock item is unavailable" +msgstr "" + +#: stock/templates/stock/item_base.html:271 +msgid "This stock item is in production and cannot be edited." +msgstr "" + +#: stock/templates/stock/item_base.html:272 +msgid "Edit the stock item from the build view." +msgstr "" + +#: stock/templates/stock/item_base.html:287 +msgid "This stock item is allocated to Sales Order" +msgstr "" + +#: stock/templates/stock/item_base.html:295 +msgid "This stock item is allocated to Build Order" +msgstr "" + +#: stock/templates/stock/item_base.html:311 +msgid "This stock item is serialized. It has a unique serial number and the quantity cannot be adjusted" +msgstr "" + +#: stock/templates/stock/item_base.html:317 +msgid "previous page" +msgstr "" + +#: stock/templates/stock/item_base.html:317 +msgid "Navigate to previous serial number" +msgstr "" + +#: stock/templates/stock/item_base.html:326 +msgid "next page" +msgstr "" + +#: stock/templates/stock/item_base.html:326 +msgid "Navigate to next serial number" +msgstr "" + +#: stock/templates/stock/item_base.html:398 +#: templates/js/translated/build.js:2555 +msgid "No location set" +msgstr "" + +#: stock/templates/stock/item_base.html:413 +msgid "Tests" +msgstr "" + +#: stock/templates/stock/item_base.html:419 +msgid "This stock item has not passed all required tests" +msgstr "" + +#: stock/templates/stock/item_base.html:437 +#, python-format +msgid "This StockItem expired on %(item.expiry_date)s" +msgstr "" + +#: stock/templates/stock/item_base.html:439 +#, python-format +msgid "This StockItem expires on %(item.expiry_date)s" +msgstr "" + +#: stock/templates/stock/item_base.html:455 +msgid "No stocktake performed" +msgstr "" + +#: stock/templates/stock/item_base.html:504 +#: templates/js/translated/stock.js:1952 +msgid "stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:527 +msgid "Edit Stock Status" +msgstr "" + +#: stock/templates/stock/item_base.html:536 +msgid "Stock Item QR Code" +msgstr "" + +#: stock/templates/stock/item_base.html:547 +msgid "Link Barcode to Stock Item" +msgstr "" + +#: stock/templates/stock/item_base.html:611 +msgid "Select one of the part variants listed below." +msgstr "" + +#: stock/templates/stock/item_base.html:614 +msgid "Warning" +msgstr "" + +#: stock/templates/stock/item_base.html:615 +msgid "This action cannot be easily undone" +msgstr "" + +#: stock/templates/stock/item_base.html:623 +msgid "Convert Stock Item" +msgstr "" + +#: stock/templates/stock/item_base.html:657 +msgid "Return to Stock" +msgstr "" + +#: stock/templates/stock/item_serialize.html:5 +msgid "Create serialized items from this stock item." +msgstr "" + +#: stock/templates/stock/item_serialize.html:7 +msgid "Select quantity to serialize, and unique serial numbers." +msgstr "" + +#: stock/templates/stock/location.html:38 +msgid "Perform stocktake for this stock location" +msgstr "" + +#: stock/templates/stock/location.html:45 +msgid "Locate stock location" +msgstr "" + +#: stock/templates/stock/location.html:63 +msgid "Scan stock items into this location" +msgstr "" + +#: stock/templates/stock/location.html:63 +msgid "Scan In Stock Items" +msgstr "" + +#: stock/templates/stock/location.html:64 +msgid "Scan stock container into this location" +msgstr "" + +#: stock/templates/stock/location.html:64 +msgid "Scan In Container" +msgstr "" + +#: stock/templates/stock/location.html:75 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:104 +msgid "Location actions" +msgstr "" + +#: stock/templates/stock/location.html:106 +msgid "Edit location" +msgstr "" + +#: stock/templates/stock/location.html:108 +msgid "Delete location" +msgstr "" + +#: stock/templates/stock/location.html:138 +msgid "Top level stock location" +msgstr "" + +#: stock/templates/stock/location.html:144 +msgid "Location Owner" +msgstr "" + +#: stock/templates/stock/location.html:148 +msgid "You are not in the list of owners of this location. This stock location cannot be edited." +msgstr "" + +#: stock/templates/stock/location.html:176 +msgid "Location Type" +msgstr "" + +#: stock/templates/stock/location.html:226 +msgid "Create new stock location" +msgstr "" + +#: stock/templates/stock/location.html:227 +msgid "New Location" +msgstr "" + +#: stock/templates/stock/location.html:299 +#: templates/js/translated/stock.js:2572 +msgid "stock location" +msgstr "" + +#: stock/templates/stock/location.html:321 +msgid "Scanned stock container into this location" +msgstr "" + +#: stock/templates/stock/location.html:394 +msgid "Stock Location QR Code" +msgstr "" + +#: stock/templates/stock/location.html:405 +msgid "Link Barcode to Stock Location" +msgstr "" + +#: stock/templates/stock/stock_app_base.html:16 +msgid "Loading..." +msgstr "" + +#: stock/templates/stock/stock_sidebar.html:5 +msgid "Stock Tracking" +msgstr "" + +#: stock/templates/stock/stock_sidebar.html:8 +msgid "Allocations" +msgstr "" + +#: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 +msgid "Permission Denied" +msgstr "" + +#: templates/403.html:15 +msgid "You do not have permission to view this page." +msgstr "" + +#: templates/403_csrf.html:11 +msgid "Authentication Failure" +msgstr "" + +#: templates/403_csrf.html:14 +msgid "You have been logged out from InvenTree." +msgstr "" + +#: templates/403_csrf.html:19 templates/InvenTree/settings/sidebar.html:29 +#: templates/navbar.html:150 +msgid "Login" +msgstr "" + +#: templates/404.html:6 templates/404.html:12 +msgid "Page Not Found" +msgstr "" + +#: templates/404.html:15 +msgid "The requested page does not exist" +msgstr "" + +#: templates/500.html:6 templates/500.html:12 +msgid "Internal Server Error" +msgstr "" + +#: templates/500.html:15 +#, python-format +msgid "The %(inventree_title)s server raised an internal error" +msgstr "" + +#: templates/500.html:16 +msgid "Refer to the error log in the admin interface for further details" +msgstr "" + +#: templates/503.html:11 templates/503.html:33 +msgid "Site is in Maintenance" +msgstr "" + +#: templates/503.html:39 +msgid "The site is currently in maintenance and should be up again soon!" +msgstr "" + +#: templates/InvenTree/index.html:7 +msgid "Index" +msgstr "" + +#: templates/InvenTree/index.html:39 +msgid "Subscribed Parts" +msgstr "" + +#: templates/InvenTree/index.html:52 +msgid "Subscribed Categories" +msgstr "" + +#: templates/InvenTree/index.html:62 +msgid "Latest Parts" +msgstr "" + +#: templates/InvenTree/index.html:77 +msgid "BOM Waiting Validation" +msgstr "" + +#: templates/InvenTree/index.html:106 +msgid "Recently Updated" +msgstr "" + +#: templates/InvenTree/index.html:134 +msgid "Depleted Stock" +msgstr "" + +#: templates/InvenTree/index.html:148 +msgid "Required for Build Orders" +msgstr "" + +#: templates/InvenTree/index.html:156 +msgid "Expired Stock" +msgstr "" + +#: templates/InvenTree/index.html:172 +msgid "Stale Stock" +msgstr "" + +#: templates/InvenTree/index.html:199 +msgid "Build Orders In Progress" +msgstr "" + +#: templates/InvenTree/index.html:210 +msgid "Overdue Build Orders" +msgstr "" + +#: templates/InvenTree/index.html:230 +msgid "Outstanding Purchase Orders" +msgstr "" + +#: templates/InvenTree/index.html:241 +msgid "Overdue Purchase Orders" +msgstr "" + +#: templates/InvenTree/index.html:262 +msgid "Outstanding Sales Orders" +msgstr "" + +#: templates/InvenTree/index.html:273 +msgid "Overdue Sales Orders" +msgstr "" + +#: templates/InvenTree/index.html:299 +msgid "InvenTree News" +msgstr "" + +#: templates/InvenTree/index.html:301 +msgid "Current News" +msgstr "" + +#: templates/InvenTree/notifications/history.html:9 +msgid "Notification History" +msgstr "" + +#: templates/InvenTree/notifications/history.html:13 +#: templates/InvenTree/notifications/history.html:14 +#: templates/InvenTree/notifications/notifications.html:75 +msgid "Delete Notifications" +msgstr "" + +#: templates/InvenTree/notifications/inbox.html:9 +msgid "Pending Notifications" +msgstr "" + +#: templates/InvenTree/notifications/inbox.html:13 +#: templates/InvenTree/notifications/inbox.html:14 +msgid "Mark all as read" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:10 +#: templates/InvenTree/notifications/sidebar.html:5 +#: templates/InvenTree/settings/sidebar.html:17 +#: templates/InvenTree/settings/sidebar.html:37 templates/notifications.html:5 +msgid "Notifications" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:38 +msgid "No unread notifications found" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:58 +msgid "No notification history found" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:65 +msgid "Delete all read notifications" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:89 +#: templates/js/translated/notification.js:85 +msgid "Delete Notification" +msgstr "" + +#: templates/InvenTree/notifications/sidebar.html:8 +msgid "Inbox" +msgstr "" + +#: templates/InvenTree/notifications/sidebar.html:10 +msgid "History" +msgstr "" + +#: templates/InvenTree/search.html:8 +msgid "Search Results" +msgstr "" + +#: templates/InvenTree/settings/barcode.html:8 +msgid "Barcode Settings" +msgstr "" + +#: templates/InvenTree/settings/build.html:8 +msgid "Build Order Settings" +msgstr "" + +#: templates/InvenTree/settings/category.html:7 +msgid "Category Settings" +msgstr "" + +#: templates/InvenTree/settings/global.html:8 +msgid "Server Settings" +msgstr "" + +#: templates/InvenTree/settings/label.html:8 +#: templates/InvenTree/settings/user_labels.html:9 +msgid "Label Settings" +msgstr "" + +#: templates/InvenTree/settings/login.html:8 +msgid "Login Settings" +msgstr "" + +#: templates/InvenTree/settings/login.html:15 +msgid "Outgoing email has not been configured. Some login and sign-up features may not work correctly!" +msgstr "" + +#: templates/InvenTree/settings/login.html:27 templates/account/signup.html:5 +#: templates/socialaccount/signup.html:5 +msgid "Signup" +msgstr "" + +#: templates/InvenTree/settings/login.html:36 +msgid "Single Sign On" +msgstr "" + +#: templates/InvenTree/settings/mixins/settings.html:5 +#: templates/InvenTree/settings/settings.html:12 templates/navbar.html:147 +msgid "Settings" +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:5 +msgid "URLs" +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:8 +#, python-format +msgid "The Base-URL for this plugin is %(base)s." +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:14 +msgid "URL" +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:23 +msgid "Open in new tab" +msgstr "" + +#: templates/InvenTree/settings/notifications.html:9 +#: templates/InvenTree/settings/user_notifications.html:9 +msgid "Notification Settings" +msgstr "" + +#: templates/InvenTree/settings/notifications.html:18 +msgid "Slug" +msgstr "" + +#: templates/InvenTree/settings/part.html:7 +msgid "Part Settings" +msgstr "" + +#: templates/InvenTree/settings/part.html:43 +msgid "Part Import" +msgstr "" + +#: templates/InvenTree/settings/part.html:47 +msgid "Import Part" +msgstr "" + +#: templates/InvenTree/settings/part_parameters.html:20 +msgid "Part Parameter Templates" +msgstr "" + +#: templates/InvenTree/settings/part_stocktake.html:7 +msgid "Stocktake Settings" +msgstr "" + +#: templates/InvenTree/settings/part_stocktake.html:25 +msgid "Stocktake Reports" +msgstr "" + +#: templates/InvenTree/settings/physical_units.html:8 +#: templates/InvenTree/settings/sidebar.html:35 +msgid "Physical Units" +msgstr "" + +#: templates/InvenTree/settings/physical_units.html:12 +msgid "Add Unit" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:9 +#: templates/InvenTree/settings/sidebar.html:64 +msgid "Plugin Settings" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:15 +msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." +msgstr "" + +#: templates/InvenTree/settings/plugin.html:38 +#: templates/InvenTree/settings/sidebar.html:66 +msgid "Plugins" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:44 +#: templates/InvenTree/settings/plugin.html:45 +#: templates/js/translated/plugin.js:151 +msgid "Install Plugin" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:47 +#: templates/InvenTree/settings/plugin.html:48 +#: templates/js/translated/plugin.js:224 +msgid "Reload Plugins" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:58 +msgid "External plugins are not enabled for this InvenTree installation" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:73 +msgid "Plugin Error Stack" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:82 +msgid "Stage" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:84 +#: templates/js/translated/notification.js:76 +msgid "Message" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:16 +msgid "Plugin information" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:47 +msgid "no version information supplied" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:61 +msgid "License" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:70 +msgid "The code information is pulled from the latest git commit for this plugin. It might not reflect official version numbers or information but the actual code running." +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:76 +msgid "Package information" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:82 +msgid "Installation method" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:85 +msgid "This plugin was installed as a package" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:87 +msgid "This plugin was found in a local server path" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:93 +msgid "Installation path" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:68 +#: templates/js/translated/table_filters.js:496 +msgid "Builtin" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:101 +msgid "This is a builtin plugin which cannot be disabled" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:107 +#: templates/js/translated/plugin.js:72 +#: templates/js/translated/table_filters.js:500 +msgid "Sample" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:108 +msgid "This is a sample plugin" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:113 +msgid "Commit Author" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:117 +#: templates/about.html:36 +msgid "Commit Date" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:121 +#: templates/about.html:29 +msgid "Commit Hash" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:125 +msgid "Commit Message" +msgstr "" + +#: templates/InvenTree/settings/po.html:7 +msgid "Purchase Order Settings" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:7 +msgid "Pricing Settings" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:35 +msgid "Exchange Rates" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:39 +msgid "Update Now" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:47 +#: templates/InvenTree/settings/pricing.html:51 +msgid "Last Update" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:51 +msgid "Never" +msgstr "" + +#: templates/InvenTree/settings/project_codes.html:8 +msgid "Project Code Settings" +msgstr "" + +#: templates/InvenTree/settings/project_codes.html:21 +#: templates/InvenTree/settings/sidebar.html:33 +msgid "Project Codes" +msgstr "" + +#: templates/InvenTree/settings/project_codes.html:25 +#: templates/InvenTree/settings/settings_staff_js.html:216 +msgid "New Project Code" +msgstr "" + +#: templates/InvenTree/settings/report.html:8 +#: templates/InvenTree/settings/user_reporting.html:9 +msgid "Report Settings" +msgstr "" + +#: templates/InvenTree/settings/returns.html:7 +msgid "Return Order Settings" +msgstr "" + +#: templates/InvenTree/settings/setting.html:31 +msgid "No value set" +msgstr "" + +#: templates/InvenTree/settings/setting.html:46 +msgid "Edit setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:58 +msgid "Edit Plugin Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:60 +msgid "Edit Notification Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:63 +msgid "Edit Global Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:65 +msgid "Edit User Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:49 +msgid "Rate" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:81 +#: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 +msgid "Delete" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:95 +msgid "Edit Custom Unit" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:110 +msgid "Delete Custom Unit" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:124 +msgid "New Custom Unit" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:140 +msgid "No project codes found" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:158 +#: templates/js/translated/build.js:2403 +msgid "group" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:175 +#: templates/InvenTree/settings/settings_staff_js.html:189 +msgid "Edit Project Code" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:176 +#: templates/InvenTree/settings/settings_staff_js.html:203 +msgid "Delete Project Code" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:285 +msgid "No category parameter templates found" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:308 +#: templates/js/translated/part.js:1649 +msgid "Edit Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:309 +#: templates/js/translated/part.js:1650 +msgid "Delete Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:326 +msgid "Edit Category Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:353 +msgid "Delete Category Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:388 +msgid "Create Category Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:418 +msgid "Create Part Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:440 +msgid "No stock location types found" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:461 +msgid "Location count" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:466 +#: templates/InvenTree/settings/settings_staff_js.html:480 +msgid "Edit Location Type" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:467 +msgid "Delete Location type" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:490 +msgid "Delete Location Type" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:500 +#: templates/InvenTree/settings/stock.html:38 +msgid "New Location Type" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:6 +#: templates/InvenTree/settings/user_settings.html:9 +msgid "User Settings" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:9 +msgid "Account" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:11 +msgid "Display" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:13 +msgid "Home Page" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:15 +#: templates/js/translated/forms.js:2167 templates/js/translated/tables.js:543 +#: templates/navbar.html:107 templates/search.html:8 +#: templates/search_form.html:6 templates/search_form.html:7 +msgid "Search" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:19 +#: templates/InvenTree/settings/sidebar.html:43 +msgid "Reporting" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:24 +msgid "Global Settings" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:27 templates/stats.html:9 +msgid "Server" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:41 +msgid "Labels" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:45 +msgid "Categories" +msgstr "" + +#: templates/InvenTree/settings/so.html:7 +msgid "Sales Order Settings" +msgstr "" + +#: templates/InvenTree/settings/stock.html:7 +msgid "Stock Settings" +msgstr "" + +#: templates/InvenTree/settings/stock.html:34 +msgid "Stock Location Types" +msgstr "" + +#: templates/InvenTree/settings/user.html:13 +msgid "Account Settings" +msgstr "" + +#: templates/InvenTree/settings/user.html:19 +#: templates/account/password_reset_from_key.html:4 +#: templates/account/password_reset_from_key.html:7 +msgid "Change Password" +msgstr "" + +#: templates/InvenTree/settings/user.html:55 +msgid "The following email addresses are associated with your account:" +msgstr "" + +#: templates/InvenTree/settings/user.html:76 +msgid "Verified" +msgstr "" + +#: templates/InvenTree/settings/user.html:78 +msgid "Unverified" +msgstr "" + +#: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:957 +msgid "Primary" +msgstr "" + +#: templates/InvenTree/settings/user.html:86 +msgid "Make Primary" +msgstr "" + +#: templates/InvenTree/settings/user.html:87 +msgid "Re-send Verification" +msgstr "" + +#: templates/InvenTree/settings/user.html:96 +msgid "Warning:" +msgstr "" + +#: templates/InvenTree/settings/user.html:97 +msgid "You currently do not have any email address set up. You should really add an email address so you can receive notifications, reset your password, etc." +msgstr "" + +#: templates/InvenTree/settings/user.html:105 +msgid "Add Email Address" +msgstr "" + +#: templates/InvenTree/settings/user.html:110 +msgid "Add Email" +msgstr "" + +#: templates/InvenTree/settings/user.html:120 +msgid "Multifactor" +msgstr "" + +#: templates/InvenTree/settings/user.html:125 +msgid "You have these factors available:" +msgstr "" + +#: templates/InvenTree/settings/user.html:135 +msgid "TOTP" +msgstr "" + +#: templates/InvenTree/settings/user.html:141 +msgid "Static" +msgstr "" + +#: templates/InvenTree/settings/user.html:150 +msgid "Multifactor authentication is not configured for your account" +msgstr "" + +#: templates/InvenTree/settings/user.html:157 +msgid "Change factors" +msgstr "" + +#: templates/InvenTree/settings/user.html:158 +msgid "Setup multifactor" +msgstr "" + +#: templates/InvenTree/settings/user.html:160 +msgid "Remove multifactor" +msgstr "" + +#: templates/InvenTree/settings/user.html:171 +msgid "Active Sessions" +msgstr "" + +#: templates/InvenTree/settings/user.html:177 +msgid "Log out active sessions (except this one)" +msgstr "" + +#: templates/InvenTree/settings/user.html:178 +msgid "Log Out Active Sessions" +msgstr "" + +#: templates/InvenTree/settings/user.html:187 +msgid "unknown on unknown" +msgstr "" + +#: templates/InvenTree/settings/user.html:188 +msgid "unknown" +msgstr "" + +#: templates/InvenTree/settings/user.html:192 +msgid "IP Address" +msgstr "" + +#: templates/InvenTree/settings/user.html:193 +msgid "Device" +msgstr "" + +#: templates/InvenTree/settings/user.html:194 +msgid "Last Activity" +msgstr "" + +#: templates/InvenTree/settings/user.html:207 +#, python-format +msgid "%(time)s ago (this session)" +msgstr "" + +#: templates/InvenTree/settings/user.html:209 +#, python-format +msgid "%(time)s ago" +msgstr "" + +#: templates/InvenTree/settings/user.html:223 +msgid "Do you really want to remove the selected email address?" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:9 +msgid "Display Settings" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:29 +msgid "Theme Settings" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:39 +msgid "Select theme" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:50 +msgid "Set Theme" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:58 +msgid "Language Settings" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:67 +msgid "Select language" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:83 +#, python-format +msgid "%(lang_translated)s%% translated" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:85 +msgid "No translations available" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:92 +msgid "Set Language" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:95 +msgid "Some languages are not complete" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:97 +msgid "Show only sufficient" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:99 +msgid "and hidden." +msgstr "" + +#: templates/InvenTree/settings/user_display.html:99 +msgid "Show them too" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:106 +msgid "Help the translation efforts!" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:107 +msgid "Native language translation of the web application is community contributed via crowdin. Contributions are welcomed and encouraged." +msgstr "" + +#: templates/InvenTree/settings/user_display.html:108 +msgid "InvenTree Translation Project" +msgstr "" + +#: templates/InvenTree/settings/user_homepage.html:9 +msgid "Home Page Settings" +msgstr "" + +#: templates/InvenTree/settings/user_search.html:9 +msgid "Search Settings" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:9 +msgid "Single Sign On Accounts" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:16 +msgid "You can sign in to your account using any of the following third party accounts:" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:52 +msgid "There are no social network accounts connected to this account." +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:58 +msgid "Add SSO Account" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:67 +msgid "Single Sign On is not enabled for this server" +msgstr "" + +#: templates/about.html:9 +msgid "InvenTree Version" +msgstr "" + +#: templates/about.html:14 +msgid "Development Version" +msgstr "" + +#: templates/about.html:17 +msgid "Up to Date" +msgstr "" + +#: templates/about.html:19 +msgid "Update Available" +msgstr "" + +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 +msgid "InvenTree Documentation" +msgstr "" + +#: templates/about.html:54 +msgid "API Version" +msgstr "" + +#: templates/about.html:59 +msgid "Python Version" +msgstr "" + +#: templates/about.html:64 +msgid "Django Version" +msgstr "" + +#: templates/about.html:69 +msgid "View Code on GitHub" +msgstr "" + +#: templates/about.html:74 +msgid "Credits" +msgstr "" + +#: templates/about.html:79 +msgid "Mobile App" +msgstr "" + +#: templates/about.html:84 +msgid "Submit Bug Report" +msgstr "" + +#: templates/about.html:91 templates/clip.html:4 +#: templates/js/translated/helpers.js:589 +msgid "copy to clipboard" +msgstr "" + +#: templates/about.html:91 +msgid "copy version information" +msgstr "" + +#: templates/account/base.html:66 templates/navbar.html:17 +msgid "InvenTree logo" +msgstr "" + +#: templates/account/email_confirm.html:6 +#: templates/account/email_confirm.html:9 +msgid "Confirm Email Address" +msgstr "" + +#: templates/account/email_confirm.html:15 +#, python-format +msgid "Please confirm that %(email)s is an email address for user %(user_display)s." +msgstr "" + +#: templates/account/email_confirm.html:21 templates/js/translated/forms.js:774 +msgid "Confirm" +msgstr "" + +#: templates/account/email_confirm.html:29 +#, python-format +msgid "This email confirmation link expired or is invalid. Please issue a new email confirmation request." +msgstr "" + +#: templates/account/login.html:6 templates/account/login.html:19 +#: templates/account/login.html:40 templates/socialaccount/login.html:5 +msgid "Sign In" +msgstr "" + +#: templates/account/login.html:23 +msgid "Not a member?" +msgstr "" + +#: templates/account/login.html:25 templates/account/signup.html:11 +#: templates/account/signup.html:22 templates/socialaccount/signup.html:8 +#: templates/socialaccount/signup.html:23 +msgid "Sign Up" +msgstr "" + +#: templates/account/login.html:47 +msgid "Forgot Password?" +msgstr "" + +#: templates/account/login.html:55 +msgid "or log in with" +msgstr "" + +#: templates/account/logout.html:5 templates/account/logout.html:8 +#: templates/account/logout.html:20 +msgid "Sign Out" +msgstr "" + +#: templates/account/logout.html:10 +msgid "Are you sure you want to sign out?" +msgstr "" + +#: templates/account/logout.html:27 templates/allauth_2fa/backup_tokens.html:35 +#: templates/allauth_2fa/remove.html:24 templates/allauth_2fa/setup.html:45 +msgid "Return to Site" +msgstr "" + +#: templates/account/password_reset.html:5 +#: templates/account/password_reset.html:12 +msgid "Password Reset" +msgstr "" + +#: templates/account/password_reset.html:18 +msgid "Forgotten your password? Enter your email address below, and we'll send you an email allowing you to reset it." +msgstr "" + +#: templates/account/password_reset.html:23 +msgid "Reset My Password" +msgstr "" + +#: templates/account/password_reset.html:27 templates/account/signup.html:37 +msgid "This function is currently disabled. Please contact an administrator." +msgstr "" + +#: templates/account/password_reset_from_key.html:7 +msgid "Bad Token" +msgstr "" + +#: templates/account/password_reset_from_key.html:11 +#, python-format +msgid "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." +msgstr "" + +#: templates/account/password_reset_from_key.html:18 +msgid "Change password" +msgstr "" + +#: templates/account/password_reset_from_key.html:22 +msgid "Your password is now changed." +msgstr "" + +#: templates/account/signup.html:13 +#, python-format +msgid "Already have an account? Then please sign in." +msgstr "" + +#: templates/account/signup.html:28 +msgid "Use a SSO-provider for signup" +msgstr "" + +#: templates/account/signup_closed.html:5 +#: templates/account/signup_closed.html:8 +msgid "Sign Up Closed" +msgstr "" + +#: templates/account/signup_closed.html:10 +msgid "Sign up is currently closed." +msgstr "" + +#: templates/account/signup_closed.html:15 +#: templates/socialaccount/authentication_error.html:19 +#: templates/socialaccount/login.html:38 templates/socialaccount/signup.html:30 +msgid "Return to login page" +msgstr "" + +#: templates/admin_button.html:8 +msgid "View in administration panel" +msgstr "" + +#: templates/allauth_2fa/authenticate.html:5 +msgid "Two-Factor Authentication" +msgstr "" + +#: templates/allauth_2fa/authenticate.html:13 +msgid "Authenticate" +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:6 +msgid "Two-Factor Authentication Backup Tokens" +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:17 +msgid "Backup tokens have been generated, but are not revealed here for security reasons. Press the button below to generate new ones." +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:20 +msgid "No backup tokens are available. Press the button below to generate some." +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:28 +msgid "Generate Tokens" +msgstr "" + +#: templates/allauth_2fa/remove.html:6 +msgid "Disable Two-Factor Authentication" +msgstr "" + +#: templates/allauth_2fa/remove.html:9 +msgid "Are you sure?" +msgstr "" + +#: templates/allauth_2fa/remove.html:17 +msgid "Disable 2FA" +msgstr "" + +#: templates/allauth_2fa/setup.html:6 +msgid "Setup Two-Factor Authentication" +msgstr "" + +#: templates/allauth_2fa/setup.html:10 +msgid "Step 1" +msgstr "" + +#: templates/allauth_2fa/setup.html:14 +msgid "Scan the QR code below with a token generator of your choice (for instance Google Authenticator)." +msgstr "" + +#: templates/allauth_2fa/setup.html:20 +msgid "Secret: " +msgstr "" + +#: templates/allauth_2fa/setup.html:24 +msgid "Step 2" +msgstr "" + +#: templates/allauth_2fa/setup.html:28 +msgid "Input a token generated by the app:" +msgstr "" + +#: templates/allauth_2fa/setup.html:38 +msgid "Verify" +msgstr "" + +#: templates/attachment_button.html:4 templates/js/translated/attachment.js:70 +msgid "Add Link" +msgstr "" + +#: templates/attachment_button.html:7 templates/js/translated/attachment.js:48 +msgid "Add Attachment" +msgstr "" + +#: templates/barcode_data.html:5 +msgid "Barcode Identifier" +msgstr "" + +#: templates/base.html:103 +msgid "Server Restart Required" +msgstr "" + +#: templates/base.html:106 +msgid "A configuration option has been changed which requires a server restart" +msgstr "" + +#: templates/base.html:106 templates/base.html:116 +msgid "Contact your system administrator for further information" +msgstr "" + +#: templates/base.html:113 +msgid "Pending Database Migrations" +msgstr "" + +#: templates/base.html:116 +msgid "There are pending database migrations which require attention" +msgstr "" + +#: templates/email/build_order_completed.html:9 +#: templates/email/canceled_order_assigned.html:9 +#: templates/email/new_order_assigned.html:9 +#: templates/email/overdue_build_order.html:9 +#: templates/email/overdue_purchase_order.html:9 +#: templates/email/overdue_sales_order.html:9 +#: 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 "" + +#: templates/email/build_order_required_stock.html:7 +msgid "Stock is required for the following build order" +msgstr "" + +#: templates/email/build_order_required_stock.html:8 +#, python-format +msgid "Build order %(build)s - building %(quantity)s x %(part)s" +msgstr "" + +#: templates/email/build_order_required_stock.html:10 +msgid "Click on the following link to view this build order" +msgstr "" + +#: templates/email/build_order_required_stock.html:14 +msgid "The following parts are low on required stock" +msgstr "" + +#: templates/email/build_order_required_stock.html:18 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2750 +msgid "Required Quantity" +msgstr "" + +#: templates/email/build_order_required_stock.html:38 +#: templates/email/low_stock_notification.html:30 +msgid "You are receiving this email because you are subscribed to notifications for this part " +msgstr "" + +#: templates/email/low_stock_notification.html:9 +msgid "Click on the following link to view this part" +msgstr "" + +#: templates/email/low_stock_notification.html:18 +#: templates/js/translated/part.js:3236 +msgid "Minimum Quantity" +msgstr "" + +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 +msgid "No Response" +msgstr "" + +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 +msgid "No response from the InvenTree server" +msgstr "" + +#: templates/js/translated/api.js:232 +msgid "Error 400: Bad request" +msgstr "" + +#: templates/js/translated/api.js:233 +msgid "API request returned error code 400" +msgstr "" + +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 +msgid "Error 401: Not Authenticated" +msgstr "" + +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 +msgid "Authentication credentials not supplied" +msgstr "" + +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 +msgid "Error 403: Permission Denied" +msgstr "" + +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 +msgid "You do not have the required permissions to access this function" +msgstr "" + +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 +msgid "Error 404: Resource Not Found" +msgstr "" + +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 +msgid "The requested resource could not be located on the server" +msgstr "" + +#: templates/js/translated/api.js:252 +msgid "Error 405: Method Not Allowed" +msgstr "" + +#: templates/js/translated/api.js:253 +msgid "HTTP method not allowed at URL" +msgstr "" + +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 +msgid "Error 408: Timeout" +msgstr "" + +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 +msgid "Connection timeout while requesting data from server" +msgstr "" + +#: templates/js/translated/api.js:261 +msgid "Error 503: Service Unavailable" +msgstr "" + +#: templates/js/translated/api.js:262 +msgid "The server is currently unavailable" +msgstr "" + +#: templates/js/translated/api.js:265 +msgid "Unhandled Error Code" +msgstr "" + +#: templates/js/translated/api.js:266 +msgid "Error code" +msgstr "" + +#: templates/js/translated/attachment.js:114 +msgid "All selected attachments will be deleted" +msgstr "" + +#: templates/js/translated/attachment.js:129 +msgid "Delete Attachments" +msgstr "" + +#: templates/js/translated/attachment.js:205 +msgid "Delete attachments" +msgstr "" + +#: templates/js/translated/attachment.js:260 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:294 +msgid "No attachments found" +msgstr "" + +#: templates/js/translated/attachment.js:334 +msgid "Edit Attachment" +msgstr "" + +#: templates/js/translated/attachment.js:365 +msgid "Upload Date" +msgstr "" + +#: templates/js/translated/attachment.js:385 +msgid "Edit attachment" +msgstr "" + +#: templates/js/translated/attachment.js:393 +msgid "Delete attachment" +msgstr "" + +#: templates/js/translated/barcode.js:43 +msgid "Scan barcode data here using barcode scanner" +msgstr "" + +#: templates/js/translated/barcode.js:45 +msgid "Enter barcode data" +msgstr "" + +#: templates/js/translated/barcode.js:59 +msgid "Scan barcode using connected webcam" +msgstr "" + +#: templates/js/translated/barcode.js:138 +msgid "Enter optional notes for stock transfer" +msgstr "" + +#: templates/js/translated/barcode.js:139 +msgid "Enter notes" +msgstr "" + +#: templates/js/translated/barcode.js:188 +msgid "Server error" +msgstr "" + +#: templates/js/translated/barcode.js:217 +msgid "Unknown response from server" +msgstr "" + +#: templates/js/translated/barcode.js:252 +#: templates/js/translated/modals.js:1125 +msgid "Invalid server response" +msgstr "" + +#: templates/js/translated/barcode.js:403 +msgid "Scan barcode data" +msgstr "" + +#: templates/js/translated/barcode.js:451 templates/navbar.html:114 +msgid "Scan Barcode" +msgstr "" + +#: templates/js/translated/barcode.js:489 +msgid "No URL in response" +msgstr "" + +#: templates/js/translated/barcode.js:529 +msgid "This will remove the link to the associated barcode" +msgstr "" + +#: templates/js/translated/barcode.js:535 +msgid "Unlink" +msgstr "" + +#: templates/js/translated/barcode.js:598 templates/js/translated/stock.js:1158 +msgid "Remove stock item" +msgstr "" + +#: templates/js/translated/barcode.js:641 +msgid "Scan Stock Items Into Location" +msgstr "" + +#: templates/js/translated/barcode.js:643 +msgid "Scan stock item barcode to check in to this location" +msgstr "" + +#: templates/js/translated/barcode.js:646 +#: templates/js/translated/barcode.js:843 +msgid "Check In" +msgstr "" + +#: templates/js/translated/barcode.js:678 +msgid "No barcode provided" +msgstr "" + +#: templates/js/translated/barcode.js:718 +msgid "Stock Item already scanned" +msgstr "" + +#: templates/js/translated/barcode.js:722 +msgid "Stock Item already in this location" +msgstr "" + +#: templates/js/translated/barcode.js:729 +msgid "Added stock item" +msgstr "" + +#: templates/js/translated/barcode.js:738 +msgid "Barcode does not match valid stock item" +msgstr "" + +#: templates/js/translated/barcode.js:757 +msgid "Scan Stock Container Into Location" +msgstr "" + +#: templates/js/translated/barcode.js:759 +msgid "Scan stock container barcode to check in to this location" +msgstr "" + +#: templates/js/translated/barcode.js:793 +msgid "Barcode does not match valid stock location" +msgstr "" + +#: templates/js/translated/barcode.js:837 +msgid "Check Into Location" +msgstr "" + +#: templates/js/translated/barcode.js:906 +#: templates/js/translated/barcode.js:915 +msgid "Barcode does not match a valid location" +msgstr "" + +#: templates/js/translated/bom.js:78 +msgid "Create BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:132 +msgid "Display row data" +msgstr "" + +#: templates/js/translated/bom.js:188 +msgid "Row Data" +msgstr "" + +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 +#: templates/js/translated/purchase_order.js:797 templates/modals.html:15 +#: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 +msgid "Close" +msgstr "" + +#: templates/js/translated/bom.js:306 +msgid "Download BOM Template" +msgstr "" + +#: templates/js/translated/bom.js:351 +msgid "Multi Level BOM" +msgstr "" + +#: templates/js/translated/bom.js:352 +msgid "Include BOM data for subassemblies" +msgstr "" + +#: templates/js/translated/bom.js:357 +msgid "Levels" +msgstr "" + +#: templates/js/translated/bom.js:358 +msgid "Select maximum number of BOM levels to export (0 = all levels)" +msgstr "" + +#: templates/js/translated/bom.js:365 +msgid "Include Alternative Parts" +msgstr "" + +#: templates/js/translated/bom.js:366 +msgid "Include alternative parts in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:371 +msgid "Include Parameter Data" +msgstr "" + +#: templates/js/translated/bom.js:372 +msgid "Include part parameter data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:377 +msgid "Include Stock Data" +msgstr "" + +#: templates/js/translated/bom.js:378 +msgid "Include part stock data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:383 +msgid "Include Manufacturer Data" +msgstr "" + +#: templates/js/translated/bom.js:384 +msgid "Include part manufacturer data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:389 +msgid "Include Supplier Data" +msgstr "" + +#: templates/js/translated/bom.js:390 +msgid "Include part supplier data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:395 +msgid "Include Pricing Data" +msgstr "" + +#: templates/js/translated/bom.js:396 +msgid "Include part pricing data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:591 +msgid "Remove substitute part" +msgstr "" + +#: templates/js/translated/bom.js:645 +msgid "Select and add a new substitute part using the input below" +msgstr "" + +#: templates/js/translated/bom.js:656 +msgid "Are you sure you wish to remove this substitute part link?" +msgstr "" + +#: templates/js/translated/bom.js:662 +msgid "Remove Substitute Part" +msgstr "" + +#: templates/js/translated/bom.js:701 +msgid "Add Substitute" +msgstr "" + +#: templates/js/translated/bom.js:702 +msgid "Edit BOM Item Substitutes" +msgstr "" + +#: templates/js/translated/bom.js:764 +msgid "All selected BOM items will be deleted" +msgstr "" + +#: templates/js/translated/bom.js:780 +msgid "Delete selected BOM items?" +msgstr "" + +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:936 +msgid "Load BOM for subassembly" +msgstr "" + +#: templates/js/translated/bom.js:946 +msgid "Substitutes Available" +msgstr "" + +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2676 +msgid "Variant stock allowed" +msgstr "" + +#: templates/js/translated/bom.js:1014 +msgid "Substitutes" +msgstr "" + +#: templates/js/translated/bom.js:1139 +msgid "BOM pricing is complete" +msgstr "" + +#: templates/js/translated/bom.js:1144 +msgid "BOM pricing is incomplete" +msgstr "" + +#: templates/js/translated/bom.js:1151 +msgid "No pricing available" +msgstr "" + +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2815 +msgid "External stock" +msgstr "" + +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2789 +#: templates/js/translated/sales_order.js:1946 +msgid "No Stock Available" +msgstr "" + +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2793 +msgid "Includes variant and substitute stock" +msgstr "" + +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2795 +#: templates/js/translated/part.js:1260 +#: templates/js/translated/sales_order.js:1943 +msgid "Includes variant stock" +msgstr "" + +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2797 +msgid "Includes substitute stock" +msgstr "" + +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2780 +msgid "Consumable item" +msgstr "" + +#: templates/js/translated/bom.js:1285 +msgid "Validate BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:1287 +msgid "This line has been validated" +msgstr "" + +#: templates/js/translated/bom.js:1289 +msgid "Edit substitute parts" +msgstr "" + +#: templates/js/translated/bom.js:1291 templates/js/translated/bom.js:1486 +msgid "Edit BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:1293 +msgid "Delete BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:1313 +msgid "View BOM" +msgstr "" + +#: templates/js/translated/bom.js:1397 +msgid "No BOM items found" +msgstr "" + +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2661 +msgid "Required Part" +msgstr "" + +#: templates/js/translated/bom.js:1683 +msgid "Inherited from parent BOM" +msgstr "" + +#: templates/js/translated/build.js:143 +msgid "Edit Build Order" +msgstr "" + +#: templates/js/translated/build.js:191 +msgid "Create Build Order" +msgstr "" + +#: templates/js/translated/build.js:223 +msgid "Cancel Build Order" +msgstr "" + +#: templates/js/translated/build.js:232 +msgid "Are you sure you wish to cancel this build?" +msgstr "" + +#: templates/js/translated/build.js:238 +msgid "Stock items have been allocated to this build order" +msgstr "" + +#: templates/js/translated/build.js:245 +msgid "There are incomplete outputs remaining for this build order" +msgstr "" + +#: templates/js/translated/build.js:297 +msgid "Build order is ready to be completed" +msgstr "" + +#: templates/js/translated/build.js:305 +msgid "This build order cannot be completed as there are incomplete outputs" +msgstr "" + +#: templates/js/translated/build.js:310 +msgid "Build Order is incomplete" +msgstr "" + +#: templates/js/translated/build.js:328 +msgid "Complete Build Order" +msgstr "" + +#: templates/js/translated/build.js:369 templates/js/translated/stock.js:119 +#: templates/js/translated/stock.js:294 +msgid "Next available serial number" +msgstr "" + +#: templates/js/translated/build.js:371 templates/js/translated/stock.js:121 +#: templates/js/translated/stock.js:296 +msgid "Latest serial number" +msgstr "" + +#: templates/js/translated/build.js:380 +msgid "The Bill of Materials contains trackable parts" +msgstr "" + +#: templates/js/translated/build.js:381 +msgid "Build outputs must be generated individually" +msgstr "" + +#: templates/js/translated/build.js:389 +msgid "Trackable parts can have serial numbers specified" +msgstr "" + +#: templates/js/translated/build.js:390 +msgid "Enter serial numbers to generate multiple single build outputs" +msgstr "" + +#: templates/js/translated/build.js:397 +msgid "Create Build Output" +msgstr "" + +#: templates/js/translated/build.js:428 +msgid "Allocate stock items to this build output" +msgstr "" + +#: templates/js/translated/build.js:436 +msgid "Deallocate stock from build output" +msgstr "" + +#: templates/js/translated/build.js:445 +msgid "Complete build output" +msgstr "" + +#: templates/js/translated/build.js:453 +msgid "Scrap build output" +msgstr "" + +#: templates/js/translated/build.js:460 +msgid "Delete build output" +msgstr "" + +#: templates/js/translated/build.js:480 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" +msgstr "" + +#: templates/js/translated/build.js:498 +msgid "Deallocate Stock Items" +msgstr "" + +#: templates/js/translated/build.js:584 templates/js/translated/build.js:712 +#: templates/js/translated/build.js:838 +msgid "Select Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:585 templates/js/translated/build.js:713 +#: templates/js/translated/build.js:839 +msgid "At least one build output must be selected" +msgstr "" + +#: templates/js/translated/build.js:599 +msgid "Selected build outputs will be marked as complete" +msgstr "" + +#: templates/js/translated/build.js:603 templates/js/translated/build.js:737 +#: templates/js/translated/build.js:861 +msgid "Output" +msgstr "" + +#: templates/js/translated/build.js:631 +msgid "Complete Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:728 +msgid "Selected build outputs will be marked as scrapped" +msgstr "" + +#: templates/js/translated/build.js:730 +msgid "Scrapped output are marked as rejected" +msgstr "" + +#: templates/js/translated/build.js:731 +msgid "Allocated stock items will no longer be available" +msgstr "" + +#: templates/js/translated/build.js:732 +msgid "The completion status of the build order will not be adjusted" +msgstr "" + +#: templates/js/translated/build.js:763 +msgid "Scrap Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:853 +msgid "Selected build outputs will be deleted" +msgstr "" + +#: templates/js/translated/build.js:855 +msgid "Build output data will be permanently deleted" +msgstr "" + +#: templates/js/translated/build.js:856 +msgid "Allocated stock items will be returned to stock" +msgstr "" + +#: templates/js/translated/build.js:874 +msgid "Delete Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:961 +msgid "Delete allocations" +msgstr "" + +#: templates/js/translated/build.js:968 +msgid "Delete Stock Allocations" +msgstr "" + +#: templates/js/translated/build.js:991 +msgid "No allocated stock" +msgstr "" + +#: templates/js/translated/build.js:1047 +msgid "Stock item" +msgstr "" + +#: templates/js/translated/build.js:1072 +msgid "Edit build allocation" +msgstr "" + +#: templates/js/translated/build.js:1073 +msgid "Delete build allocation" +msgstr "" + +#: templates/js/translated/build.js:1091 +msgid "Edit Build Allocation" +msgstr "" + +#: templates/js/translated/build.js:1104 +msgid "Delete Build Allocation" +msgstr "" + +#: templates/js/translated/build.js:1135 +msgid "No build order allocations found" +msgstr "" + +#: templates/js/translated/build.js:1180 +msgid "Location not specified" +msgstr "" + +#: templates/js/translated/build.js:1202 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1220 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1238 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1291 +msgid "build output" +msgstr "" + +#: templates/js/translated/build.js:1292 +msgid "build outputs" +msgstr "" + +#: templates/js/translated/build.js:1296 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1472 +msgid "No active build outputs found" +msgstr "" + +#: templates/js/translated/build.js:1565 +msgid "Allocated Lines" +msgstr "" + +#: templates/js/translated/build.js:1579 +msgid "Required Tests" +msgstr "" + +#: templates/js/translated/build.js:1751 +#: templates/js/translated/purchase_order.js:611 +#: templates/js/translated/sales_order.js:1207 +msgid "Select Parts" +msgstr "" + +#: templates/js/translated/build.js:1752 +#: templates/js/translated/sales_order.js:1208 +msgid "You must select at least one part to allocate" +msgstr "" + +#: templates/js/translated/build.js:1815 +#: templates/js/translated/sales_order.js:1157 +msgid "Specify stock allocation quantity" +msgstr "" + +#: templates/js/translated/build.js:1892 +msgid "All Parts Allocated" +msgstr "" + +#: templates/js/translated/build.js:1893 +msgid "All selected parts have been fully allocated" +msgstr "" + +#: templates/js/translated/build.js:1907 +#: templates/js/translated/sales_order.js:1222 +msgid "Select source location (leave blank to take from all locations)" +msgstr "" + +#: templates/js/translated/build.js:1935 +msgid "Allocate Stock Items to Build Order" +msgstr "" + +#: templates/js/translated/build.js:1946 +#: templates/js/translated/sales_order.js:1319 +msgid "No matching stock locations" +msgstr "" + +#: templates/js/translated/build.js:2019 +#: templates/js/translated/sales_order.js:1398 +msgid "No matching stock items" +msgstr "" + +#: templates/js/translated/build.js:2116 +msgid "Automatic Stock Allocation" +msgstr "" + +#: templates/js/translated/build.js:2117 +msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" +msgstr "" + +#: templates/js/translated/build.js:2119 +msgid "If a location is specified, stock will only be allocated from that location" +msgstr "" + +#: templates/js/translated/build.js:2120 +msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" +msgstr "" + +#: templates/js/translated/build.js:2121 +msgid "If substitute stock is allowed, it will be used where stock of the primary part cannot be found" +msgstr "" + +#: templates/js/translated/build.js:2152 +msgid "Allocate Stock Items" +msgstr "" + +#: templates/js/translated/build.js:2257 +msgid "No builds matching query" +msgstr "" + +#: templates/js/translated/build.js:2292 templates/js/translated/build.js:2655 +#: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 +#: templates/js/translated/part.js:2320 templates/js/translated/part.js:2759 +#: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 +msgid "Select" +msgstr "" + +#: templates/js/translated/build.js:2306 +msgid "Build order is overdue" +msgstr "" + +#: templates/js/translated/build.js:2388 templates/js/translated/stock.js:3042 +msgid "No user information" +msgstr "" + +#: templates/js/translated/build.js:2564 +#: templates/js/translated/sales_order.js:1682 +msgid "Edit stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2565 +#: templates/js/translated/sales_order.js:1683 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2580 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2592 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2631 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2632 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2650 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2680 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2723 +msgid "Gets Inherited" +msgstr "" + +#: templates/js/translated/build.js:2733 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2785 +#: templates/js/translated/sales_order.js:1951 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2840 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2847 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2848 +msgid "Allocate tracked items against individual build outputs" +msgstr "" + +#: templates/js/translated/build.js:2856 +#: templates/js/translated/sales_order.js:2052 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2861 templates/js/translated/stock.js:1868 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2865 +#: templates/js/translated/sales_order.js:2046 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2869 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:98 +msgid "Add Manufacturer" +msgstr "" + +#: templates/js/translated/company.js:111 +#: templates/js/translated/company.js:213 +msgid "Add Manufacturer Part" +msgstr "" + +#: templates/js/translated/company.js:132 +msgid "Edit Manufacturer Part" +msgstr "" + +#: templates/js/translated/company.js:201 +#: templates/js/translated/purchase_order.js:93 +msgid "Add Supplier" +msgstr "" + +#: templates/js/translated/company.js:243 +#: templates/js/translated/purchase_order.js:318 +msgid "Add Supplier Part" +msgstr "" + +#: templates/js/translated/company.js:344 +msgid "All selected supplier parts will be deleted" +msgstr "" + +#: templates/js/translated/company.js:360 +msgid "Delete Supplier Parts" +msgstr "" + +#: templates/js/translated/company.js:466 +msgid "Add new Company" +msgstr "" + +#: templates/js/translated/company.js:546 +msgid "Parts Supplied" +msgstr "" + +#: templates/js/translated/company.js:555 +msgid "Parts Manufactured" +msgstr "" + +#: templates/js/translated/company.js:570 +msgid "No company information found" +msgstr "" + +#: templates/js/translated/company.js:619 +msgid "Create New Contact" +msgstr "" + +#: templates/js/translated/company.js:635 +#: templates/js/translated/company.js:758 +msgid "Edit Contact" +msgstr "" + +#: templates/js/translated/company.js:672 +msgid "All selected contacts will be deleted" +msgstr "" + +#: templates/js/translated/company.js:678 +#: templates/js/translated/company.js:742 +msgid "Role" +msgstr "" + +#: templates/js/translated/company.js:686 +msgid "Delete Contacts" +msgstr "" + +#: templates/js/translated/company.js:717 +msgid "No contacts found" +msgstr "" + +#: templates/js/translated/company.js:730 +msgid "Phone Number" +msgstr "" + +#: templates/js/translated/company.js:736 +msgid "Email Address" +msgstr "" + +#: templates/js/translated/company.js:762 +msgid "Delete Contact" +msgstr "" + +#: templates/js/translated/company.js:859 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:874 +#: templates/js/translated/company.js:1035 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:909 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:923 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:989 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:995 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1007 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1013 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1039 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1112 +msgid "All selected manufacturer parts will be deleted" +msgstr "" + +#: templates/js/translated/company.js:1127 +msgid "Delete Manufacturer Parts" +msgstr "" + +#: templates/js/translated/company.js:1161 +msgid "All selected parameters will be deleted" +msgstr "" + +#: templates/js/translated/company.js:1175 +msgid "Delete Parameters" +msgstr "" + +#: templates/js/translated/company.js:1191 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1208 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1240 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1259 +msgid "No manufacturer parts found" +msgstr "" + +#: templates/js/translated/company.js:1279 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 +msgid "Template part" +msgstr "" + +#: templates/js/translated/company.js:1283 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 +msgid "Assembled part" +msgstr "" + +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 +msgid "No parameters found" +msgstr "" + +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 +msgid "Edit parameter" +msgstr "" + +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 +msgid "Delete parameter" +msgstr "" + +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 +msgid "Edit Parameter" +msgstr "" + +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 +msgid "Delete Parameter" +msgstr "" + +#: templates/js/translated/company.js:1496 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1546 +msgid "No supplier parts found" +msgstr "" + +#: templates/js/translated/company.js:1664 +msgid "Base Units" +msgstr "" + +#: templates/js/translated/company.js:1694 +msgid "Availability" +msgstr "" + +#: templates/js/translated/company.js:1725 +msgid "Edit supplier part" +msgstr "" + +#: templates/js/translated/company.js:1726 +msgid "Delete supplier part" +msgstr "" + +#: templates/js/translated/company.js:1779 +#: templates/js/translated/pricing.js:694 +msgid "Delete Price Break" +msgstr "" + +#: templates/js/translated/company.js:1789 +#: templates/js/translated/pricing.js:712 +msgid "Edit Price Break" +msgstr "" + +#: templates/js/translated/company.js:1804 +msgid "No price break information found" +msgstr "" + +#: templates/js/translated/company.js:1833 +msgid "Last updated" +msgstr "" + +#: templates/js/translated/company.js:1840 +msgid "Edit price break" +msgstr "" + +#: templates/js/translated/company.js:1841 +msgid "Delete price break" +msgstr "" + +#: templates/js/translated/filters.js:186 +#: templates/js/translated/filters.js:667 +msgid "true" +msgstr "" + +#: templates/js/translated/filters.js:190 +#: templates/js/translated/filters.js:668 +msgid "false" +msgstr "" + +#: templates/js/translated/filters.js:214 +msgid "Select filter" +msgstr "" + +#: templates/js/translated/filters.js:437 +msgid "Print Labels" +msgstr "" + +#: templates/js/translated/filters.js:441 +msgid "Print Reports" +msgstr "" + +#: templates/js/translated/filters.js:453 +msgid "Download table data" +msgstr "" + +#: templates/js/translated/filters.js:460 +msgid "Reload table data" +msgstr "" + +#: templates/js/translated/filters.js:469 +msgid "Add new filter" +msgstr "" + +#: templates/js/translated/filters.js:477 +msgid "Clear all filters" +msgstr "" + +#: templates/js/translated/filters.js:577 +msgid "Create filter" +msgstr "" + +#: templates/js/translated/forms.js:378 templates/js/translated/forms.js:393 +#: templates/js/translated/forms.js:407 templates/js/translated/forms.js:421 +msgid "Action Prohibited" +msgstr "" + +#: templates/js/translated/forms.js:380 +msgid "Create operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:395 +msgid "Update operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:409 +msgid "Delete operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:423 +msgid "View operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:800 +msgid "Keep this form open" +msgstr "" + +#: templates/js/translated/forms.js:903 +msgid "Enter a valid number" +msgstr "" + +#: templates/js/translated/forms.js:1477 templates/modals.html:19 +#: templates/modals.html:43 +msgid "Form errors exist" +msgstr "" + +#: templates/js/translated/forms.js:1975 +msgid "No results found" +msgstr "" + +#: templates/js/translated/forms.js:2286 templates/js/translated/search.js:239 +msgid "Searching" +msgstr "" + +#: templates/js/translated/forms.js:2500 +msgid "Clear input" +msgstr "" + +#: templates/js/translated/forms.js:3102 +msgid "File Column" +msgstr "" + +#: templates/js/translated/forms.js:3102 +msgid "Field Name" +msgstr "" + +#: templates/js/translated/forms.js:3114 +msgid "Select Columns" +msgstr "" + +#: templates/js/translated/helpers.js:77 +msgid "YES" +msgstr "" + +#: templates/js/translated/helpers.js:80 +msgid "NO" +msgstr "" + +#: templates/js/translated/helpers.js:93 +msgid "True" +msgstr "" + +#: templates/js/translated/helpers.js:94 +msgid "False" +msgstr "" + +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 +msgid "Select Items" +msgstr "" + +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 +msgid "No items selected for printing" +msgstr "" + +#: templates/js/translated/label.js:143 +msgid "Labels sent to printer" +msgstr "" + +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 +msgid "Cancel" +msgstr "" + +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 +#: templates/modals.html:28 templates/modals.html:51 +msgid "Submit" +msgstr "" + +#: templates/js/translated/modals.js:157 +msgid "Form Title" +msgstr "" + +#: templates/js/translated/modals.js:446 +msgid "Waiting for server..." +msgstr "" + +#: templates/js/translated/modals.js:597 +msgid "Show Error Information" +msgstr "" + +#: templates/js/translated/modals.js:687 +msgid "Accept" +msgstr "" + +#: templates/js/translated/modals.js:745 +msgid "Loading Data" +msgstr "" + +#: templates/js/translated/modals.js:1016 +msgid "Invalid response from server" +msgstr "" + +#: templates/js/translated/modals.js:1016 +msgid "Form data missing from server response" +msgstr "" + +#: templates/js/translated/modals.js:1028 +msgid "Error posting form data" +msgstr "" + +#: templates/js/translated/modals.js:1125 +msgid "JSON response missing form data" +msgstr "" + +#: templates/js/translated/modals.js:1140 +msgid "Error 400: Bad Request" +msgstr "" + +#: templates/js/translated/modals.js:1141 +msgid "Server returned error code 400" +msgstr "" + +#: templates/js/translated/modals.js:1164 +msgid "Error requesting form data" +msgstr "" + +#: templates/js/translated/news.js:33 +msgid "No news found" +msgstr "" + +#: templates/js/translated/news.js:38 +#: templates/js/translated/notification.js:46 +#: templates/js/translated/part.js:1608 +msgid "ID" +msgstr "" + +#: templates/js/translated/notification.js:52 +msgid "Age" +msgstr "" + +#: templates/js/translated/notification.js:65 +msgid "Notification" +msgstr "" + +#: templates/js/translated/notification.js:224 +msgid "Mark as unread" +msgstr "" + +#: templates/js/translated/notification.js:228 +msgid "Mark as read" +msgstr "" + +#: templates/js/translated/notification.js:254 +msgid "No unread notifications" +msgstr "" + +#: templates/js/translated/notification.js:296 templates/notifications.html:12 +msgid "Notifications will load here" +msgstr "" + +#: templates/js/translated/order.js:89 +msgid "Add Extra Line Item" +msgstr "" + +#: templates/js/translated/order.js:126 +msgid "Export Order" +msgstr "" + +#: templates/js/translated/order.js:241 +msgid "Duplicate Line" +msgstr "" + +#: templates/js/translated/order.js:255 +msgid "Edit Line" +msgstr "" + +#: templates/js/translated/order.js:268 +msgid "Delete Line" +msgstr "" + +#: templates/js/translated/order.js:281 +#: templates/js/translated/purchase_order.js:1990 +msgid "No line items found" +msgstr "" + +#: templates/js/translated/order.js:369 +msgid "Duplicate line" +msgstr "" + +#: templates/js/translated/order.js:370 +msgid "Edit line" +msgstr "" + +#: templates/js/translated/order.js:374 +msgid "Delete line" +msgstr "" + +#: templates/js/translated/part.js:90 +msgid "Part Attributes" +msgstr "" + +#: templates/js/translated/part.js:94 +msgid "Part Creation Options" +msgstr "" + +#: templates/js/translated/part.js:98 +msgid "Part Duplication Options" +msgstr "" + +#: templates/js/translated/part.js:121 +msgid "Add Part Category" +msgstr "" + +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 +msgid "Icon (optional) - Explore all available icons on" +msgstr "" + +#: templates/js/translated/part.js:352 +msgid "Create Part Category" +msgstr "" + +#: templates/js/translated/part.js:355 +msgid "Create new category after this one" +msgstr "" + +#: templates/js/translated/part.js:356 +msgid "Part category created" +msgstr "" + +#: templates/js/translated/part.js:370 +msgid "Edit Part Category" +msgstr "" + +#: templates/js/translated/part.js:383 +msgid "Are you sure you want to delete this part category?" +msgstr "" + +#: templates/js/translated/part.js:388 +msgid "Move to parent category" +msgstr "" + +#: templates/js/translated/part.js:397 +msgid "Delete Part Category" +msgstr "" + +#: templates/js/translated/part.js:401 +msgid "Action for parts in this category" +msgstr "" + +#: templates/js/translated/part.js:406 +msgid "Action for child categories" +msgstr "" + +#: templates/js/translated/part.js:430 +msgid "Create Part" +msgstr "" + +#: templates/js/translated/part.js:432 +msgid "Create another part after this one" +msgstr "" + +#: templates/js/translated/part.js:433 +msgid "Part created successfully" +msgstr "" + +#: templates/js/translated/part.js:461 +msgid "Edit Part" +msgstr "" + +#: templates/js/translated/part.js:463 +msgid "Part edited" +msgstr "" + +#: templates/js/translated/part.js:474 +msgid "Create Part Variant" +msgstr "" + +#: templates/js/translated/part.js:531 +msgid "Active Part" +msgstr "" + +#: templates/js/translated/part.js:532 +msgid "Part cannot be deleted as it is currently active" +msgstr "" + +#: templates/js/translated/part.js:546 +msgid "Deleting this part cannot be reversed" +msgstr "" + +#: templates/js/translated/part.js:548 +msgid "Any stock items for this part will be deleted" +msgstr "" + +#: templates/js/translated/part.js:549 +msgid "This part will be removed from any Bills of Material" +msgstr "" + +#: templates/js/translated/part.js:550 +msgid "All manufacturer and supplier information for this part will be deleted" +msgstr "" + +#: templates/js/translated/part.js:557 +msgid "Delete Part" +msgstr "" + +#: templates/js/translated/part.js:593 +msgid "You are subscribed to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:595 +msgid "You have subscribed to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:600 +msgid "Subscribe to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:602 +msgid "You have unsubscribed to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:619 +msgid "Validating the BOM will mark each line item as valid" +msgstr "" + +#: templates/js/translated/part.js:629 +msgid "Validate Bill of Materials" +msgstr "" + +#: templates/js/translated/part.js:632 +msgid "Validated Bill of Materials" +msgstr "" + +#: templates/js/translated/part.js:657 +msgid "Copy Bill of Materials" +msgstr "" + +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 +msgid "Low stock" +msgstr "" + +#: templates/js/translated/part.js:688 +msgid "No stock available" +msgstr "" + +#: templates/js/translated/part.js:748 +msgid "Demand" +msgstr "" + +#: templates/js/translated/part.js:771 +msgid "Unit" +msgstr "" + +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 +msgid "Virtual part" +msgstr "" + +#: templates/js/translated/part.js:806 +msgid "Subscribed part" +msgstr "" + +#: templates/js/translated/part.js:810 +msgid "Salable part" +msgstr "" + +#: templates/js/translated/part.js:893 +msgid "Schedule generation of a new stocktake report." +msgstr "" + +#: templates/js/translated/part.js:893 +msgid "Once complete, the stocktake report will be available for download." +msgstr "" + +#: templates/js/translated/part.js:901 +msgid "Generate Stocktake Report" +msgstr "" + +#: templates/js/translated/part.js:905 +msgid "Stocktake report scheduled" +msgstr "" + +#: templates/js/translated/part.js:1054 +msgid "No stocktake information available" +msgstr "" + +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 +msgid "Edit Stocktake Entry" +msgstr "" + +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 +msgid "Delete Stocktake Entry" +msgstr "" + +#: templates/js/translated/part.js:1285 +msgid "No variants found" +msgstr "" + +#: templates/js/translated/part.js:1603 +msgid "No part parameter templates found" +msgstr "" + +#: templates/js/translated/part.js:1666 +msgid "Edit Part Parameter Template" +msgstr "" + +#: templates/js/translated/part.js:1678 +msgid "Any parameters which reference this template will also be deleted" +msgstr "" + +#: templates/js/translated/part.js:1686 +msgid "Delete Part Parameter Template" +msgstr "" + +#: templates/js/translated/part.js:1720 +#: templates/js/translated/purchase_order.js:1654 +msgid "No purchase orders found" +msgstr "" + +#: templates/js/translated/part.js:1864 +#: templates/js/translated/purchase_order.js:2153 +#: templates/js/translated/return_order.js:755 +#: templates/js/translated/sales_order.js:1911 +msgid "This line item is overdue" +msgstr "" + +#: templates/js/translated/part.js:1910 +#: templates/js/translated/purchase_order.js:2220 +msgid "Receive line item" +msgstr "" + +#: templates/js/translated/part.js:1973 +msgid "Delete part relationship" +msgstr "" + +#: templates/js/translated/part.js:1995 +msgid "Delete Part Relationship" +msgstr "" + +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2523 +msgid "No parts found" +msgstr "" + +#: templates/js/translated/part.js:2204 +msgid "Set the part category for the selected parts" +msgstr "" + +#: templates/js/translated/part.js:2209 +msgid "Set Part Category" +msgstr "" + +#: templates/js/translated/part.js:2239 +msgid "Set category" +msgstr "" + +#: templates/js/translated/part.js:2291 +msgid "part" +msgstr "" + +#: templates/js/translated/part.js:2292 +msgid "parts" +msgstr "" + +#: templates/js/translated/part.js:2388 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2548 templates/js/translated/part.js:2678 +#: templates/js/translated/stock.js:2669 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2564 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2662 +msgid "No subcategories found" +msgstr "" + +#: templates/js/translated/part.js:2698 templates/js/translated/stock.js:2689 +msgid "Display as tree" +msgstr "" + +#: templates/js/translated/part.js:2778 +msgid "Load Subcategories" +msgstr "" + +#: templates/js/translated/part.js:2794 +msgid "Subscribed category" +msgstr "" + +#: templates/js/translated/part.js:2882 +msgid "No test templates matching query" +msgstr "" + +#: templates/js/translated/part.js:2904 templates/js/translated/search.js:342 +msgid "results" +msgstr "" + +#: templates/js/translated/part.js:2954 templates/js/translated/stock.js:1456 +msgid "Edit test result" +msgstr "" + +#: templates/js/translated/part.js:2955 templates/js/translated/stock.js:1457 +#: templates/js/translated/stock.js:1731 +msgid "Delete test result" +msgstr "" + +#: templates/js/translated/part.js:2959 +msgid "This test is defined for a parent part" +msgstr "" + +#: templates/js/translated/part.js:2975 +msgid "Edit Test Result Template" +msgstr "" + +#: templates/js/translated/part.js:2989 +msgid "Delete Test Result Template" +msgstr "" + +#: templates/js/translated/part.js:3068 templates/js/translated/part.js:3069 +msgid "No date specified" +msgstr "" + +#: templates/js/translated/part.js:3071 +msgid "Specified date is in the past" +msgstr "" + +#: templates/js/translated/part.js:3077 +msgid "Speculative" +msgstr "" + +#: templates/js/translated/part.js:3127 +msgid "No scheduling information available for this part" +msgstr "" + +#: templates/js/translated/part.js:3133 +msgid "Error fetching scheduling information for this part" +msgstr "" + +#: templates/js/translated/part.js:3229 +msgid "Scheduled Stock Quantities" +msgstr "" + +#: templates/js/translated/part.js:3245 +msgid "Maximum Quantity" +msgstr "" + +#: templates/js/translated/part.js:3290 +msgid "Minimum Stock Level" +msgstr "" + +#: templates/js/translated/plugin.js:46 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:58 +msgid "This plugin is no longer installed" +msgstr "" + +#: templates/js/translated/plugin.js:60 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "This plugin is installed but not active" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:186 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:186 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 +msgid "The Plugin was installed" +msgstr "" + +#: templates/js/translated/plugin.js:177 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:181 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:189 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:189 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:203 +msgid "Plugin updated" +msgstr "" + +#: templates/js/translated/pricing.js:159 +msgid "Error fetching currency data" +msgstr "" + +#: templates/js/translated/pricing.js:321 +msgid "No BOM data available" +msgstr "" + +#: templates/js/translated/pricing.js:463 +msgid "No supplier pricing data available" +msgstr "" + +#: templates/js/translated/pricing.js:572 +msgid "No price break data available" +msgstr "" + +#: templates/js/translated/pricing.js:755 +msgid "No purchase history data available" +msgstr "" + +#: templates/js/translated/pricing.js:791 +msgid "Purchase Price History" +msgstr "" + +#: templates/js/translated/pricing.js:894 +msgid "No sales history data available" +msgstr "" + +#: templates/js/translated/pricing.js:916 +msgid "Sale Price History" +msgstr "" + +#: templates/js/translated/pricing.js:1005 +msgid "No variant data available" +msgstr "" + +#: templates/js/translated/pricing.js:1045 +msgid "Variant Part" +msgstr "" + +#: templates/js/translated/purchase_order.js:169 +msgid "Select purchase order to duplicate" +msgstr "" + +#: templates/js/translated/purchase_order.js:176 +msgid "Duplicate Line Items" +msgstr "" + +#: templates/js/translated/purchase_order.js:177 +msgid "Duplicate all line items from the selected order" +msgstr "" + +#: templates/js/translated/purchase_order.js:184 +msgid "Duplicate Extra Lines" +msgstr "" + +#: templates/js/translated/purchase_order.js:185 +msgid "Duplicate extra line items from the selected order" +msgstr "" + +#: templates/js/translated/purchase_order.js:206 +msgid "Edit Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:223 +msgid "Duplication Options" +msgstr "" + +#: templates/js/translated/purchase_order.js:431 +msgid "Complete Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:448 +#: templates/js/translated/return_order.js:210 +#: templates/js/translated/sales_order.js:552 +msgid "Mark this order as complete?" +msgstr "" + +#: templates/js/translated/purchase_order.js:454 +msgid "All line items have been received" +msgstr "" + +#: templates/js/translated/purchase_order.js:459 +msgid "This order has line items which have not been marked as received." +msgstr "" + +#: templates/js/translated/purchase_order.js:460 +msgid "Completing this order means that the order and line items will no longer be editable." +msgstr "" + +#: templates/js/translated/purchase_order.js:483 +msgid "Cancel Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:488 +msgid "Are you sure you wish to cancel this purchase order?" +msgstr "" + +#: templates/js/translated/purchase_order.js:494 +msgid "This purchase order can not be cancelled" +msgstr "" + +#: templates/js/translated/purchase_order.js:515 +#: templates/js/translated/return_order.js:164 +msgid "After placing this order, line items will no longer be editable." +msgstr "" + +#: templates/js/translated/purchase_order.js:520 +msgid "Issue Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:612 +msgid "At least one purchaseable part must be selected" +msgstr "" + +#: templates/js/translated/purchase_order.js:637 +msgid "Quantity to order" +msgstr "" + +#: templates/js/translated/purchase_order.js:646 +msgid "New supplier part" +msgstr "" + +#: templates/js/translated/purchase_order.js:664 +msgid "New purchase order" +msgstr "" + +#: templates/js/translated/purchase_order.js:705 +msgid "Add to purchase order" +msgstr "" + +#: templates/js/translated/purchase_order.js:755 +msgid "Merge" +msgstr "" + +#: templates/js/translated/purchase_order.js:859 +msgid "No matching supplier parts" +msgstr "" + +#: templates/js/translated/purchase_order.js:878 +msgid "No matching purchase orders" +msgstr "" + +#: templates/js/translated/purchase_order.js:1073 +#: templates/js/translated/return_order.js:490 +msgid "Select Line Items" +msgstr "" + +#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/return_order.js:491 +msgid "At least one line item must be selected" +msgstr "" + +#: templates/js/translated/purchase_order.js:1104 +msgid "Received Quantity" +msgstr "" + +#: templates/js/translated/purchase_order.js:1115 +msgid "Quantity to receive" +msgstr "" + +#: templates/js/translated/purchase_order.js:1191 +msgid "Stock Status" +msgstr "" + +#: templates/js/translated/purchase_order.js:1205 +msgid "Add barcode" +msgstr "" + +#: templates/js/translated/purchase_order.js:1206 +msgid "Remove barcode" +msgstr "" + +#: templates/js/translated/purchase_order.js:1209 +msgid "Specify location" +msgstr "" + +#: templates/js/translated/purchase_order.js:1217 +msgid "Add batch code" +msgstr "" + +#: templates/js/translated/purchase_order.js:1228 +msgid "Add serial numbers" +msgstr "" + +#: templates/js/translated/purchase_order.js:1280 +msgid "Serials" +msgstr "" + +#: templates/js/translated/purchase_order.js:1305 +msgid "Order Code" +msgstr "" + +#: templates/js/translated/purchase_order.js:1307 +msgid "Quantity to Receive" +msgstr "" + +#: templates/js/translated/purchase_order.js:1333 +#: templates/js/translated/return_order.js:560 +msgid "Confirm receipt of items" +msgstr "" + +#: templates/js/translated/purchase_order.js:1334 +msgid "Receive Purchase Order Items" +msgstr "" + +#: templates/js/translated/purchase_order.js:1402 +msgid "Scan Item Barcode" +msgstr "" + +#: templates/js/translated/purchase_order.js:1403 +msgid "Scan barcode on incoming item (must not match any existing stock items)" +msgstr "" + +#: templates/js/translated/purchase_order.js:1417 +msgid "Invalid barcode data" +msgstr "" + +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/return_order.js:285 +#: templates/js/translated/sales_order.js:810 +#: templates/js/translated/sales_order.js:1034 +msgid "Order is overdue" +msgstr "" + +#: templates/js/translated/purchase_order.js:1843 +msgid "All selected Line items will be deleted" +msgstr "" + +#: templates/js/translated/purchase_order.js:1861 +msgid "Delete selected Line items?" +msgstr "" + +#: templates/js/translated/purchase_order.js:1916 +#: templates/js/translated/sales_order.js:2106 +msgid "Duplicate Line Item" +msgstr "" + +#: templates/js/translated/purchase_order.js:1931 +#: templates/js/translated/return_order.js:475 +#: templates/js/translated/return_order.js:668 +#: templates/js/translated/sales_order.js:2119 +msgid "Edit Line Item" +msgstr "" + +#: templates/js/translated/purchase_order.js:1942 +#: templates/js/translated/return_order.js:681 +#: templates/js/translated/sales_order.js:2130 +msgid "Delete Line Item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2224 +#: templates/js/translated/sales_order.js:2060 +msgid "Duplicate line item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2225 +#: templates/js/translated/return_order.js:800 +#: templates/js/translated/sales_order.js:2061 +msgid "Edit line item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2226 +#: templates/js/translated/return_order.js:804 +#: templates/js/translated/sales_order.js:2067 +msgid "Delete line item" +msgstr "" + +#: templates/js/translated/report.js:49 +msgid "Print Report" +msgstr "" + +#: templates/js/translated/report.js:68 +msgid "Report print successful" +msgstr "" + +#: templates/js/translated/report.js:73 +msgid "Report printing failed" +msgstr "" + +#: templates/js/translated/return_order.js:60 +#: templates/js/translated/sales_order.js:86 +msgid "Add Customer" +msgstr "" + +#: templates/js/translated/return_order.js:134 +msgid "Create Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:149 +msgid "Edit Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:169 +msgid "Issue Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:186 +msgid "Are you sure you wish to cancel this Return Order?" +msgstr "" + +#: templates/js/translated/return_order.js:193 +msgid "Cancel Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:218 +msgid "Complete Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:265 +msgid "No return orders found" +msgstr "" + +#: templates/js/translated/return_order.js:299 +#: templates/js/translated/sales_order.js:824 +msgid "Invalid Customer" +msgstr "" + +#: templates/js/translated/return_order.js:561 +msgid "Receive Return Order Items" +msgstr "" + +#: templates/js/translated/return_order.js:692 +#: templates/js/translated/sales_order.js:2267 +msgid "No matching line items" +msgstr "" + +#: templates/js/translated/return_order.js:797 +msgid "Mark item as received" +msgstr "" + +#: templates/js/translated/sales_order.js:161 +msgid "Create Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:176 +msgid "Edit Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:291 +msgid "No stock items have been allocated to this shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:296 +msgid "The following stock items will be shipped" +msgstr "" + +#: templates/js/translated/sales_order.js:336 +msgid "Complete Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:360 +msgid "Confirm Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:416 +msgid "No pending shipments found" +msgstr "" + +#: templates/js/translated/sales_order.js:420 +msgid "No stock items have been allocated to pending shipments" +msgstr "" + +#: templates/js/translated/sales_order.js:430 +msgid "Complete Shipments" +msgstr "" + +#: templates/js/translated/sales_order.js:452 +msgid "Skip" +msgstr "" + +#: templates/js/translated/sales_order.js:484 +msgid "Ship Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:500 +msgid "Ship this order?" +msgstr "" + +#: templates/js/translated/sales_order.js:506 +msgid "Order cannot be shipped as there are incomplete shipments" +msgstr "" + +#: templates/js/translated/sales_order.js:513 +msgid "This order has line items which have not been completed." +msgstr "" + +#: templates/js/translated/sales_order.js:514 +msgid "Shipping this order means that the order and line items will no longer be editable." +msgstr "" + +#: templates/js/translated/sales_order.js:572 +msgid "Issue this Sales Order?" +msgstr "" + +#: templates/js/translated/sales_order.js:577 +msgid "Issue Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:596 +msgid "Cancel Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:601 +msgid "Cancelling this order means that the order will no longer be editable." +msgstr "" + +#: templates/js/translated/sales_order.js:655 +msgid "Create New Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:764 +msgid "No sales orders found" +msgstr "" + +#: templates/js/translated/sales_order.js:944 +msgid "Edit shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:947 +msgid "Complete shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:952 +msgid "Delete shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:969 +msgid "Edit Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:984 +msgid "Delete Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:1017 +msgid "No matching shipments found" +msgstr "" + +#: templates/js/translated/sales_order.js:1042 +msgid "Shipment Reference" +msgstr "" + +#: templates/js/translated/sales_order.js:1066 +#: templates/js/translated/sales_order.js:1565 +msgid "Not shipped" +msgstr "" + +#: templates/js/translated/sales_order.js:1084 +msgid "Tracking" +msgstr "" + +#: templates/js/translated/sales_order.js:1088 +msgid "Invoice" +msgstr "" + +#: templates/js/translated/sales_order.js:1255 +msgid "Add Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:1306 +msgid "Confirm stock allocation" +msgstr "" + +#: templates/js/translated/sales_order.js:1307 +msgid "Allocate Stock Items to Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:1513 +msgid "No sales order allocations found" +msgstr "" + +#: templates/js/translated/sales_order.js:1605 +msgid "Edit Stock Allocation" +msgstr "" + +#: templates/js/translated/sales_order.js:1619 +msgid "Confirm Delete Operation" +msgstr "" + +#: templates/js/translated/sales_order.js:1620 +msgid "Delete Stock Allocation" +msgstr "" + +#: templates/js/translated/sales_order.js:1659 +#: templates/js/translated/sales_order.js:1746 +#: templates/js/translated/stock.js:1776 +msgid "Shipped to customer" +msgstr "" + +#: templates/js/translated/sales_order.js:1667 +#: templates/js/translated/sales_order.js:1755 +msgid "Stock location not specified" +msgstr "" + +#: templates/js/translated/sales_order.js:2044 +msgid "Allocate serial numbers" +msgstr "" + +#: templates/js/translated/sales_order.js:2048 +msgid "Purchase stock" +msgstr "" + +#: templates/js/translated/sales_order.js:2057 +#: templates/js/translated/sales_order.js:2245 +msgid "Calculate price" +msgstr "" + +#: templates/js/translated/sales_order.js:2071 +msgid "Cannot be deleted as items have been shipped" +msgstr "" + +#: templates/js/translated/sales_order.js:2074 +msgid "Cannot be deleted as items have been allocated" +msgstr "" + +#: templates/js/translated/sales_order.js:2145 +msgid "Allocate Serial Numbers" +msgstr "" + +#: templates/js/translated/sales_order.js:2253 +msgid "Update Unit Price" +msgstr "" + +#: templates/js/translated/search.js:270 +msgid "No results" +msgstr "" + +#: templates/js/translated/search.js:292 templates/search.html:25 +msgid "Enter search query" +msgstr "" + +#: templates/js/translated/search.js:342 +msgid "result" +msgstr "" + +#: templates/js/translated/search.js:352 +msgid "Minimize results" +msgstr "" + +#: templates/js/translated/search.js:355 +msgid "Remove results" +msgstr "" + +#: templates/js/translated/stock.js:98 +msgid "Serialize Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:129 +msgid "Confirm Stock Serialization" +msgstr "" + +#: templates/js/translated/stock.js:139 +msgid "Default icon for all locations that have no icon set (optional) - Explore all available icons on" +msgstr "" + +#: templates/js/translated/stock.js:166 +msgid "Add Location type" +msgstr "" + +#: templates/js/translated/stock.js:202 +msgid "Edit Stock Location" +msgstr "" + +#: templates/js/translated/stock.js:217 +msgid "New Stock Location" +msgstr "" + +#: templates/js/translated/stock.js:219 +msgid "Create another location after this one" +msgstr "" + +#: templates/js/translated/stock.js:220 +msgid "Stock location created" +msgstr "" + +#: templates/js/translated/stock.js:234 +msgid "Are you sure you want to delete this stock location?" +msgstr "" + +#: templates/js/translated/stock.js:241 +msgid "Move to parent stock location" +msgstr "" + +#: templates/js/translated/stock.js:250 +msgid "Delete Stock Location" +msgstr "" + +#: templates/js/translated/stock.js:254 +msgid "Action for stock items in this stock location" +msgstr "" + +#: templates/js/translated/stock.js:259 +msgid "Action for sub-locations" +msgstr "" + +#: templates/js/translated/stock.js:313 +msgid "This part cannot be serialized" +msgstr "" + +#: templates/js/translated/stock.js:349 +msgid "Add given quantity as packs instead of individual items" +msgstr "" + +#: templates/js/translated/stock.js:362 +msgid "Enter initial quantity for this stock item" +msgstr "" + +#: templates/js/translated/stock.js:368 +msgid "Enter serial numbers for new stock (or leave blank)" +msgstr "" + +#: templates/js/translated/stock.js:439 +msgid "Stock item duplicated" +msgstr "" + +#: templates/js/translated/stock.js:459 +msgid "Duplicate Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:475 +msgid "Are you sure you want to delete this stock item?" +msgstr "" + +#: templates/js/translated/stock.js:480 +msgid "Delete Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:501 +msgid "Edit Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:543 +msgid "Create another item after this one" +msgstr "" + +#: templates/js/translated/stock.js:555 +msgid "Created new stock item" +msgstr "" + +#: templates/js/translated/stock.js:568 +msgid "Created multiple stock items" +msgstr "" + +#: templates/js/translated/stock.js:593 +msgid "Find Serial Number" +msgstr "" + +#: templates/js/translated/stock.js:597 templates/js/translated/stock.js:598 +msgid "Enter serial number" +msgstr "" + +#: templates/js/translated/stock.js:614 +msgid "Enter a serial number" +msgstr "" + +#: templates/js/translated/stock.js:634 +msgid "No matching serial number" +msgstr "" + +#: templates/js/translated/stock.js:643 +msgid "More than one matching result found" +msgstr "" + +#: templates/js/translated/stock.js:751 +msgid "Confirm stock assignment" +msgstr "" + +#: templates/js/translated/stock.js:752 +msgid "Assign Stock to Customer" +msgstr "" + +#: templates/js/translated/stock.js:829 +msgid "Warning: Merge operation cannot be reversed" +msgstr "" + +#: templates/js/translated/stock.js:830 +msgid "Some information will be lost when merging stock items" +msgstr "" + +#: templates/js/translated/stock.js:832 +msgid "Stock transaction history will be deleted for merged items" +msgstr "" + +#: templates/js/translated/stock.js:833 +msgid "Supplier part information will be deleted for merged items" +msgstr "" + +#: templates/js/translated/stock.js:928 +msgid "Confirm stock item merge" +msgstr "" + +#: templates/js/translated/stock.js:929 +msgid "Merge Stock Items" +msgstr "" + +#: templates/js/translated/stock.js:1024 +msgid "Transfer Stock" +msgstr "" + +#: templates/js/translated/stock.js:1025 +msgid "Move" +msgstr "" + +#: templates/js/translated/stock.js:1031 +msgid "Count Stock" +msgstr "" + +#: templates/js/translated/stock.js:1032 +msgid "Count" +msgstr "" + +#: templates/js/translated/stock.js:1036 +msgid "Remove Stock" +msgstr "" + +#: templates/js/translated/stock.js:1037 +msgid "Take" +msgstr "" + +#: templates/js/translated/stock.js:1041 +msgid "Add Stock" +msgstr "" + +#: templates/js/translated/stock.js:1042 users/models.py:396 +msgid "Add" +msgstr "" + +#: templates/js/translated/stock.js:1046 +msgid "Delete Stock" +msgstr "" + +#: templates/js/translated/stock.js:1146 +msgid "Quantity cannot be adjusted for serialized stock" +msgstr "" + +#: templates/js/translated/stock.js:1146 +msgid "Specify stock quantity" +msgstr "" + +#: templates/js/translated/stock.js:1180 templates/js/translated/stock.js:3299 +msgid "Select Stock Items" +msgstr "" + +#: templates/js/translated/stock.js:1181 +msgid "Select at least one available stock item" +msgstr "" + +#: templates/js/translated/stock.js:1227 +msgid "Confirm stock adjustment" +msgstr "" + +#: templates/js/translated/stock.js:1363 +msgid "PASS" +msgstr "" + +#: templates/js/translated/stock.js:1365 +msgid "FAIL" +msgstr "" + +#: templates/js/translated/stock.js:1370 +msgid "NO RESULT" +msgstr "" + +#: templates/js/translated/stock.js:1450 +msgid "Pass test" +msgstr "" + +#: templates/js/translated/stock.js:1453 +msgid "Add test result" +msgstr "" + +#: templates/js/translated/stock.js:1476 +msgid "No test results found" +msgstr "" + +#: templates/js/translated/stock.js:1540 +msgid "Test Date" +msgstr "" + +#: templates/js/translated/stock.js:1553 +msgid "Test started" +msgstr "" + +#: templates/js/translated/stock.js:1562 +msgid "Test finished" +msgstr "" + +#: templates/js/translated/stock.js:1716 +msgid "Edit Test Result" +msgstr "" + +#: templates/js/translated/stock.js:1736 +msgid "Delete Test Result" +msgstr "" + +#: templates/js/translated/stock.js:1768 +msgid "In production" +msgstr "" + +#: templates/js/translated/stock.js:1772 +msgid "Installed in Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:1780 +msgid "Assigned to Sales Order" +msgstr "" + +#: templates/js/translated/stock.js:1786 +msgid "No stock location set" +msgstr "" + +#: templates/js/translated/stock.js:1842 +msgid "Change stock status" +msgstr "" + +#: templates/js/translated/stock.js:1851 +msgid "Merge stock" +msgstr "" + +#: templates/js/translated/stock.js:1900 +msgid "Delete stock" +msgstr "" + +#: templates/js/translated/stock.js:1953 +msgid "stock items" +msgstr "" + +#: templates/js/translated/stock.js:1958 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1969 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:2013 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2091 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2096 +msgid "Stock item assigned to sales order" +msgstr "" + +#: templates/js/translated/stock.js:2099 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2102 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2104 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2106 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2109 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2111 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2115 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2117 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2122 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2124 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2126 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2130 +#: templates/js/translated/table_filters.js:350 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2295 +msgid "Supplier part not specified" +msgstr "" + +#: templates/js/translated/stock.js:2342 +msgid "Stock Value" +msgstr "" + +#: templates/js/translated/stock.js:2470 +msgid "No stock items matching query" +msgstr "" + +#: templates/js/translated/stock.js:2573 +msgid "stock locations" +msgstr "" + +#: templates/js/translated/stock.js:2728 +msgid "Load Sublocations" +msgstr "" + +#: templates/js/translated/stock.js:2846 +msgid "Details" +msgstr "" + +#: templates/js/translated/stock.js:2850 +msgid "No changes" +msgstr "" + +#: templates/js/translated/stock.js:2862 +msgid "Part information unavailable" +msgstr "" + +#: templates/js/translated/stock.js:2884 +msgid "Location no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2901 +msgid "Build order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2916 +msgid "Purchase order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2933 +msgid "Sales Order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2950 +msgid "Return Order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2969 +msgid "Customer no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2987 +msgid "Stock item no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:3005 +msgid "Added" +msgstr "" + +#: templates/js/translated/stock.js:3013 +msgid "Removed" +msgstr "" + +#: templates/js/translated/stock.js:3085 +msgid "No installed items" +msgstr "" + +#: templates/js/translated/stock.js:3139 templates/js/translated/stock.js:3175 +msgid "Uninstall Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:3197 +msgid "Select stock item to uninstall" +msgstr "" + +#: templates/js/translated/stock.js:3218 +msgid "Install another stock item into this item" +msgstr "" + +#: templates/js/translated/stock.js:3219 +msgid "Stock items can only be installed if they meet the following criteria" +msgstr "" + +#: templates/js/translated/stock.js:3221 +msgid "The Stock Item links to a Part which is the BOM for this Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:3222 +msgid "The Stock Item is currently available in stock" +msgstr "" + +#: templates/js/translated/stock.js:3223 +msgid "The Stock Item is not already installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:3224 +msgid "The Stock Item is tracked by either a batch code or serial number" +msgstr "" + +#: templates/js/translated/stock.js:3237 +msgid "Select part to install" +msgstr "" + +#: templates/js/translated/stock.js:3300 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3313 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3317 +msgid "Change Stock Status" +msgstr "" + +#: templates/js/translated/table_filters.js:74 +msgid "Has project code" +msgstr "" + +#: templates/js/translated/table_filters.js:89 +#: templates/js/translated/table_filters.js:605 +#: templates/js/translated/table_filters.js:617 +#: templates/js/translated/table_filters.js:658 +msgid "Order status" +msgstr "" + +#: templates/js/translated/table_filters.js:94 +#: templates/js/translated/table_filters.js:622 +#: templates/js/translated/table_filters.js:648 +#: templates/js/translated/table_filters.js:663 +msgid "Outstanding" +msgstr "" + +#: templates/js/translated/table_filters.js:102 +#: templates/js/translated/table_filters.js:528 +#: templates/js/translated/table_filters.js:630 +#: templates/js/translated/table_filters.js:671 +msgid "Assigned to me" +msgstr "" + +#: templates/js/translated/table_filters.js:158 +msgid "Trackable Part" +msgstr "" + +#: templates/js/translated/table_filters.js:162 +msgid "Assembled Part" +msgstr "" + +#: templates/js/translated/table_filters.js:166 +msgid "Has Available Stock" +msgstr "" + +#: templates/js/translated/table_filters.js:182 +msgid "Allow Variant Stock" +msgstr "" + +#: templates/js/translated/table_filters.js:234 +#: templates/js/translated/table_filters.js:345 +msgid "Include sublocations" +msgstr "" + +#: templates/js/translated/table_filters.js:235 +msgid "Include locations" +msgstr "" + +#: templates/js/translated/table_filters.js:267 +msgid "Has location type" +msgstr "" + +#: templates/js/translated/table_filters.js:278 +#: templates/js/translated/table_filters.js:279 +#: templates/js/translated/table_filters.js:711 +msgid "Include subcategories" +msgstr "" + +#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:764 +msgid "Subscribed" +msgstr "" + +#: templates/js/translated/table_filters.js:298 +#: templates/js/translated/table_filters.js:380 +msgid "Is Serialized" +msgstr "" + +#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/table_filters.js:387 +msgid "Serial number GTE" +msgstr "" + +#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:388 +msgid "Serial number greater than or equal to" +msgstr "" + +#: templates/js/translated/table_filters.js:305 +#: templates/js/translated/table_filters.js:391 +msgid "Serial number LTE" +msgstr "" + +#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:392 +msgid "Serial number less than or equal to" +msgstr "" + +#: templates/js/translated/table_filters.js:309 +#: templates/js/translated/table_filters.js:310 +#: templates/js/translated/table_filters.js:383 +#: templates/js/translated/table_filters.js:384 +msgid "Serial number" +msgstr "" + +#: templates/js/translated/table_filters.js:314 +#: templates/js/translated/table_filters.js:405 +msgid "Batch code" +msgstr "" + +#: templates/js/translated/table_filters.js:325 +#: templates/js/translated/table_filters.js:700 +msgid "Active parts" +msgstr "" + +#: templates/js/translated/table_filters.js:326 +msgid "Show stock for active parts" +msgstr "" + +#: templates/js/translated/table_filters.js:331 +msgid "Part is an assembly" +msgstr "" + +#: templates/js/translated/table_filters.js:335 +msgid "Is allocated" +msgstr "" + +#: templates/js/translated/table_filters.js:336 +msgid "Item has been allocated" +msgstr "" + +#: templates/js/translated/table_filters.js:341 +msgid "Stock is available for use" +msgstr "" + +#: templates/js/translated/table_filters.js:346 +msgid "Include stock in sublocations" +msgstr "" + +#: templates/js/translated/table_filters.js:351 +msgid "Show stock items which are depleted" +msgstr "" + +#: templates/js/translated/table_filters.js:356 +msgid "Show items which are in stock" +msgstr "" + +#: templates/js/translated/table_filters.js:361 +msgid "Show items which are in production" +msgstr "" + +#: templates/js/translated/table_filters.js:365 +msgid "Include Variants" +msgstr "" + +#: templates/js/translated/table_filters.js:366 +msgid "Include stock items for variant parts" +msgstr "" + +#: templates/js/translated/table_filters.js:371 +msgid "Show stock items which are installed in another item" +msgstr "" + +#: templates/js/translated/table_filters.js:376 +msgid "Show items which have been assigned to a customer" +msgstr "" + +#: templates/js/translated/table_filters.js:396 +#: templates/js/translated/table_filters.js:397 +msgid "Stock status" +msgstr "" + +#: templates/js/translated/table_filters.js:400 +msgid "Has batch code" +msgstr "" + +#: templates/js/translated/table_filters.js:409 +msgid "Stock item is tracked by either batch code or serial number" +msgstr "" + +#: templates/js/translated/table_filters.js:414 +msgid "Has purchase price" +msgstr "" + +#: templates/js/translated/table_filters.js:415 +msgid "Show stock items which have a purchase price set" +msgstr "" + +#: templates/js/translated/table_filters.js:419 +msgid "Expiry Date before" +msgstr "" + +#: templates/js/translated/table_filters.js:423 +msgid "Expiry Date after" +msgstr "" + +#: templates/js/translated/table_filters.js:436 +msgid "Show stock items which have expired" +msgstr "" + +#: templates/js/translated/table_filters.js:442 +msgid "Show stock which is close to expiring" +msgstr "" + +#: templates/js/translated/table_filters.js:456 +msgid "Test Passed" +msgstr "" + +#: templates/js/translated/table_filters.js:460 +msgid "Include Installed Items" +msgstr "" + +#: templates/js/translated/table_filters.js:515 +msgid "Build status" +msgstr "" + +#: templates/js/translated/table_filters.js:712 +msgid "Include parts in subcategories" +msgstr "" + +#: templates/js/translated/table_filters.js:717 +msgid "Show active parts" +msgstr "" + +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 +msgid "Available stock" +msgstr "" + +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 +msgid "Has Units" +msgstr "" + +#: templates/js/translated/table_filters.js:739 +msgid "Part has defined units" +msgstr "" + +#: templates/js/translated/table_filters.js:743 +msgid "Has IPN" +msgstr "" + +#: templates/js/translated/table_filters.js:744 +msgid "Part has internal part number" +msgstr "" + +#: templates/js/translated/table_filters.js:748 +msgid "In stock" +msgstr "" + +#: templates/js/translated/table_filters.js:756 +msgid "Purchasable" +msgstr "" + +#: templates/js/translated/table_filters.js:768 +msgid "Has stocktake entries" +msgstr "" + +#: templates/js/translated/table_filters.js:834 +msgid "Has Choices" +msgstr "" + +#: templates/js/translated/tables.js:92 +msgid "Display calendar view" +msgstr "" + +#: templates/js/translated/tables.js:102 +msgid "Display list view" +msgstr "" + +#: templates/js/translated/tables.js:112 +msgid "Display tree view" +msgstr "" + +#: templates/js/translated/tables.js:130 +msgid "Expand all rows" +msgstr "" + +#: templates/js/translated/tables.js:136 +msgid "Collapse all rows" +msgstr "" + +#: templates/js/translated/tables.js:186 +msgid "Export Table Data" +msgstr "" + +#: templates/js/translated/tables.js:190 +msgid "Select File Format" +msgstr "" + +#: templates/js/translated/tables.js:529 +msgid "Loading data" +msgstr "" + +#: templates/js/translated/tables.js:532 +msgid "rows per page" +msgstr "" + +#: templates/js/translated/tables.js:537 +msgid "Showing all rows" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "Showing" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "to" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "of" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "rows" +msgstr "" + +#: templates/js/translated/tables.js:546 +msgid "No matching results" +msgstr "" + +#: templates/js/translated/tables.js:549 +msgid "Hide/Show pagination" +msgstr "" + +#: templates/js/translated/tables.js:555 +msgid "Toggle" +msgstr "" + +#: templates/js/translated/tables.js:561 +msgid "All" +msgstr "" + +#: templates/navbar.html:45 +msgid "Buy" +msgstr "" + +#: templates/navbar.html:57 +msgid "Sell" +msgstr "" + +#: templates/navbar.html:121 +msgid "Show Notifications" +msgstr "" + +#: templates/navbar.html:124 +msgid "New Notifications" +msgstr "" + +#: templates/navbar.html:144 users/models.py:201 +msgid "Admin" +msgstr "" + +#: templates/navbar.html:148 +msgid "Logout" +msgstr "" + +#: templates/notes_buttons.html:6 templates/notes_buttons.html:7 +msgid "Save" +msgstr "" + +#: templates/notifications.html:9 +msgid "Show all notifications and history" +msgstr "" + +#: templates/pui_banner.html:9 +msgid "Platform UI - the new UI for InvenTree - provides more modern administration options." +msgstr "" + +#: templates/pui_banner.html:12 +msgid "Platform UI - the new UI for InvenTree - is ready to be tested." +msgstr "" + +#: templates/pui_banner.html:15 +msgid "Try it out now" +msgstr "" + +#: templates/pui_banner.html:15 +msgid "here" +msgstr "" + +#: templates/qr_code.html:11 +msgid "QR data not provided" +msgstr "" + +#: templates/registration/logged_out.html:7 +msgid "You were logged out successfully." +msgstr "" + +#: templates/registration/logged_out.html:9 +msgid "Log in again" +msgstr "" + +#: templates/search.html:9 +msgid "Show full search results" +msgstr "" + +#: templates/search.html:12 +msgid "Clear search" +msgstr "" + +#: templates/search.html:15 +msgid "Close search menu" +msgstr "" + +#: templates/socialaccount/authentication_error.html:5 +msgid "Social Network Login Failure" +msgstr "" + +#: templates/socialaccount/authentication_error.html:8 +msgid "Account Login Failure" +msgstr "" + +#: templates/socialaccount/authentication_error.html:11 +msgid "An error occurred while attempting to login via your social network account." +msgstr "" + +#: templates/socialaccount/authentication_error.html:13 +msgid "Contact your system administrator for further information." +msgstr "" + +#: templates/socialaccount/login.html:13 +#, python-format +msgid "Connect %(provider)s" +msgstr "" + +#: templates/socialaccount/login.html:15 +#, python-format +msgid "You are about to connect a new third party account from %(provider)s." +msgstr "" + +#: templates/socialaccount/login.html:17 +#, python-format +msgid "Sign In Via %(provider)s" +msgstr "" + +#: templates/socialaccount/login.html:19 +#, python-format +msgid "You are about to sign in using a third party account from %(provider)s." +msgstr "" + +#: templates/socialaccount/login.html:24 +msgid "Continue" +msgstr "" + +#: templates/socialaccount/login.html:29 +msgid "Invalid SSO Provider" +msgstr "" + +#: templates/socialaccount/login.html:31 +msgid "The selected SSO provider is invalid, or has not been correctly configured" +msgstr "" + +#: templates/socialaccount/signup.html:11 +#, python-format +msgid "You are about to use your %(provider_name)s account to login to %(site_name)s." +msgstr "" + +#: templates/socialaccount/signup.html:13 +msgid "As a final step, please complete the following form" +msgstr "" + +#: templates/socialaccount/snippets/provider_list.html:26 +msgid "Provider has not been configured" +msgstr "" + +#: templates/socialaccount/snippets/provider_list.html:35 +msgid "No SSO providers have been configured" +msgstr "" + +#: templates/stats.html:13 +msgid "Instance Name" +msgstr "" + +#: templates/stats.html:18 +msgid "Database" +msgstr "" + +#: templates/stats.html:26 +msgid "Server is running in debug mode" +msgstr "" + +#: templates/stats.html:33 +msgid "Docker Mode" +msgstr "" + +#: templates/stats.html:34 +msgid "Server is deployed using docker" +msgstr "" + +#: templates/stats.html:39 +msgid "Plugin Support" +msgstr "" + +#: templates/stats.html:43 +msgid "Plugin support enabled" +msgstr "" + +#: templates/stats.html:45 +msgid "Plugin support disabled" +msgstr "" + +#: templates/stats.html:52 +msgid "Server status" +msgstr "" + +#: templates/stats.html:55 +msgid "Healthy" +msgstr "" + +#: templates/stats.html:57 +msgid "Issues detected" +msgstr "" + +#: templates/stats.html:64 +msgid "Background Worker" +msgstr "" + +#: templates/stats.html:67 +msgid "Background worker not running" +msgstr "" + +#: templates/stats.html:75 +msgid "Email Settings" +msgstr "" + +#: templates/stats.html:78 +msgid "Email settings not configured" +msgstr "" + +#: templates/yesnolabel.html:4 +msgid "Yes" +msgstr "" + +#: templates/yesnolabel.html:6 +msgid "No" +msgstr "" + +#: users/admin.py:104 +msgid "Users" +msgstr "" + +#: users/admin.py:105 +msgid "Select which users are assigned to this group" +msgstr "" + +#: users/admin.py:249 +msgid "The following users are members of multiple groups" +msgstr "" + +#: users/admin.py:283 +msgid "Personal info" +msgstr "" + +#: users/admin.py:285 +msgid "Permissions" +msgstr "" + +#: users/admin.py:288 +msgid "Important dates" +msgstr "" + +#: users/authentication.py:29 users/models.py:138 +msgid "Token has been revoked" +msgstr "" + +#: users/authentication.py:32 +msgid "Token has expired" +msgstr "" + +#: users/models.py:81 +msgid "API Token" +msgstr "" + +#: users/models.py:82 +msgid "API Tokens" +msgstr "" + +#: users/models.py:118 +msgid "Token Name" +msgstr "" + +#: users/models.py:119 +msgid "Custom token name" +msgstr "" + +#: users/models.py:125 +msgid "Token expiry date" +msgstr "" + +#: users/models.py:133 +msgid "Last Seen" +msgstr "" + +#: users/models.py:134 +msgid "Last time the token was used" +msgstr "" + +#: users/models.py:138 +msgid "Revoked" +msgstr "" + +#: users/models.py:379 +msgid "Permission set" +msgstr "" + +#: users/models.py:388 +msgid "Group" +msgstr "" + +#: users/models.py:392 +msgid "View" +msgstr "" + +#: users/models.py:392 +msgid "Permission to view items" +msgstr "" + +#: users/models.py:396 +msgid "Permission to add items" +msgstr "" + +#: users/models.py:400 +msgid "Change" +msgstr "" + +#: users/models.py:402 +msgid "Permissions to edit items" +msgstr "" + +#: users/models.py:408 +msgid "Permission to delete items" +msgstr "" diff --git a/src/backend/InvenTree/locale/bg/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/bg/LC_MESSAGES/django.po index 92dc852bcd..e430171527 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "Не е намерена крайна точка на API" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Потребителя няма нужното разрешение, за да вижда този модел" @@ -56,21 +56,21 @@ msgstr "Подробности за грешката могат да се нам msgid "Enter date" msgstr "Въведи дата" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "Въведената основна електронна поща е н msgid "The provided email domain is not approved." msgstr "Въведеният домейн на електронната поща не е утвърден." -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Регистрацията е деактивирана." @@ -348,8 +348,8 @@ msgstr "Китайски (традиционен)" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "Част" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Потребител" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Изпратено" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "Цялостна наличност" @@ -6034,7 +6375,7 @@ msgstr "Цялостна наличност" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "Наличност" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "Няма наличност" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "Място в склада" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "Места в склада" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/cs/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/cs/LC_MESSAGES/django.po index 03e53a7bdc..42a8ecd963 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API endpoint nebyl nalezen" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Uživatel nemá právo zobrazit tento model" @@ -56,21 +56,21 @@ msgstr "Podrobnosti o chybě lze nalézt v panelu administrace" msgid "Enter date" msgstr "Zadejte datum" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Registrace vypnuta." @@ -348,8 +348,8 @@ msgstr "Čínština (tradiční)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Přihlásit se do aplikace" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Metadata pluginu" msgid "JSON metadata field, for use by external plugins" msgstr "Pole metadat JSON pro použití externími pluginy" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Nesprávně naformátovaný vzor" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Neznámý formát klíče" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Chybí požadovaný klíč" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Referenční pole nemůže být prázdné" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Referenční číslo musí odpovídat požadovanému vzoru" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Referenční číslo je příliš velké" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 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:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Neplatný výběr" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Neplatný výběr" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Název" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Název" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Název" msgid "Description" msgstr "Popis" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Popis (volitelně)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Cesta" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Poznámky (volitelné)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Data čárového kódu" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Data čárového kódu třetí strany" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Hash čárového kódu" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Jedinečný hash dat čárového kódu" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Nalezen existující čárový kód" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Chyba serveru" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Server zaznamenal chybu." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Musí být platné číslo" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Měna" msgid "Select currency from available options" msgstr "Vyberte měnu z dostupných možností" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "Uživatelské jméno" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "Křestní jméno" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "Křestní jméno uživatele" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "Příjmení" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "Příjmení uživatele" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "Emailová adresa uživatele" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "Personál" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "Má tento uživatel oprávnění personálu" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "Super-uživatel" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "Je tento uživatel superuživatel" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Aktivní" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "Je tento uživatelský účet aktivní" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Nemáte oprávnění měnit tuto uživatelskou roli." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Pouze superuživatelé mohou vytvářet nové uživatele" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Váš účet byl vytvořen." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Pro přihlášení použijte funkci obnovení hesla" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Vítejte v InvenTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Neplatná hodnota" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Datový soubor" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Vyberte datový soubor k nahrání" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Nepodporovaný typ souboru" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Soubor je příliš velký" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "V souboru nebyly nalezeny žádné sloupce" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "V souboru nebyly nalezeny žádné řádky s daty" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Nebyly zadány žádné řádky s daty" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Nebyly zadány žádné sloupce s daty" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Chybí povinný sloupec: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplicitní sloupec: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Vzdálený obraz" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URL souboru vzdáleného obrázku" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Stahování obrázků ze vzdálené URL není povoleno" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Kontrola procesů na pozadí se nezdařila" @@ -654,47 +711,48 @@ msgstr "Informace o systému" msgid "About InvenTree" msgstr "O InvenTree" -#: build/api.py:255 +#: build/api.py:248 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:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Spotřební materiál" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Volitelné" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Sledováno" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Přiděleno" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Dostupné" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Vytvořit objednávku" msgid "Build Orders" msgstr "Vytvořené objednávky" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Neplatná volba nadřazeného sestavení" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "Musí být specifikován odpovědný uživatel nebo skupina" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "Díly obědnávky sestavení nemohou být změněny" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Referenční číslo objednávky" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Referenční číslo objednávky" msgid "Reference" msgstr "Reference" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Stručný popis sestavení (nepovinné)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Nadřazená sestava" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Příkaz sestavení pro který je toto sestavení přiděleno" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Příkaz sestavení pro který je toto sestavení přiděleno" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Příkaz sestavení pro který je toto sestavení přiděleno" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Příkaz sestavení pro který je toto sestavení přiděleno" msgid "Part" msgstr "Díl" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Vyber téma, které chceš stavět" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Referenční číslo prodejní objednávky" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Prodejní příkaz, kterému je tato verze přidělena" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Umístění lokace" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Vyberte lokaci, ze které chcete provést inventuru pro sestavu. (nechte prázdné, chcete-li provést inventuru z libovolné lokace)" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Cílová lokace" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "Vyberte lokaci, kde budou dokončené položky uloženy" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Množství sestav" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Počet skladových položek k sestavení" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Dokončené položky" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Počet skladových položek, které byly dokončeny" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Stav sestavení" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Stavový kód sestavení" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Kód dávky" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Dávkový kód pro tento výstup sestavení" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Datum vytvoření" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Cílové datum dokončení" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Datum dokončení" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "dokončil" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Vystavil" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Uživatel, který vydal tento příkaz k sestavení" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Uživatel, který vydal tento příkaz k sestavení" msgid "Responsible" msgstr "Odpovědný" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "Uživatel nebo skupina odpovědná za tento příkaz k sestavení" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Externí odkaz" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Odkaz na externí URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Priorita sestavení" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Priorita tohoto příkazu k sestavení" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Priorita tohoto příkazu k sestavení" msgid "Project Code" msgstr "Kód projektu" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Kód projektu pro objednávku sestavení" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 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:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Příkaz k sestavení {build} byl dokončen" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "Příkaz k sestavení byl dokončen" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Nebyl specifikováno žádný výstup sestavení" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Výstup sestavení je již dokončen" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "Výstup sestavení neodpovídá příkazu sestavení" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "Množství musí být vyšší než nula" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 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:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, 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:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "Vytvořit položku řádku objednávky" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Vytvořit objekt" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Vytvořit objekt" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Vytvořit objekt" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Vytvořit objekt" msgid "Quantity" msgstr "Množství" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Vyžadované množství pro objednávku" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Skladová položka je nadměrně zabrána" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Zabrané množství musí být větší než nula" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Množství musí být 1 pro zřetězený sklad" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "Vybraná položka zásob neodpovídá řádku BOM" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "Vybraná položka zásob neodpovídá řádku BOM" msgid "Stock Item" msgstr "Skladové položky" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Zdrojová skladová položka" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Skladové množství pro sestavení" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Instalovat do" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Cílová skladová položka" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "Název dílu" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Vytvořit výstup" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "Vytvořený výstup neodpovídá nadřazenému sestavení" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "Výstupní část se neshoduje s částí příkazu sestavení" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Výstup sestavení je již dokončen" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "Tento stavební výstup není plně přiřazen" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Zadejte množství pro výstup sestavení" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "Celé množství požadované pro sledovatelné díly" -#: build/serializers.py:278 +#: build/serializers.py:282 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:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Sériová čísla" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Zadejte sériová čísla pro sestavení výstupů" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Zadejte sériová čísla pro sestavení výstupů" msgid "Location" msgstr "Lokace" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "Skladové umístění pro výstup sestavy" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Automaticky zvolit sériová čísla" -#: build/serializers.py:315 +#: build/serializers.py:319 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:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "U sledovatelných dílů musí být uvedena sériová čísla" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 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:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "Musí být uveden seznam výstupů sestavy" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "Umístění zásob pro seškrábnuté výstupy" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "Zahodit alokace" -#: build/serializers.py:448 +#: build/serializers.py:452 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:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "Důvod vyřazení výstupu(ů) sestavy" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "Umístění dokončených výstupů sestavy" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "Umístění dokončených výstupů sestavy" msgid "Status" msgstr "Stav" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Přijmout neúplné přidělení" -#: build/serializers.py:526 +#: build/serializers.py:530 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:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "Spotřebovat přidělené zásoby" -#: build/serializers.py:612 +#: build/serializers.py:616 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:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "Odstranit neúplné výstupy" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "Odstranit všechny výstupy sestavy, které nebyly dokončeny" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Není povoleno" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Přijmout jako spotřebované touto objednávkou sestavy" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "Uvolnit před dokončením této objednávky sestavy" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Nadměrně přidělené zásoby" -#: build/serializers.py:680 +#: build/serializers.py:684 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 objednávce na sestavu" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "Některé skladové položky byly nadměrně přiděleny" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Přijmout nepřidělené" -#: build/serializers.py:696 +#: build/serializers.py:700 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 této objednávce sestavy" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "Požadované zásoby nebyly plně přiděleny" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Přijmout neúplné" -#: build/serializers.py:712 +#: build/serializers.py:716 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:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "Požadované množství sestavy nebylo dokončeno" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "Objednávka sestavy má neúplné výstupy" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Linka sestavy" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Výstup sestavy" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "Výstup sestavy musí odkazovat na stejnou sestavu" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "Řádková položka sestavy" -#: build/serializers.py:837 +#: build/serializers.py:841 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 objednávka sestavy" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "Položka musí být skladem" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Dostupné množství ({q}) překročeno" -#: build/serializers.py:906 +#: build/serializers.py:910 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:913 +#: build/serializers.py:917 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:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "Položky přidělení musí být poskytnuty" -#: build/serializers.py:1000 +#: build/serializers.py:1004 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:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Vynechat lokace" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "Vyloučit skladové položky z tohoto vybraného umístění" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "Zaměnitelné zásoby" -#: build/serializers.py:1015 +#: build/serializers.py:1019 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:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Náhradní zásoby" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "Povolit přidělování náhradních dílů" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "Volitelné položky" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "Přiřazení volitelných BOM položek k objednávce sestavy" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "Nepodařilo se spustit úlohu automatického přidělování" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Číslo dílu výrobce" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "IPN dílu" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Sledovatelné" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "BOM Položka" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "Přidělené zásoby" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "Na objednávku" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "Ve výrobě" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "Dostupné zásoby" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Výroba" msgid "Cancelled" msgstr "Zrušeno" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "Zásoby nebyly plně přiřazeny k této objednávce na sestavu" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "Dokončené výstupy" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Zdroj zásob" msgid "Stock can be taken from any available location." msgstr "Zásoby lze odebírat z jakéhokoli dostupného umístění." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Místo určení" @@ -1827,31 +1956,31 @@ msgstr "Podrobnosti o objednávce sestavy" msgid "Incomplete Outputs" msgstr "Neúplné výstupy" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "Je odkaz" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "Je soubor" -#: common/api.py:739 +#: common/api.py:740 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:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "Neplatný kód měny" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "Duplicitní kód měny" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "Nejsou uvedeny žádné platné kódy měn" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "Žádný plugin" @@ -1905,1591 +2034,1604 @@ msgstr "Časové razítko poslední aktualizace" msgid "Site URL is locked by configuration" msgstr "Adresa URL webu je uzamčena konfigurací" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Jedinečný kód projektu" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Popis projektu" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "Uživatel nebo skupina odpovědná za tento projekt" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "Klíč nastavení (musí být unikátní - rozlišuje malá a velká písmena)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "Hodnota nastavení" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "Zvolená hodnota není platnou možností" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "Hodnota musí být logická hodnota" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "Hodnota musí být celé číslo" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "Klíčový text musí být jedinečný" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Žádná skupina" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Je vyžadován restart" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "Bylo změněno nastavení, které vyžaduje restart serveru" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "Nevyřízené migrace" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "Počet nevyřízených migrací databáze" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "Název instance serveru" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "Textový popisovač pro instanci serveru" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "Použít název instance" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "Použít název instance v liště" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "Omezit zobrazování `o aplikaci`" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "Zobrazovat okno `o aplikaci` pouze superuživatelům" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Jméno společnosti" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Interní název společnosti" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "Základní URL" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "Základní URL pro instanci serveru" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Výchozí měna" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "Vyberte základní měnu pro cenové kalkulace" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "Podporované měny" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "Seznam podporovaných kódů měn" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "Interval aktualizace měny" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "Jak často aktualizovat směnné kurzy (pro vypnutí nastavte na nulu)" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "dny" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "Plugin aktualizace měny" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "Plugin pro aktualizaci měn k použití" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Stáhnout z URL" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Povolit stahování vzdálených obrázků a souborů z externích URL" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "Limit velikosti stahování" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "Maximální povolená velikost stahování vzdáleného obrázku" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "User-agent použitý ke stažení z adresy URL" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "Povolit přepsání user-agenta používaného ke stahování obrázků a souborů z externí adresy URL (ponechte prázdné pro výchozí)" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "Přísná validace URL" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "Vyžadovat specifikaci schématu při ověřování adres URL" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Vyžadovat potvrzení" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Vyžadovat výslovné potvrzení uživatele pro určitou akci." -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "Hloubka stromu" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "Výchozí hloubka stromu pro zobrazení stromu. Hlubší úrovně lze načítat líně podle potřeby." -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "Interval kontroly aktualizací" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "Jak často kontrolovat aktualizace (nastavte na nulu pro vypnutí)" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Automatické Zálohování" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Povolit automatické zálohování databáze a mediálních souborů" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Interval automatického zálohování" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "Zadejte počet dní mezi automatickými zálohovými událostmi" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "Interval mazání úloh" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "Výsledky úloh na pozadí budou odstraněny po zadaném počtu dní" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "Interval odstranění protokolu chyb" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "Záznamy chyb budou odstraněny po zadaném počtu dní" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "Interval pro odstranění oznámení" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "Uživatelská oznámení budou smazána po zadaném počtu dní" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Podpora čárových kódů" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "Povolit podporu pro skenování čárových kódů ve webovém rozhraní" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "Zpoždění vstupu čárového kódu" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "Doba zpoždění zpracování vstupu čárového kódu" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "Podpora webové kamery pro čárové kódy" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "Povolit skenování čárových kódů přes webovou kameru v prohlížeči" -#: common/models.py:1395 +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 msgid "Part Revisions" msgstr "Revize dílu" -#: common/models.py:1396 +#: common/models.py:1407 msgid "Enable revision field for Part" msgstr "Povolit pole revize pro díl" -#: common/models.py:1401 +#: common/models.py:1412 msgid "Allow Deletion from Assembly" msgstr "Povolit odstranění ze sestavy" -#: common/models.py:1402 +#: common/models.py:1413 msgid "Allow deletion of parts which are used in an assembly" msgstr "Povolit odstranění dílů, které jsou použity v sestavě" -#: common/models.py:1407 +#: common/models.py:1418 msgid "IPN Regex" msgstr "IPN Regex" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "Regulární vzorec výrazu pro odpovídající IPN dílu" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Povolit duplicitní IPN" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "Povolit více dílům sdílet stejný IPN" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "Povolit editaci IPN" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "Povolit změnu IPN při úpravách dílu" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "Kopírovat data BOM dílu" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "Kopírovat data BOM ve výchozím nastavení při duplikování dílu" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "Kopírovat data parametrů dílu" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "Kopírovat data parametrů ve výchozím nastavení při duplikování dílu" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "Kopírovat zkušební data dílu" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "Kopírovat testovací data ve výchozím nastavení při duplikování dílu" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "Kopírovat šablony parametrů kategorie" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "Kopírování šablon parametrů kategorie při vytváření dílu" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Šablona" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "Díly jsou ve výchozím nastavení šablony" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Sestava" -#: common/models.py:1454 +#: common/models.py:1465 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/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Komponent" -#: common/models.py:1460 +#: common/models.py:1471 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/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Možné zakoupit" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "Díly jsou zakoupitelné ve výchozím nastavení" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Prodejné" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Díly jsou prodejné ve výchozím nastavení" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Sledovatelné" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "Díly jsou sledovatelné ve výchozím nastavení" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Nehmotné (virtuální)" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Díly jsou nehmotné (virtuální) ve výchozím nastavení" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "Zobrazit Import v zobrazeních" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "Zobrazit průvodce importem v některých zobrazeních dílu" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Zobrazit související díly" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "Zobrazit související díly pro díl" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "Počáteční údaje zásob" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "Povolit vytvoření počátečního skladu při přidání nové části" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Počáteční údaje dodavatele" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "Povolit vytvoření počátečních dat dodavatele při přidávání nového dílu" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "Formát zobrazení jména dílu" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "Formát pro zobrazení názvu dílu" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "Výchozí ikona kategorie dílu" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "Výchozí ikona kategorie dílu (prázdné znamená bez ikony)" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "Vynutit jednotky parametru" -#: common/models.py:1529 +#: common/models.py:1540 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/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "Minimální počet desetinných míst u cen" -#: common/models.py:1537 +#: common/models.py:1548 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/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "Maximální počet desetinných míst u cen" -#: common/models.py:1550 +#: common/models.py:1561 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/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "Použít ceny dodavatele" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Zahrnout cenová zvýhodnění dodavatelů do celkových cenových kalkulací" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "Přepsání historie nákupu" -#: common/models.py:1571 +#: common/models.py:1582 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/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "Použít ceny skladových položek" -#: common/models.py:1579 +#: common/models.py:1590 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/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "Stáří cen skladových položek" -#: common/models.py:1587 +#: common/models.py:1598 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/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "Použít cenu varianty" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "Zahrnutí cen variant do celkových cenových kalkulací" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "Pouze aktivní varianty" -#: common/models.py:1602 +#: common/models.py:1613 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/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "Interval přestavby cen" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "Počet dní před automatickou aktualizací cen dílů" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Interní ceny" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "Povolit interní ceny pro díly" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "Přepis interní ceny" -#: common/models.py:1625 +#: common/models.py:1636 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/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Povolit tisk štítků" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "Povolit tisk štítků z webového rozhraní" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "DPI rozlišení štítků" -#: common/models.py:1639 +#: common/models.py:1650 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/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Povolit reporty" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "Povolit generování reportů" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Režim ladění chyb" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "Generovat reporty v režimu ladění (HTML výstup)" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "Zaznamenávat chyby reportů" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "Zaznamenávat chyby, které se vyskytnou při vytváření reportů" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Velikost stránky" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Výchozí velikost stránky pro PDF reporty" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "Povolit testovací reporty" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "Povolit generování zkušebních reportů" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "Připojit testovací reporty" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Při tisku testovacího reportu, připojte kopii reportu k přidružené skladové položce" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "Globálně unikátní sériová čísla" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "Sériová čísla pro skladové položky musí být globálně unikátní" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "Automaticky vyplnit sériová čísla" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "Automaticky vyplnit sériová čísla ve formulářích" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "Odstranit vyčerpané zásoby" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "Určuje výchozí chování při vyčerpání zásoby položky" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "Šablona kódu dávky" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "Šablona pro generování výchozích kódů dávky pro skladové položky" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "Expirace zásob" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "Povolit funkci expirace zásob" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "Prodat prošlé zásoby" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "Povolit prodej prošlých zásob" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "Čas stáří zásob" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "Počet dnů, po které jsou skladové položky považovány za nevyužité před uplynutím doby expirace" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "Sestavit prošlé zásoby" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "Povolit sestavování s prošlými zásobami" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "Kontrola vlastnictví zásob" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "Umožnit kontrolu vlastnictví nad skladovými místy a položkami" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "Výchozí ikona umístění zásob" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "Výchozí ikona umístění zásob (prázdné znamená bez ikony)" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "Zobrazit nainstalované skladové položky" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "Zobrazit nainstalované skladové položky ve skladových tabulkách" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "Zkontrolovat BOM při instalaci položek" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "Nainstalované skladové položky musí existovat v BOM pro nadřazený díl" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "Povolit převod mimo sklad" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "Umožnit přesun skladových položek, které nejsou na skladě, mezi skladovými místy" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "Referenční vzor objednávky sestavy" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "Požadovaný vzor pro generování referenčního pole Objednávka sestavy" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "Vyžadovat odpovědného vlastníka" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "Ke každé objednávce musí být přiřazen odpovědný vlastník" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "Blokovat, dokud testy neprojdou" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "Zabránit dokončení výstupů sestavy, dokud neprojdou všechny požadované testy" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "Povolit vracení objednávek" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "Povolit funkci vrácení objednávky v uživatelském rozhraní" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "Referenční vzor návratové objednávky" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "Požadovaný vzor pro vygenerování referenčního pole Návratová objednávka" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "Úprava dokončených návratových objednávek" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "Umožnit úpravu návratových objednávek po jejich dokončení" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "Referenční vzor prodejní objednávky" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "Požadovaný vzor pro generování referenčního pole prodejní objednávky" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "Výchozí přeprava prodejní objednávky" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "Povolit vytvoření výchozí přepravy s prodejními objednávkami" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "Úprava dokončených prodejních objednávek" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "Umožnit úpravy prodejních objednávek po jejich odeslání nebo dokončení" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "Označit odeslané objednávky jako dokončené" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "Prodejní objednávky označené jako odeslané se automaticky dokončí a obejdou stav „odesláno“" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "Referenční vzor nákupní objednávky" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "Požadovaný vzor pro generování referenčního pole nákupní objednávky" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "Úprava dokončených nákupních objednávek" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "Umožnit úpravy nákupních objednávek po jejich odeslání nebo dokončení" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "Automatické dokončování nákupních objednávek" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "Automaticky označit nákupní objednávky jako kompletní, jakmile jsou přijaty všechny řádkové položky" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "Povolit pole zapomenutého hesla" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "Povolení funkce zapomenutého hesla na přihlašovacích stránkách" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Povolit registrace" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "Povolit samoregistraci uživatelů na přihlašovacích stránkách" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "Povolit SSO" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "Povolit SSO na přihlašovacích stránkách" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "Povolit SSO registraci" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Povolit samoregistraci uživatelů prostřednictvím SSO na přihlašovacích stránkách" -#: common/models.py:1913 +#: common/models.py:1944 +msgid "Enable SSO group sync" +msgstr "" + +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" + +#: common/models.py:1952 +msgid "SSO group key" +msgstr "" + +#: common/models.py:1954 +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" + +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" + +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" + +#: common/models.py:1968 +msgid "Remove groups outside of SSO" +msgstr "" + +#: common/models.py:1970 +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 "" + +#: common/models.py:1976 msgid "Email required" msgstr "Vyžadován e-mail" -#: common/models.py:1914 +#: common/models.py:1977 msgid "Require user to supply mail on signup" msgstr "Požadovat, aby uživatel při registraci zadal e-mail" -#: common/models.py:1919 +#: common/models.py:1982 msgid "Auto-fill SSO users" msgstr "Automaticky vyplnit SSO uživatele" -#: common/models.py:1921 +#: common/models.py:1984 msgid "Automatically fill out user-details from SSO account-data" msgstr "Automaticky vyplnit údaje o uživateli z údajů o účtu SSO" -#: common/models.py:1927 +#: common/models.py:1990 msgid "Mail twice" msgstr "Mail dvakrát" -#: common/models.py:1928 +#: common/models.py:1991 msgid "On signup ask users twice for their mail" msgstr "Při registraci dvakrát požádat uživatele o zadání e-mailu" -#: common/models.py:1933 +#: common/models.py:1996 msgid "Password twice" msgstr "Heslo dvakrát" -#: common/models.py:1934 +#: common/models.py:1997 msgid "On signup ask users twice for their password" msgstr "Při registraci dvakrát požádat uživatele o heslo" -#: common/models.py:1939 +#: common/models.py:2002 msgid "Allowed domains" msgstr "Povolené domény" -#: common/models.py:1941 +#: common/models.py:2004 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "Omezit registraci na určité domény (oddělené čárkou a začínající @)" -#: common/models.py:1947 +#: common/models.py:2010 msgid "Group on signup" msgstr "Skupina při registraci" -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "Skupina, ke které jsou přiděleni noví uživatelé při registraci" +#: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" -#: common/models.py:1953 +#: common/models.py:2018 msgid "Enforce MFA" msgstr "Vynutit MFA" -#: common/models.py:1954 +#: common/models.py:2019 msgid "Users must use multifactor security." msgstr "Uživatelé musí používat vícefaktorové zabezpečení." -#: common/models.py:1959 +#: common/models.py:2024 msgid "Check plugins on startup" msgstr "Zkontrolovat pluginy při spuštění" -#: common/models.py:1961 +#: common/models.py:2026 msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "Zkontrolujte, zda jsou při spuštění nainstalovány všechny pluginy - povolit v kontejnerových prostředích" -#: common/models.py:1969 +#: common/models.py:2034 msgid "Check for plugin updates" msgstr "Zkontrolovat aktualizace pluginů" -#: common/models.py:1970 +#: common/models.py:2035 msgid "Enable periodic checks for updates to installed plugins" msgstr "Povolit pravidelné kontroly aktualizací nainstalovaných pluginů" -#: common/models.py:1976 +#: common/models.py:2041 msgid "Enable URL integration" msgstr "Povolit integraci URL" -#: common/models.py:1977 +#: common/models.py:2042 msgid "Enable plugins to add URL routes" msgstr "Povolit plug-inům přidávat trasy URL" -#: common/models.py:1983 +#: common/models.py:2048 msgid "Enable navigation integration" msgstr "Povolit integraci navigace" -#: common/models.py:1984 +#: common/models.py:2049 msgid "Enable plugins to integrate into navigation" msgstr "Povolit integrování pluginů do navigace" -#: common/models.py:1990 +#: common/models.py:2055 msgid "Enable app integration" msgstr "Povolit integraci aplikací" -#: common/models.py:1991 +#: common/models.py:2056 msgid "Enable plugins to add apps" msgstr "Povolit pluginům přidávát aplikace" -#: common/models.py:1997 +#: common/models.py:2062 msgid "Enable schedule integration" msgstr "Povolit integraci plánu" -#: common/models.py:1998 +#: common/models.py:2063 msgid "Enable plugins to run scheduled tasks" msgstr "Povolit pluginům spouštění naplánovaných úloh" -#: common/models.py:2004 +#: common/models.py:2069 msgid "Enable event integration" msgstr "Povolit integraci událostí" -#: common/models.py:2005 +#: common/models.py:2070 msgid "Enable plugins to respond to internal events" msgstr "Povolit pluginům reagovat na interní události" -#: common/models.py:2011 +#: common/models.py:2076 msgid "Enable project codes" msgstr "Povolit kódy projektů" -#: common/models.py:2012 +#: common/models.py:2077 msgid "Enable project codes for tracking projects" msgstr "Povolit kódy projektů pro sledování projektů" -#: common/models.py:2017 +#: common/models.py:2082 msgid "Stocktake Functionality" msgstr "Funkce inventury" -#: common/models.py:2019 +#: common/models.py:2084 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Povolit funkci inventury pro evidenci stavu zásob a výpočet hodnoty zásob" -#: common/models.py:2025 +#: common/models.py:2090 msgid "Exclude External Locations" msgstr "Vyloučit externí umístění" -#: common/models.py:2027 +#: common/models.py:2092 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Vyloučit skladové položky na externích místech z výpočtů inventury" -#: common/models.py:2033 +#: common/models.py:2098 msgid "Automatic Stocktake Period" msgstr "Perioda automatické inventury" -#: common/models.py:2035 +#: common/models.py:2100 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Počet dní mezi automatickým záznamem inventury (pro vypnutí nastavte nulu)" -#: common/models.py:2041 +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "Interval mazání reportů" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Reporty o inventuře se po určitém počtu dní vymažou" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "Zobrazit celá jména uživatelů" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "Zobrazit plná jména uživatelů namísto uživatelských jmen" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "Povolit data zkušební stanice" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "Povolit sběr dat ze zkušební stanice pro výsledky testů" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "Klíč nastavení (musí být unikátní - rozlišuje malá a velká písmena" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "Skrýt neaktivní díly" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Skrýt neaktivní díly ve výsledcích zobrazených na domovské stránce" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "Zobrazit odebírané díly" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "Zobrazit odebírané díly na domovské stránce" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "Zobrazit odebírané kategorie" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "Zobrazit kategorie odebíraných dílů na hlavní stránce" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "Zobrazit nejnovější díly" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "Zobrazit nejnovější díly na domovské stránce" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "Zobrazit neplatné kusovníky (BOMy)" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "Zobrazit kusovníky (BOMy), které čekají na ověření, na domovské stránce" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "Zobrazit nedávné změny zásob" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "Zobrazit nedávno změněné skladové položky na domovské stránce" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "Zobrazit nízký stav zásob" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "Zobrazit na domovské stránce položky s nízkou skladovou zásobou" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "Zobrazit vyčerpané zásoby" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "Zobrazit vyčerpané položky na domovské stránce" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "Zobrazit potřebné zásoby" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "Zobrazit skladové položky potřebné pro sestavy na domovské stránce" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "Zobrazit expirované zásoby" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "Zobrazit expirované skladové položky na domovské stránce" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "Zobrazit neaktuální zásoby" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "Zobrazit neaktuální skladové položky na domovské stránce" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "Zobrazit nevyřízené sestavy" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "Zobrazit nevyřízené sestavy na domovské stránce" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "Zobrazit sestavy po splatnosti" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "Zobrazit sestavy po splatnosti na domovské stránce" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "Zobrazit nevyřízené PO" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "Zobrazit nevyřízené PO na domovské stránce" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "Zobrazit PO po splatnosti" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "Zobrazit PO po splatnosti na domovské stránce" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "Zobrazit nevyřízené SO" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "Zobrazit nevyřízené SO na domovské stránce" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "Zobrazit SO po splatnosti" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "Zobrazit SO po splatnosti na domovské stránce" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "Zobrazit čekající zásilky SO" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "Zobrazit čekající zásilky SO na domovské stránce" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "Zobrazit novinky" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "Zobrazit novinky na domovské stránce" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "Zobrazení štítků na řádku" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Zobrazit štítky PDF v prohlížeči namísto stahování jako soubor" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "Výchozí tiskárna štítků" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "Konfigurovat tiskárnu štítků, která má být vybrána jako výchozí" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "Zobrazení reportů na řádku" -#: common/models.py:2246 +#: common/models.py:2311 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/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "Hledat díly" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "Zobrazit díly v náhledu hledání" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "Hledat díly dodavatele" -#: common/models.py:2259 +#: common/models.py:2324 msgid "Display supplier parts in search preview window" msgstr "Zobrazit díly dodavatele v náhledu hledání" -#: common/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "Vyhledávání dílů výrobce" -#: common/models.py:2265 +#: common/models.py:2330 msgid "Display manufacturer parts in search preview window" msgstr "Zobrazit díly výrobce v náhledu hledání" -#: common/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "Skrýt neaktivní díly" -#: common/models.py:2271 +#: common/models.py:2336 msgid "Excluded inactive parts from search preview window" msgstr "Vyloučené neaktivní části z okna náhledu vyhledávání" -#: common/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "Hledat kategorie" -#: common/models.py:2277 +#: common/models.py:2342 msgid "Display part categories in search preview window" msgstr "Zobrazit kategorie dílů v náhledu hledání" -#: common/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "Hledat zásoby" -#: common/models.py:2283 +#: common/models.py:2348 msgid "Display stock items in search preview window" msgstr "Zobrazit skladové položky v náhledu hledání" -#: common/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "Skrýt nedostupné skladové položky" -#: common/models.py:2290 +#: common/models.py:2355 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/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "Hledat umístění" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "Zobrazit skladová umístění v náhledu hledání" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "Hledat společnosti" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "Zobrazit společnosti v náhledu hledání" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "Hledat objednávky sestav" -#: common/models.py:2309 +#: common/models.py:2374 msgid "Display build orders in search preview window" msgstr "Zobrazit objednávky sestav v náhledu hledání" -#: common/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "Hledat nákupní objednávky" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "Zobrazit nákupní objednávky v náhledu hledání" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "Vyloučit neaktivní nákupní objednávky" -#: common/models.py:2322 +#: common/models.py:2387 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/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "Hledat prodejní objednávky" -#: common/models.py:2329 +#: common/models.py:2394 msgid "Display sales orders in search preview window" msgstr "Zobrazit prodejní objednávky v náhledu hledání" -#: common/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "Vyloučit neaktivní prodejní objednávky" -#: common/models.py:2336 +#: common/models.py:2401 msgid "Exclude inactive sales orders from search preview window" msgstr "Vyloučit neaktivní prodejní objednávky z okna náhledu vyhledávání" -#: common/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "Vyhledávání vrácených objednávek" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "Zobrazit vrácené objednávky v okně náhledu vyhledávání" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "Vyloučit neaktivní vrácené objednávky" -#: common/models.py:2350 +#: common/models.py:2415 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/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "Náhled výsledků vyhledávání" -#: common/models.py:2358 +#: common/models.py:2423 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/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "Regex hledání" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "Povolit regulární výrazy ve vyhledávacích dotazech" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "Vyhledávání celého slova" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "Vyhledávací dotazy vracejí výsledky pro shody celých slov" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "Zobrazit množství ve formulářích" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "Zobrazit dostupné množství dílů v některých formulářích" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "Klávesa Escape zavře formuláře" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "Zavřít modální formuláře pomocí klávesy escape" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "Pevná navigační lišta" -#: common/models.py:2389 +#: common/models.py:2454 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/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "Formát data" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "Preferovaný formát pro zobrazení datumů" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Plánování dílů" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "Zobrazit informace o plánování dílů" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventura dílu" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Zobrazit informace o skladových zásobách dílů (pokud je povolena funkce inventury)" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "Délka textu v tabulce" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "Maximální délka textu v zobrazeních tabulek" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "Výchozí šablona štítku dílu" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "Automaticky vybraná šablona štítku dílu" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "Výchozí šablona skladové položky" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "Automaticky vybraná šablona štítku skladové položky" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "Výchozí šablona štítku umístění zásob" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "Automaticky vybraná šablona štítku skladového umístění" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "Výchozí šablona štítku řádku sestavy" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "Automaticky vybraná šablona štítku řádku sestavy" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "Přijímat zprávy o chybách" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "Dostávat oznámení o systémových chybách" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "Poslední použité tiskárny" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "Uložte poslední použité tiskárny pro uživatele" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Uživatel" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "Množství cenové slevy" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Cena" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "Jednotková cena při stanoveném množství" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "Koncový bod" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "Koncový bod, ve kterém je tento webhook přijímán" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "Název tohoto webhooku" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Aktivní" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "Je tento webhook aktivní" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "Token" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "Token pro přístup" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" -msgstr "" +msgstr "Tajný klíč" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" -msgstr "" +msgstr "Sdílený tajný klíč pro HMAC" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" -msgstr "" - -#: common/models.py:2763 -msgid "Unique identifier for this message" -msgstr "" - -#: common/models.py:2771 -msgid "Host" -msgstr "" - -#: common/models.py:2772 -msgid "Host from which this message was received" -msgstr "" - -#: common/models.py:2780 -msgid "Header" -msgstr "" - -#: common/models.py:2781 -msgid "Header of this message" -msgstr "" - -#: common/models.py:2788 -msgid "Body" -msgstr "" - -#: common/models.py:2789 -msgid "Body of this message" -msgstr "" +msgstr "ID zprávy" #: common/models.py:2799 +msgid "Unique identifier for this message" +msgstr "Unikátní identifikátor pro tuto zprávu" + +#: common/models.py:2807 +msgid "Host" +msgstr "Hostitel" + +#: common/models.py:2808 +msgid "Host from which this message was received" +msgstr "Hostitel, od kterého byla tato zpráva přijata" + +#: common/models.py:2816 +msgid "Header" +msgstr "Záhlaví" + +#: common/models.py:2817 +msgid "Header of this message" +msgstr "Záhlaví této zprávy" + +#: common/models.py:2824 +msgid "Body" +msgstr "Tělo" + +#: common/models.py:2825 +msgid "Body of this message" +msgstr "Tělo zprávy" + +#: common/models.py:2835 msgid "Endpoint on which this message was received" -msgstr "" +msgstr "Koncový bod, na kterém byla zpráva přijata" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" -msgstr "" +msgstr "Pracoval na" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" -msgstr "" +msgstr "Byla práce na této zprávě dokončena?" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" -msgstr "" +msgstr "ID" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" -msgstr "" +msgstr "Název" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "Odkaz" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" -msgstr "" +msgstr "Zveřejněno" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" -msgstr "" +msgstr "Autor" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" -msgstr "" +msgstr "Souhrn" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" -msgstr "" +msgstr "Přečteno" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" -msgstr "" +msgstr "Byla tato novinka přečtena?" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,108 +3671,116 @@ msgstr "" msgid "Image" msgstr "Obrazek" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" -msgstr "" +msgstr "Soubor obrázku" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" -msgstr "" +msgstr "Cílový typ modelu pro tento obrázek" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" +msgstr "Cílové ID modelu pro tento obrázek" + +#: common/models.py:3035 +msgid "Custom Unit" msgstr "" -#: common/models.py:3018 +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" -msgstr "" +msgstr "Název jednotky musí být platný identifikátor" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" -msgstr "" +msgstr "Název jednotky" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" -msgstr "" +msgstr "Symbol" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" -msgstr "" +msgstr "Volitelný symbol jednotky" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" -msgstr "" +msgstr "Definice" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" -msgstr "" +msgstr "Definice jednotky" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Příloha" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Chybějící soubor" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Chybějící externí odkaz" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Vyberte soubor k přiložení" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Komentář" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" -msgstr "" +msgstr "Komentář přílohy" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" -msgstr "" +msgstr "Datum nahrání" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" -msgstr "" +msgstr "Datum, kdy byl soubor nahrán" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" -msgstr "" +msgstr "Velikost souboru" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" -msgstr "" +msgstr "Velikost souboru v bytech" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" -msgstr "" +msgstr "Uveden neplatný typ modelu pro přílohu" #: common/notifications.py:314 #, python-brace-format msgid "New {verbose_name}" -msgstr "" +msgstr "Nový {verbose_name}" #: common/notifications.py:316 msgid "A new order has been created and assigned to you" -msgstr "" +msgstr "Byla vytvořena nová objednávka a přiřazena k vám" #: common/notifications.py:322 #, python-brace-format msgid "{verbose_name} canceled" -msgstr "" +msgstr "{verbose_name} zrušeno" #: common/notifications.py:324 msgid "A order that is assigned to you was canceled" -msgstr "" +msgstr "Objednávka, která je vám přidělena, byla zrušena" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "Čas uzamčení" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "Jméno úkolu" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "Funkce" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "Název funkce" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "Argumenty" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "Argumenty úlohy" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "Argumenty klíčových slov" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "Argumenty klíčových slov úlohy" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Název souboru" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "Typ modelu" -#: common/serializers.py:559 +#: common/serializers.py:563 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" @@ -3781,29 +3931,29 @@ msgstr "Importované díly" msgid "Previous Step" msgstr "Předchozí krok" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "Díl je aktivní" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Výrobce je aktivní" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "Díl dodavatele je aktivní" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "Interní díl je aktivní" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "Dodavatel je aktivní" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Společnost" @@ -3843,8 +3993,9 @@ msgstr "Kontaktní telefonní číslo" msgid "Contact email address" msgstr "Kontaktní e-mailová adresa" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "Je tato společnost aktivní?" #: company/models.py:168 -msgid "is customer" -msgstr "je zákazník" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "Prodáváte zboží této společnosti?" #: company/models.py:174 -msgid "is supplier" -msgstr "je dodavatel" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "Zakupujete zboží od této společnosti?" #: company/models.py:180 -msgid "is manufacturer" -msgstr "je výrobce" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "Vyrábí tato společnost díly?" msgid "Default currency used for this company" msgstr "Výchozí měna používaná pro tuto společnost" -#: company/models.py:366 +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Adresa" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Adresy" + +#: company/models.py:372 msgid "Select company" msgstr "Vyberte společnost" -#: company/models.py:371 +#: company/models.py:377 msgid "Address title" msgstr "Název adresy" -#: company/models.py:372 +#: company/models.py:378 msgid "Title describing the address entry" msgstr "Název popisující záznam adresy" -#: company/models.py:378 +#: company/models.py:384 msgid "Primary address" msgstr "Primární adresa" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "Nastavit jako primární adresu" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "Řádek 1" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "1. řádek adresy" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "Řádek 2" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "2. řádek adresy" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "PSČ" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "Město/Region" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "PSČ město/region" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "Stát/kraj" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "Stát nebo provincie" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "Země" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "Adresovaná země" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "Doručovací poznámky pro kurýra" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "Poznámky pro kurýra" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "Interní přepravní poznámky" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "Doručovací poznámky pro interní použití" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "Odkaz na informace o adrese (externí)" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "Výrobce dílu" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Základní díl" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "Zvolte díl" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Výrobce" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Vyberte výrobce" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "MPN" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Číslo dílu výrobce" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "URL pro odkaz na díl externího výrobce" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "Popis dílu výrobce" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Název parametru" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Hodnota" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Hodnota parametru" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "Jednotky" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "Jednotky parametru" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "Díl dodavatele" -#: company/models.py:700 +#: company/models.py:707 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:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "Jednotky balení musí být větší než nula" -#: company/models.py:721 +#: company/models.py:728 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:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Dodavatel" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Vyberte dodavatele" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "Skladová evidence dodavatele" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "Je tento díl dodavatele aktivní?" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "Vyberte díl výrobce" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "Adresa URL pro odkaz na externí díl dodavatele" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "Popis dílu dodavatele" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Poznámka" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "základní cena" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimální poplatek (např. poplatek za skladování)" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "Balení" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "Balení dílu" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "Balení dílu" msgid "Pack Quantity" msgstr "Počet kusů v balení" -#: company/models.py:841 +#: company/models.py:848 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:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "více" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "Objednat více" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "Množství dostupné od dodavatele" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "Dostupnost aktualizována" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "Datum poslední aktualizace údajů o dostupnosti" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "Výchozí měna používaná pro tohoto dodavatele" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "Skladem" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "Neaktivní" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "Smazat obrázek" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Zákazník" @@ -4278,13 +4448,6 @@ msgstr "Zákazník" msgid "Uses default currency" msgstr "Použít výchozí měnu" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Adresa" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Telefon" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "Odstranit díl výrobce" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "Interní díl" @@ -4474,7 +4638,7 @@ msgstr "Nejsou k dispozici žádné informace o výrobci" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "Nový parametr" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "Přidat parametr" @@ -4519,10 +4683,6 @@ msgstr "Přiřazené skladové položky" msgid "Contacts" msgstr "Kontakty" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "Adresy" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "Vymazat dodavatele dílu" msgid "No supplier information available" msgstr "Nejsou k dispozici žádné informace o dodavateli" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "Aktualizovat dostupnost dílu" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Nová společnost" msgid "Placed" msgstr "Umístěno" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "Kopie" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "Počet kopií, které se mají tisknout pro každý štítek" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "Připojeno" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "Neznámý" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "Tisk" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "Žádná média" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "Odpojeno" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "Tiskárna štítků" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "Přímo vytisknout štítky pro různé položky." -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "Umístění tiskárny" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "Určení rozsahu tiskárny na konkrétní místo" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4880,58 +5192,58 @@ msgstr "" #: order/models.py:487 msgid "Company from which the items are being ordered" -msgstr "" +msgstr "Společnost, od které se položky objednávají" #: order/models.py:498 order/templates/order/order_base.html:148 #: templates/js/translated/purchase_order.js:1702 msgid "Supplier Reference" -msgstr "" +msgstr "Reference dodavatele" #: order/models.py:499 msgid "Supplier order reference code" -msgstr "" +msgstr "Referenční kód objednávky dodavatele" #: order/models.py:508 msgid "received by" -msgstr "" +msgstr "přijal" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" -msgstr "" +msgstr "Datum vystavení" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" -msgstr "" +msgstr "Datum vystavení objednávky" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" -msgstr "" +msgstr "Datum dokončení objednávky" #: order/models.py:566 msgid "Part supplier must match PO supplier" -msgstr "" +msgstr "Dodavatel dílu se musí shodovat s dodavatelem PO" #: order/models.py:760 msgid "Quantity must be a positive number" -msgstr "" +msgstr "Množství musí být kladné" #: order/models.py:939 msgid "Company to which the items are being sold" -msgstr "" +msgstr "Společnost, jíž se položky prodávají" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " -msgstr "" +msgstr "Reference zákazníka " -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" -msgstr "" +msgstr "Referenční kód objednávky zákazníka" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" -msgstr "" +msgstr "Datum odeslání" #: order/models.py:976 msgid "shipped by" @@ -4989,20 +5301,24 @@ msgstr "Dodatečný kontext pro tento řádek" msgid "Unit price" msgstr "Cena za jednotku" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "Dodavatelský díl musí odpovídat dodavateli" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "smazáno" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "Díl dodavatele" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,361 +5327,397 @@ msgstr "Díl dodavatele" msgid "Received" msgstr "Doručeno" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "Počet přijatých položek" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "Nákupní cena" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "Jednotková nákupní cena" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "Kde si kupující přeje, aby byla tato položka uložena?" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "Virtuální díl nelze přiřadit k prodejní objednávce" -#: order/models.py:1543 +#: order/models.py:1558 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:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "Prodejní cena" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "Jednotková prodejní cena" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Odesláno" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "Odeslané množství" -#: order/models.py:1672 +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "Datum odeslání" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "Datum doručení" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "Datum doručení zásilky" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "Kontroloval(a)" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "Uživatel, který zkontroloval tuto zásilku" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "Doprava" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "Číslo zásilky" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "Sledovací číslo" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "Informace o sledování zásilky" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "Číslo faktury" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "Referenční číslo přiřazené faktury" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "Zásilka již byla odeslána" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "Zásilka nemá žádné přidělené skladové položky" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "Zásobní položka nebyla přiřazena" -#: order/models.py:1863 +#: order/models.py:1889 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:1866 +#: order/models.py:1892 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:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Přidělené množství nesmí překročit množství zásob" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "Množství musí být 1 pro serializovanou skladovou položku" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "Prodejní objednávka neodpovídá zásilce" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "Zásilka neodpovídá prodejní objednávce" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "Řádek" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "Odkaz na zásilku z prodejní objednávky" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "Položka" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "Vyberte skladovou položku pro přidělení" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "Zadejte množství pro přidělení zásob" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" -msgstr "" +msgstr "Reference návratové objednávky" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" -msgstr "" +msgstr "Společnost, od které se vrací položky" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" +msgstr "Stav návratové objednávky" + +#: order/models.py:2237 +msgid "Return Order Line Item" msgstr "" -#: order/models.py:2224 +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" -msgstr "" +msgstr "K návratové objednávce lze přiřadit pouze serializované položky" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" -msgstr "" +msgstr "Vyberte položku pro vrácení od zákazníka" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" -msgstr "" +msgstr "Datum přijetí" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" -msgstr "" +msgstr "Datum přijetí této vrácené položky" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" -msgstr "" +msgstr "Výsledek" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" -msgstr "" +msgstr "Výsledky pro tuto položku" -#: order/models.py:2266 +#: order/models.py:2293 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:2303 +msgid "Return Order Extra Line" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 #: report/templates/report/inventree_return_order_report.html:19 #: report/templates/report/inventree_sales_order_report.html:22 msgid "Line Items" -msgstr "" +msgstr "Řádkové položky" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" -msgstr "" +msgstr "Dokončené řádky" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" -msgstr "" +msgstr "Objednávku nelze zrušit" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" -msgstr "" +msgstr "Povolit uzavření objednávky s neúplnými řádkovými položkami" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" -msgstr "" +msgstr "Objednávka má nedokončené řádkové položky" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" -msgstr "" +msgstr "Objednávka není otevřena" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" -msgstr "" +msgstr "Automatická cena" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" -msgstr "" - -#: order/serializers.py:472 -msgid "Purchase price currency" -msgstr "" - -#: order/serializers.py:478 -msgid "Merge Items" -msgstr "" - -#: order/serializers.py:480 -msgid "Merge items with the same part, destination and target date into one line item" -msgstr "" - -#: order/serializers.py:498 -msgid "Supplier part must be specified" -msgstr "" +msgstr "Automaticky vypočítat nákupní cenu na základě údajů o dílech dodavatele" #: order/serializers.py:501 -msgid "Purchase order must be specified" -msgstr "" +msgid "Purchase price currency" +msgstr "Měna nákupní ceny" + +#: order/serializers.py:507 +msgid "Merge Items" +msgstr "Sloučit položky" #: order/serializers.py:509 +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:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "Interní číslo dílu" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 +msgid "Supplier part must be specified" +msgstr "Musí být uveden díl dodavatele" + +#: order/serializers.py:549 +msgid "Purchase order must be specified" +msgstr "Objednávka musí být zadána" + +#: order/serializers.py:557 msgid "Supplier must match purchase order" -msgstr "" +msgstr "Dodavatel musí odpovídat objednávce" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" -msgstr "" +msgstr "Objednávka musí odpovídat dodavateli" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" -msgstr "" +msgstr "Řádková položka" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" -msgstr "" +msgstr "Řádková položka neodpovídá nákupní objednávce" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" -msgstr "" +msgstr "Vyberte cílové umístění pro přijaté položky" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" -msgstr "" +msgstr "Zadat kód dávky pro příchozí položky skladu" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" -msgstr "" +msgstr "Zadat sériová čísla pro příchozí skladové položky" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" -msgstr "" +msgstr "Čárový kód" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" -msgstr "" +msgstr "Naskenovaný čárový kód" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" -msgstr "" +msgstr "Tento čárový kód se již používá" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" -msgstr "" +msgstr "U sledovatelných dílů musí být uvedeno celočíselné množství" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" -msgstr "" +msgstr "Musí být uvedeny řádkové položky" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" -msgstr "" +msgstr "Místo určení musí být specifikováno" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" -msgstr "" +msgstr "Hodnoty dodaných čárových kódů musí být unikátní" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5612,7 +5964,7 @@ msgstr "" #: order/templates/order/order_wizard/po_upload.html:14 msgid "Order is already processed. Files cannot be uploaded." -msgstr "" +msgstr "Objednávka je již zpracována. Soubory nelze nahrát." #: order/templates/order/order_wizard/po_upload.html:27 #: part/templates/part/import_wizard/ajax_part_upload.html:10 @@ -5620,15 +5972,15 @@ msgstr "" #: templates/patterns/wizard/upload.html:13 #, python-format msgid "Step %(step)s of %(count)s" -msgstr "" +msgstr "Krok %(step)s z %(count)s" #: order/templates/order/po_sidebar.html:7 msgid "Received Stock" -msgstr "" +msgstr "Přijaté skladové zásoby" #: order/templates/order/purchase_order_detail.html:18 msgid "Purchase Order Items" -msgstr "" +msgstr "Položky nákupní objednávky" #: order/templates/order/purchase_order_detail.html:27 #: order/templates/order/return_order_detail.html:24 @@ -5637,41 +5989,41 @@ msgstr "" #: templates/js/translated/return_order.js:458 #: templates/js/translated/sales_order.js:237 msgid "Add Line Item" -msgstr "" +msgstr "Přidat řádkovou položku" #: order/templates/order/purchase_order_detail.html:31 #: order/templates/order/purchase_order_detail.html:32 #: order/templates/order/return_order_detail.html:28 #: order/templates/order/return_order_detail.html:29 msgid "Receive Line Items" -msgstr "" +msgstr "Přijmout řádkové položky" #: order/templates/order/purchase_order_detail.html:50 #: order/templates/order/return_order_detail.html:45 #: order/templates/order/sales_order_detail.html:41 msgid "Extra Lines" -msgstr "" +msgstr "Extra řádky" #: order/templates/order/purchase_order_detail.html:56 #: order/templates/order/return_order_detail.html:51 #: order/templates/order/sales_order_detail.html:47 msgid "Add Extra Line" -msgstr "" +msgstr "Přidání dalšího řádku" #: order/templates/order/purchase_order_detail.html:74 msgid "Received Items" -msgstr "" +msgstr "Přijaté položky" #: order/templates/order/purchase_order_detail.html:99 #: order/templates/order/return_order_detail.html:85 #: order/templates/order/sales_order_detail.html:139 msgid "Order Notes" -msgstr "" +msgstr "Poznámky k objednávce" #: order/templates/order/return_order_base.html:18 #: order/templates/order/sales_order_base.html:18 msgid "Customer logo thumbnail" -msgstr "" +msgstr "Náhled loga zákazníka" #: order/templates/order/return_order_base.html:60 msgid "Print return order report" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "ID dílu" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "Název dílu" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "Popis dílu" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Díly" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "IPN dílu" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Kategorie dílu" @@ -6049,7 +6390,7 @@ msgstr "Kategorie dílů" msgid "Default location for parts in this category" msgstr "Výchozí umístění dílů v této kategorii" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "Výchozí klíčová slova pro díly v této kategorii" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Název dílu" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "Kategorie dílu" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "Interní číslo dílu" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "ID dílu nebo název dílu" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "Jedinečná hodnota ID dílu" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "Hodnota IPN dílu" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "Vyberte nadřazený díl" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "Aktualizovat díly" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "Aktualizovat cenu pro díl" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "Sestavení" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Odstranit" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "Nastavení oprávnění" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Skupina" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Zobrazit" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Oprávnění k zobrazení položek" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Oprávnění přidat položky" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Změnit" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Oprávnění k úpravě položek" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Oprávnění k odstranění položek" diff --git a/src/backend/InvenTree/locale/da/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/da/LC_MESSAGES/django.po index f0e0c110ea..87c2aabf88 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API endpoint ikke fundet" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Bruger har ikke tilladelse til at se denne model" @@ -56,21 +56,21 @@ msgstr "Fejloplysninger kan findes i admin panelet" msgid "Enter date" msgstr "Angiv dato" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Registrering er deaktiveret." @@ -348,8 +348,8 @@ msgstr "Kinesisk (traditionelt)" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "JSON metadata felt, til brug af eksterne plugins" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Forkert formateret mønster" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Ukendt formatnøgle angivet" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Mangler nødvendig formatnøgle" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Referencefelt må ikke være tomt" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Reference skal matche det påkrævede mønster" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Referencenummer er for stort" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Ugyldigt valg" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Ugyldigt valg" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Navn" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Navn" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Navn" msgid "Description" msgstr "Beskrivelse" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Beskrivelse (valgfri)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Sti" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Markdown noter (valgfri)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Stregkode Data" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Tredjeparts stregkode data" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Stregkode Hash" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Unik hash af stregkode data" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Eksisterende stregkode fundet" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Serverfejl" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "En fejl blev logget af serveren." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Skal være et gyldigt tal" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Valuta" msgid "Select currency from available options" msgstr "Vælg valuta fra tilgængelige muligheder" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Du har ikke tilladelse til at ændre denne brugerrolle." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Kun superbrugere kan oprette nye brugere" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Ugyldig værdi" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Datafil" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Vælg datafilen til upload" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Filtype ikke understøttet" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Filen er for stor" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Ingen kolonner fundet i fil" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Ingen datarækker fundet i fil" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Ingen data-rækker angivet" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Ingen data-kolonner angivet" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Mangler påkrævet kolonne: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplikeret kolonne: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Eksternt billede" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URL til ekstern billedfil" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Download af billeder fra ekstern URL er ikke aktiveret" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Kontrol af baggrundstjeneste mislykkedes" @@ -654,47 +711,48 @@ msgstr "Systemoplysninger" msgid "About InvenTree" msgstr "Om InvenTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "Produktion skal anulleres, før den kan slettes" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Forbrugsvare" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Valgfri" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Sporet" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Allokeret" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Tilgængelig" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Produktionsordre" msgid "Build Orders" msgstr "Produktionsordrer" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Ugyldigt valg for overordnet produktion" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "Byggeordre enhed kan ikke ændres" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Produktionsordre reference" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Produktionsordre reference" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Overordnet produktion" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Produktionsordre som er tildelt denne produktion" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Produktionsordre som er tildelt denne produktion" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Produktionsordre som er tildelt denne produktion" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Produktionsordre som er tildelt denne produktion" msgid "Part" msgstr "Del" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Vælg dele til produktion" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Salgsordrereference" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Salgsordre, som er tildelt denne produktion" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Kilde Lokation" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Destinations Placering" -#: build/models.py:272 +#: build/models.py:294 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:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Produktions antal" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Antal lagervarer som skal produceres" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Afsluttede elementer" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Antal lagervarer som er færdiggjort" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Produktions Status" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Produktions statuskode" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Batch Kode" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Batch kode til dette produktions output" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Oprettelsesdato" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Projekteret afslutningsdato" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Dato for afslutning" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "udført af" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Udstedt af" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Bruger som udstedte denne byggeordre" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Bruger som udstedte denne byggeordre" msgid "Responsible" msgstr "Ansvarlig" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "Bruger eller gruppe ansvarlig for denne byggeordre" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Ekstern link" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Link til ekstern URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Bygge Prioritet" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Prioritet af denne byggeordre" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Prioritet af denne byggeordre" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Bygningsordre {build} er fuldført" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "En byggeordre er fuldført" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Ikke tilladt" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Accepter som forbrugt af denne byggeordre" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Accepter Ikke tildelt" -#: build/serializers.py:696 +#: build/serializers.py:700 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:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Accepter ufuldført" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Bygge linje" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Produktion" msgid "Cancelled" msgstr "Annulleret" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Bruger" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Vedhæftning" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Manglende fil" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Manglende eksternt link" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Vælg fil, der skal vedhæftes" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Kommentar" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Filnavn" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "Placeret" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Afsendt" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/de/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/de/LC_MESSAGES/django.po index 757418ef2c..09ff7930ca 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API-Endpunkt nicht gefunden" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Benutzer hat keine Berechtigung, dieses Modell anzuzeigen" @@ -56,21 +56,21 @@ msgstr "Fehlerdetails finden Sie im Admin-Panel" msgid "Enter date" msgstr "Datum eingeben" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Registrierung ist deaktiviert." @@ -297,7 +297,7 @@ msgstr "Portugiesisch (Brasilien)" #: InvenTree/locales.py:41 msgid "Romanian" -msgstr "" +msgstr "Rumänisch" #: InvenTree/locales.py:42 msgid "Russian" @@ -348,8 +348,8 @@ msgstr "Chinesisch (Traditionell)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] In App einloggen" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Plugin Metadaten" msgid "JSON metadata field, for use by external plugins" msgstr "JSON-Metadatenfeld, für die Verwendung durch externe Plugins" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Falsch formatiertes Muster" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Unbekannter Formatschlüssel angegeben" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Erforderlicher Formatschlüssel fehlt" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Referenz-Feld darf nicht leer sein" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Referenz muss erforderlichem Muster entsprechen" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Referenznummer ist zu groß" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Doppelte Namen können nicht unter dem selben Elternteil existieren" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Ungültige Auswahl" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Ungültige Auswahl" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Name" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Name" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Name" msgid "Description" msgstr "Beschreibung" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Beschreibung (optional)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Pfad" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Markdown Notizen (optional)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Barcode-Daten" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Drittanbieter-Barcode-Daten" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Barcode-Hash" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Eindeutiger Hash der Barcode-Daten" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Bestehender Barcode gefunden" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Serverfehler" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Ein Fehler wurde vom Server protokolliert." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Muss eine gültige Nummer sein" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Währung" msgid "Select currency from available options" msgstr "Währung aus verfügbaren Optionen auswählen" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "Benutzername" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "Vorname" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "Vorname des Benutzers" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "Nachname" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "Nachname des Benutzers" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "E-Mailadresse des Benutzers" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "Mitarbeiter" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "Hat der Benutzer die Mitarbeiter Berechtigung" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "Administrator" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "Ist dieser Benutzer ein Adminstrator" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Aktiv" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "Ist dieses Benutzerkonto aktiv" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Sie haben keine Berechtigung, diese Benutzerrolle zu ändern." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Nur Superuser können neue Benutzer erstellen" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Ihr Konto wurde erstellt." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Bitte benutzen Sie die Passwort-zurücksetzen-Funktion, um sich anzumelden" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Willkommen bei InvenTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Ungültiger Wert" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Datendatei" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Neue Datei zum Hochladen auswählen" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Nicht unterstütztes Dateiformat" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Datei ist zu groß" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Keine Spalten in der Datei gefunden" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Keine Datensätze in der Datei gefunden" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Keine Zeilen ausgewählt" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Keine Spalten angegeben" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Erforderliche Spalte '{name}' fehlt" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Doppelte Spalte: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Grafiken aus externen Quellen" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URL der Remote-Bilddatei" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Das Herunterladen von Bildern von Remote-URLs ist nicht aktiviert" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Hintergrund-Prozess-Kontrolle fehlgeschlagen" @@ -654,47 +711,48 @@ msgstr "Systeminformationen" msgid "About InvenTree" msgstr "Über InvenTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "Bauauftrag muss abgebrochen werden, bevor er gelöscht werden kann" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Verbrauchsmaterial" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Optional" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Nachverfolgt" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Zugeordnet" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Verfügbar" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Bauauftrag" msgid "Build Orders" msgstr "Bauaufträge" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Ungültige Wahl für übergeordneten Bauauftrag" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "Verantwortlicher Benutzer oder Gruppe muss angegeben werden" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "Teil in Bauauftrag kann nicht geändert werden" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Bauauftragsreferenz" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Bauauftragsreferenz" msgid "Reference" msgstr "Referenz" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Kurze Beschreibung des Baus (optional)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Eltern-Bauauftrag" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Bauauftrag, zu dem dieser Bauauftrag zugwiesen ist" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Bauauftrag, zu dem dieser Bauauftrag zugwiesen ist" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Bauauftrag, zu dem dieser Bauauftrag zugwiesen ist" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Bauauftrag, zu dem dieser Bauauftrag zugwiesen ist" msgid "Part" msgstr "Teil" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Teil für den Bauauftrag wählen" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Auftrag Referenz" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Bestellung, die diesem Bauauftrag zugewiesen ist" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Quell-Lagerort" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Ziel-Lagerort" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "Lagerort an dem fertige Objekte gelagert werden auswählen" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Bau-Anzahl" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Anzahl der zu bauenden Lagerartikel" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Fertiggestellte Teile" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Anzahl der fertigen Lagerartikel" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Bauauftrags-Status" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Bau-Statuscode" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Losnummer" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Losnummer für dieses Endprodukt" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Erstelldatum" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "geplantes Fertigstellungsdatum" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Zieldatum für Bauauftrag-Fertigstellung." -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Fertigstellungsdatum" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "Fertiggestellt von" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Aufgegeben von" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Nutzer der diesen Bauauftrag erstellt hat" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Nutzer der diesen Bauauftrag erstellt hat" msgid "Responsible" msgstr "Verantwortlicher Benutzer" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "Benutzer oder Gruppe verantwortlich für diesen Bauauftrag" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Externer Link" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Link zu einer externen URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Bauauftrags-Priorität" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Priorität dieses Bauauftrags" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Priorität dieses Bauauftrags" msgid "Project Code" msgstr "Projektcode" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Projektcode für diesen Auftrag" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "Fehler beim Abladen der Aufgabe, um die Build-Allokation abzuschließen" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Bauauftrag {build} wurde fertiggestellt" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "Ein Bauauftrag wurde fertiggestellt" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "kein Endprodukt angegeben" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Endprodukt bereits hergstellt" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "Endprodukt stimmt nicht mit dem Bauauftrag überein" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "Anzahl muss größer Null sein" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "Menge kann nicht größer als die Ausgangsmenge sein" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, 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:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Objekt bauen" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Objekt bauen" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Objekt bauen" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Objekt bauen" msgid "Quantity" msgstr "Anzahl" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Erforderliche Menge für Auftrag" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "BestandObjekt ist zu oft zugewiesen" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Reserviermenge muss größer null sein" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Anzahl muss 1 für Objekte mit Seriennummer sein" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "Ausgewählter Lagerbestand stimmt nicht mit BOM-Linie überein" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "Ausgewählter Lagerbestand stimmt nicht mit BOM-Linie überein" msgid "Stock Item" msgstr "Lagerartikel" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Quell-Lagerartikel" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Anzahl an Lagerartikel dem Bauauftrag zuweisen" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Installiere in" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Ziel-Lagerartikel" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "Name des Teils" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Endprodukt" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "Endprodukt stimmt nicht mit übergeordnetem Bauauftrag überein" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "Endprodukt entspricht nicht dem Teil des Bauauftrags" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Dieses Endprodukt wurde bereits fertiggestellt" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "Dieses Endprodukt ist nicht vollständig zugewiesen" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Menge der Endprodukte angeben" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "Ganzzahl für verfolgbare Teile erforderlich" -#: build/serializers.py:278 +#: build/serializers.py:282 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:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Seriennummer" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Seriennummer für dieses Endprodukt eingeben" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Seriennummer für dieses Endprodukt eingeben" msgid "Location" msgstr "Lagerort" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "Lagerort für Bauprodukt" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Seriennummern automatisch zuweisen" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "Benötigte Lagerartikel automatisch mit passenden Seriennummern zuweisen" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "Seriennummern müssen für nachverfolgbare Teile angegeben werden" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "Die folgenden Seriennummern existieren bereits oder sind ungültig" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "Eine Liste von Endprodukten muss angegeben werden" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "Lagerort für ausgemusterte Ausgänge" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "Zuteilungen verwerfen" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "Bestandszuteilung für ausgemusterte Endprodukte verwerfen" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "Grund für das Verwerfen des Bauauftrages/der Bauaufträge" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "Lagerort für fertige Endprodukte" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "Lagerort für fertige Endprodukte" msgid "Status" msgstr "Status" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Unvollständige Zuweisung akzeptieren" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "Endprodukte fertigstellen, auch wenn Bestand nicht fertig zugewiesen wurde" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "Zugewiesen Bestand verbrauchen" -#: build/serializers.py:612 +#: build/serializers.py:616 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:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "Unfertige Endprodukte entfernen" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "Lösche alle noch nicht abgeschlossenen Endprodukte" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Nicht erlaubt" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Als von diesem Bauauftrag verbraucht setzen" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "Bestandszuordnung vor dem Abschluss dieses Bauauftrags freigeben" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Überbelegter Lagerbestand" -#: build/serializers.py:680 +#: build/serializers.py:684 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:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "Der Bestand einiger Lagerartikel ist überbelegt" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Nicht zugewiesene akzeptieren" -#: build/serializers.py:696 +#: build/serializers.py:700 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:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "Benötigter Bestand wurde nicht vollständig zugewiesen" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Unvollständig Zuweisung akzeptieren" -#: build/serializers.py:712 +#: build/serializers.py:716 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:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "Benötigte Teil-Anzahl wurde noch nicht fertiggestellt" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "Bauauftrag hat unvollständige Aufbauten" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Bauauftragsposition" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Endprodukt" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "Endprodukt muss auf den gleichen Bauauftrag verweisen" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "Bauauftragspositionsartikel" -#: build/serializers.py:837 +#: build/serializers.py:841 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:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "Teil muss auf Lager sein" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Verfügbare Menge ({q}) überschritten" -#: build/serializers.py:906 +#: build/serializers.py:910 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:913 +#: build/serializers.py:917 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:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "Zuweisungen müssen angegeben werden" -#: build/serializers.py:1000 +#: build/serializers.py:1004 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:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Lagerort ausschließen" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "Lagerartikel vom ausgewählten Ort ausschließen" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "Wechselbares Lagerbestand" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Lagerartikel an mehreren Standorten können austauschbar verwendet werden" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Ersatzbestand" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "Zuordnung von Ersatzteilen erlauben" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "Optionale Positionen" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "Optionale Stücklisten-Positionen dem Bauauftrag hinzufügen" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "Fehler beim Starten der automatischen Zuweisung" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Hersteller-Teilenummer" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "Ortsname" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "Teil IPN" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Nachverfolgbar" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "Stücklisten-Position" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "Zugewiesener Bestand" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "Bestellt" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "In Produktion" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "Verfügbarer Bestand" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "Externes Lager" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "in Arbeit" msgid "Cancelled" msgstr "Storniert" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "Bestand wurde Bauauftrag noch nicht vollständig zugewiesen" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "Fertiggestellte Endprodukte" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Ausgangs-Lager" msgid "Stock can be taken from any available location." msgstr "Bestand kann jedem verfügbaren Lagerort entnommen werden." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Ziel-Lager" @@ -1827,31 +1956,31 @@ msgstr "Bauauftragdetails" msgid "Incomplete Outputs" msgstr "Unfertige Endprodukte" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" -msgstr "" +msgstr "Link" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" -msgstr "" +msgstr "Datei" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" -msgstr "" - -#: common/currency.py:130 -msgid "Invalid currency code" -msgstr "" +msgstr "Benutzer hat keine Berechtigung zum Löschen des Anhangs" #: common/currency.py:132 -msgid "Duplicate currency code" -msgstr "" +msgid "Invalid currency code" +msgstr "Ungültiges Währungskürzel" -#: common/currency.py:137 +#: common/currency.py:134 +msgid "Duplicate currency code" +msgstr "Doppeltes Währungskürzel" + +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "Kein Plugin" @@ -1905,1591 +2034,1604 @@ msgstr "Zeitstempel der letzten Aktualisierung" msgid "Site URL is locked by configuration" msgstr "Seiten-URL ist durch die Konfiguration gesperrt" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Eindeutiger Projektcode" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Projektbeschreibung" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "Benutzer oder Gruppe verantwortlich für dieses Projekt" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "Einstellungs-Schlüssel (muss einzigartig sein, Groß-/ Kleinschreibung wird nicht beachtet)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "Einstellungs-Wert" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "Wert ist keine gültige Option" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "Wahrheitswert erforderlich" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "Nur Ganzzahl eingeben" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "Schlüsseltext muss eindeutig sein" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Keine Gruppe" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Neustart erforderlich" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "Eine Einstellung wurde geändert, die einen Neustart des Servers erfordert" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "Ausstehende Migrationen" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "Anzahl der ausstehenden Datenbankmigrationen" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "Name der Serverinstanz" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "Kurze Beschreibung der Instanz" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "Name der Instanz verwenden" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "Den Namen der Instanz in der Titelleiste verwenden" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "Anzeige von `Über` einschränken" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "Zeige das `Über` Fenster nur Administratoren" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Firmenname" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "interner Firmenname" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "Basis-URL" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "Basis-URL für dieses Instanz" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Standardwährung" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "Wählen Sie die Basiswährung für Preisberechnungen aus" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" -msgstr "" +msgstr "Verfügbare Währungen" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" -msgstr "" +msgstr "Liste der unterstützten Währungskürzel" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "Währungsaktualisierungsintervall" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "Wie oft Wechselkurse aktualisiert werden sollen (auf Null zum Deaktivieren setzen)" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "Tage" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "Währungs-Aktualisierungs-Plugin" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "Zu verwendendes Währungs-Aktualisierungs-Plugin" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Von URL herunterladen" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Herunterladen von externen Bildern und Dateien von URLs erlaubt" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "Download-Größenlimit" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "Maximal zulässige Größe für heruntergeladene Bilder" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "Benutzer-Agent zum Herunterladen von Daten" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "Überschreiben des Benutzer-Agenten, der verwendet wird, um Bilder und Dateien von externer Servern herunterzuladen (leer für die Standardeinstellung)" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "Strenge URL-Prüfung" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "Erfordert die Schema-Spezifikation bei der Validierung von URLs" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Bestätigung verpflichtend" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Eine ausdrückliche Benutzerbestätigung für bestimmte Aktionen erfordern." -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "Baumtiefe" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "Standard Ebene für Baumansicht. Tiefere Ebenen können bei Bedarf nachgeladen werden." -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "Prüfungsintervall aktualisieren" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "Wie oft soll nach Updates gesucht werden? (auf 0 setzen zum Deaktivieren)" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Automatische Sicherung" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Automatische Sicherung der Datenbank- und Mediendateien aktivieren" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Intervall für automatische Sicherung" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "Anzahl der Tage zwischen automatischen Sicherungen" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "Aufgabenlöschinterval" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "Ergebnisse der Hintergrundaufgabe werden nach der angegebenen Anzahl von Tagen gelöscht" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "Löschintervall für Fehlerprotokolle" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "Fehlerprotokolle werden nach der angegebenen Anzahl von Tagen gelöscht" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "Löschintervall für Benachrichtigungen" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "Benutzerbenachrichtigungen werden nach der angegebenen Anzahl von Tagen gelöscht" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Bacode-Feature verwenden" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "Barcode-Scanner Unterstützung im Webinterface aktivieren" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "Barcode-Eingabeverzögerung" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "Verzögerungszeit bei Barcode-Eingabe" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "Barcode Webcam-Unterstützung" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "Barcode-Scannen über Webcam im Browser erlauben" -#: common/models.py:1395 +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 msgid "Part Revisions" msgstr "Artikelrevisionen" -#: common/models.py:1396 +#: common/models.py:1407 msgid "Enable revision field for Part" msgstr "Revisions-Feld für Artikel aktivieren" -#: common/models.py:1401 +#: common/models.py:1412 msgid "Allow Deletion from Assembly" -msgstr "" +msgstr "Löschen aus Baugruppe erlauben" -#: common/models.py:1402 +#: common/models.py:1413 msgid "Allow deletion of parts which are used in an assembly" -msgstr "" +msgstr "Erlaube das Löschen von Teilen, die in einer Baugruppe verwendet werden" -#: common/models.py:1407 +#: common/models.py:1418 msgid "IPN Regex" msgstr "IPN Regex" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "RegEx Muster für die Zuordnung von Teil-IPN" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Mehrere Artikel mit gleicher IPN erlaubt" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "Mehrere Artikel mit gleicher IPN erlaubt" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "Ändern von IPN erlaubt" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "Ändern der IPN während des Bearbeiten eines Teils erlaubt" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "Teil-Stückliste kopieren" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "Stückliste von Teil kopieren wenn das Teil dupliziert wird " -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "Teil-Parameter kopieren" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "Parameter-Daten für dieses Teil kopieren wenn das Teil dupliziert wird" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "Teil-Testdaten kopieren" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "Test-Daten für dieses Teil kopieren wenn das Teil dupliziert wird" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "Kategorie-Parametervorlage kopieren" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "Kategorie-Parameter Vorlagen kopieren wenn ein Teil angelegt wird" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Vorlage" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "Teile sind standardmäßig Vorlagen" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Baugruppe" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "Teile können standardmäßig aus anderen Teilen angefertigt werden" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Komponente" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "Teile können standardmäßig in Baugruppen benutzt werden" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Kaufbar" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "Artikel sind grundsätzlich kaufbar" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Verkäuflich" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Artikel sind grundsätzlich verkaufbar" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Nachverfolgbar" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "Artikel sind grundsätzlich verfolgbar" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Virtuell" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Teile sind grundsätzlich virtuell" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "Import in Ansichten anzeigen" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "Importassistent in einigen Teil-Ansichten anzeigen" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Verwandte Teile anzeigen" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "Verwandte Teile eines Teils anzeigen" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "Initialer Lagerbestand" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "Erstellen von Lagerbestand beim Hinzufügen eines neuen Teils erlauben" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Initiale Lieferantendaten" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "Erstellen von Lieferantendaten beim Hinzufügen eines neuen Teils erlauben" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "Anzeigeformat für Teilenamen" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "Format für den Namen eines Teiles" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "Standardsymbol der Teilkategorie" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "Standardsymbol der Teilkategorie (leer bedeutet kein Symbol)" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "Parameter Einheiten durchsetzen" -#: common/models.py:1529 +#: common/models.py:1540 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/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "Dezimalstellen für minimalen Preis" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Mindestanzahl der Dezimalstellen bei der Darstellung der Preisdaten" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "Dezimalstellen für maximalen Preis" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Maximale Anzahl der Dezimalstellen bei der Darstellung der Preisdaten" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "Zulieferer-Preise verwenden" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Lieferanten-Staffelpreise in die Gesamt-Preisberechnungen einbeziehen" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "Kaufverlauf überschreiben" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Historische Bestellungspreise überschreiben die Lieferanten-Staffelpreise" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "Lagerartikel-Preis verwenden" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Preise aus manuell eingegebenen Lagerdaten für Preisberechnungen verwenden" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "Lagerartikelpreis Alter" -#: common/models.py:1587 +#: common/models.py:1598 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/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "Variantenpreise verwenden" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "Variantenpreise in die Gesamt-Preisberechnungen einbeziehen" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "Nur aktive Varianten" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "Nur aktive Variantenteile zur Berechnung der Variantenbepreisung verwenden" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "Intervall für Neuberechnung von Preisen" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "Anzahl der Tage bis die Teile-Preisberechnungen automatisch aktualisiert werden" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Interne Preise" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "Interne Preise für Teile aktivieren" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "Interne Preisüberschreibung" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "Falls verfügbar, überschreiben interne Preise Preispannenberechnungen" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Labeldruck aktivieren" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "Labeldruck über die Website aktivieren" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "Label Bild DPI" -#: common/models.py:1639 +#: common/models.py:1650 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/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Berichte aktivieren" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "Berichterstellung aktivieren" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Entwickler-Modus" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "Berichte im Entwickler-Modus generieren (als HTML)" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "Berichtsfehler protokollieren" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "Fehler, die beim Erstellen von Berichten auftreten, protokollieren" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Seitengröße" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Standardseitenformat für PDF-Bericht" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "Testberichte aktivieren" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "Erstellung von Test-Berichten aktivieren" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "Testberichte anhängen" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Beim Drucken eines Testberichts dem zugehörigen Lagerbestand eine Kopie des Testberichts beifügen" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "Global einzigartige Seriennummern" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "Seriennummern für Lagerartikel müssen global eindeutig sein" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "Seriennummern automatisch ausfüllen" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "Seriennummern in Formularen automatisch ausfüllen" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "Erschöpften Lagerartikel löschen" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "Legt das Standardverhalten fest, wenn ein Lagerartikel aufgebraucht ist" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "Losnummer Vorlage" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "Vorlage für die Generierung von Standard-Losnummern für Lagerbestände" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "Bestands-Ablauf" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "Ablaufen von Bestand ermöglichen" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "Abgelaufenen Bestand verkaufen" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "Verkauf von abgelaufenem Bestand erlaubt" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "Bestands-Stehzeit" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "Anzahl an Tagen, an denen Bestand als abgestanden markiert wird, bevor sie ablaufen" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "Abgelaufenen Bestand verbauen" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "Verbauen von abgelaufenen Bestand erlaubt" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "Bestands-Eigentümerkontrolle" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "Eigentümerkontrolle für Lagerorte und Teile aktivieren" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "Standardsymbol für Lagerort" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "Standardsymbol für Lagerstandort (leer bedeutet kein Symbol)" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "Zeige installierte Lagerartikel" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "Anzeige der installierten Lagerartikel in Bestandstabellen" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "Prüfe BOM bei der Installation von Elementen" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "Installierte Lagerbestandteile müssen im BOM für den übergeordneten Teil vorhanden sein" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "Erlaube Verschieben von \"nicht auf Lager\" Bestand" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "Lagerartikel, die nicht auf Lager sind, können zwischen Lagerstandorten übertragen werden" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "Bauauftragsreferenz-Muster" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "Benötigtes Muster für die Generierung des Referenzfeldes für Bauaufträge" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "Verantwortlicher Besitzer erforderlich" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "Jeder Bestellung muss ein verantwortlicher Besitzer zugewiesen werden" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "Blockieren bis Test bestanden" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "Verhindert die Fertigstellung bis alle erforderlichen Tests bestanden sind" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "Rücksendungen aktivieren" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "Aktivieren der Rücksendung-Funktion in der Benutzeroberfläche" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "Referenz Muster für Rücksendungen" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "Benötigtes Muster für die Generierung des Referenzfeldes für Rücksendungen" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "Abgeschlossene Rücksendungen bearbeiten" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "Bearbeitung von Rücksendungen nach Abschluss erlauben" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "Auftragsreferenz-Muster" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "Benötigtes Muster für die Generierung des Referenzfeldes für Aufträge" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "Auftrag Standardsendung" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "Erstelle eine Standardsendung für Aufträge" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "Abgeschlossene Aufträge bearbeiten" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "Bearbeitung von Aufträgen nach Versand oder Abschluss erlauben" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" -msgstr "" +msgstr "Versendete Bestellungen als abgeschlossen markieren" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" -msgstr "" +msgstr "Als versendet markierte Aufträge werden automatisch abgeschlossen und überspringen den Status \"Versandt\"" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "Bestellungsreferenz-Muster" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "Benötigtes Muster für die Generierung des Referenzfeldes für Bestellungen" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "Abgeschlossene Einkaufsaufträge bearbeiten" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "Bearbeitung von Einkaufsaufträgen nach Versand oder Abschluss erlauben" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "Bestellungen automatisch abschließen" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "Bestellung automatisch als abgeschlossen markieren, wenn der Empfang aller Artikel bestätigt wurde" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "Passwort vergessen aktivieren" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "Passwort-vergessen-Funktion auf den Anmeldeseiten aktivieren" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Registrierung erlauben" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "Selbstregistrierung für Benutzer auf den Anmeldeseiten aktivieren" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "SSO aktivieren" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "SSO auf den Anmeldeseiten aktivieren" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "SSO Selbstregistrierung aktivieren" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Selbstregistrierung über SSO für Benutzer auf den Anmeldeseiten aktivieren" -#: common/models.py:1913 +#: common/models.py:1944 +msgid "Enable SSO group sync" +msgstr "SSO Gruppensynchronisation aktivieren" + +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" + +#: common/models.py:1952 +msgid "SSO group key" +msgstr "SSO Gruppenschlüssel" + +#: common/models.py:1954 +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" + +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" + +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" + +#: common/models.py:1968 +msgid "Remove groups outside of SSO" +msgstr "" + +#: common/models.py:1970 +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 "" + +#: common/models.py:1976 msgid "Email required" msgstr "Email-Adresse erforderlich" -#: common/models.py:1914 +#: common/models.py:1977 msgid "Require user to supply mail on signup" msgstr "Benutzer müssen bei der Registrierung eine E-Mail angeben" -#: common/models.py:1919 +#: common/models.py:1982 msgid "Auto-fill SSO users" msgstr "SSO-Benutzer automatisch ausfüllen" -#: common/models.py:1921 +#: common/models.py:1984 msgid "Automatically fill out user-details from SSO account-data" msgstr "Benutzer-Details automatisch aus SSO-Konto ausfüllen" -#: common/models.py:1927 +#: common/models.py:1990 msgid "Mail twice" msgstr "E-Mail zweimal" -#: common/models.py:1928 +#: common/models.py:1991 msgid "On signup ask users twice for their mail" msgstr "Bei der Registrierung den Benutzer zweimal nach der E-Mail-Adresse fragen" -#: common/models.py:1933 +#: common/models.py:1996 msgid "Password twice" msgstr "Passwort zweimal" -#: common/models.py:1934 +#: common/models.py:1997 msgid "On signup ask users twice for their password" msgstr "Bei der Registrierung den Benutzer zweimal nach dem Passwort fragen" -#: common/models.py:1939 +#: common/models.py:2002 msgid "Allowed domains" msgstr "Erlaubte Domains" -#: common/models.py:1941 +#: common/models.py:2004 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "Anmeldung auf bestimmte Domänen beschränken (kommagetrennt, beginnend mit @)" -#: common/models.py:1947 +#: common/models.py:2010 msgid "Group on signup" msgstr "Gruppe bei Registrierung" -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "Gruppe der neue Benutzer bei der Registrierung zugewiesen werden" +#: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" -#: common/models.py:1953 +#: common/models.py:2018 msgid "Enforce MFA" msgstr "MFA erzwingen" -#: common/models.py:1954 +#: common/models.py:2019 msgid "Users must use multifactor security." msgstr "Benutzer müssen Multifaktor-Authentifizierung verwenden." -#: common/models.py:1959 +#: common/models.py:2024 msgid "Check plugins on startup" msgstr "Plugins beim Start prüfen" -#: common/models.py:1961 +#: common/models.py:2026 msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "Beim Start überprüfen, ob alle Plugins installiert sind - Für Container aktivieren" -#: common/models.py:1969 +#: common/models.py:2034 msgid "Check for plugin updates" msgstr "Nach Plugin-Aktualisierungen suchen" -#: common/models.py:1970 +#: common/models.py:2035 msgid "Enable periodic checks for updates to installed plugins" msgstr "Periodische Überprüfungen auf Updates für installierte Plugins aktivieren" -#: common/models.py:1976 +#: common/models.py:2041 msgid "Enable URL integration" msgstr "URL-Integration aktivieren" -#: common/models.py:1977 +#: common/models.py:2042 msgid "Enable plugins to add URL routes" msgstr "Plugins zum Hinzufügen von URLs aktivieren" -#: common/models.py:1983 +#: common/models.py:2048 msgid "Enable navigation integration" msgstr "Navigations-Integration aktivieren" -#: common/models.py:1984 +#: common/models.py:2049 msgid "Enable plugins to integrate into navigation" msgstr "Plugins zur Integration in die Navigation aktivieren" -#: common/models.py:1990 +#: common/models.py:2055 msgid "Enable app integration" msgstr "App-Integration aktivieren" -#: common/models.py:1991 +#: common/models.py:2056 msgid "Enable plugins to add apps" msgstr "Plugins zum Hinzufügen von Apps aktivieren" -#: common/models.py:1997 +#: common/models.py:2062 msgid "Enable schedule integration" msgstr "Terminplan-Integration aktivieren" -#: common/models.py:1998 +#: common/models.py:2063 msgid "Enable plugins to run scheduled tasks" msgstr "Geplante Aufgaben aktivieren" -#: common/models.py:2004 +#: common/models.py:2069 msgid "Enable event integration" msgstr "Ereignis-Integration aktivieren" -#: common/models.py:2005 +#: common/models.py:2070 msgid "Enable plugins to respond to internal events" msgstr "Plugins ermöglichen auf interne Ereignisse zu reagieren" -#: common/models.py:2011 +#: common/models.py:2076 msgid "Enable project codes" msgstr "Projektcodes aktivieren" -#: common/models.py:2012 +#: common/models.py:2077 msgid "Enable project codes for tracking projects" msgstr "Aktiviere Projektcodes für die Verfolgung von Projekten" -#: common/models.py:2017 +#: common/models.py:2082 msgid "Stocktake Functionality" msgstr "Inventurfunktionen" -#: common/models.py:2019 +#: common/models.py:2084 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Inventur-Funktionen zur Aufzeichnung von Lagerbeständen und zur Berechnung des Lagerwerts aktivieren" -#: common/models.py:2025 +#: common/models.py:2090 msgid "Exclude External Locations" msgstr "Externe Standorte ausschließen" -#: common/models.py:2027 +#: common/models.py:2092 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Lagerartikeln in externen Standorten in der Berechnungen zur Bestandsaufnahme ausschließen" -#: common/models.py:2033 +#: common/models.py:2098 msgid "Automatic Stocktake Period" msgstr "Automatische Inventur-Periode" -#: common/models.py:2035 +#: common/models.py:2100 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Anzahl der Tage zwischen automatischen Bestandsaufnahmen (zum Deaktivieren auf Null setzen)" -#: common/models.py:2041 +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "Löschintervall für Berichte" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Inventurberichte werden nach der angegebenen Anzahl von Tagen gelöscht" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "Vollständige Namen von Benutzern anzeigen" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "Vollständigen Namen von Benutzern anstatt Benutzername anzeigen" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "Teststation-Daten aktivieren" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "Teststation-Datenerfassung für Testergebnisse aktivieren" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "Einstellungs-Schlüssel (muss einzigartig sein, Groß-/ Kleinschreibung wird nicht beachtet)" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "Inaktive Teile ausblenden" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Ausblenden inaktiver Teile in den auf der Startseite angezeigten Ergebnissen" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "Abonnierte Teile anzeigen" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "Zeige abonnierte Teile auf der Startseite" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "Abonnierte Kategorien anzeigen" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "Zeige abonnierte Teilkategorien auf der Startseite" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "Neueste Teile anzeigen" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "Zeige neueste Teile auf der Startseite" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "Zeige ungültige Stücklisten" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "Zeige Stücklisten, die noch nicht validiert sind, auf der Startseite" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "Neueste Bestandänderungen anzeigen" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "Zeige zuletzt geänderte Lagerbestände auf der Startseite" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "Niedrigen Bestand anzeigen" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "Zeige geringen Bestand auf der Startseite" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "Lerren Bestand anzeigen" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "Zeige aufgebrauchte Lagerartikel auf der Startseite" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "Benötigten Bestand anzeigen" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "Zeige Bestand für Bauaufträge auf der Startseite" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "Abgelaufenen Bestand anzeigen" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "Zeige abgelaufene Lagerbestände auf der Startseite" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "Alten Bestand anzeigen" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "Zeige überfällige Lagerartikel auf der Startseite" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "Ausstehende Bauaufträge anzeigen" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "Zeige ausstehende Bauaufträge auf der Startseite" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "Zeige überfällige Bauaufträge" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "Zeige überfällige Bauaufträge auf der Startseite" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "Ausstehende POs anzeigen" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "Zeige ausstehende POs auf der Startseite" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "Überfällige POs anzeigen" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "Zeige überfällige POs auf der Startseite" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "Ausstehende SOs anzeigen" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "Zeige ausstehende SOs auf der Startseite" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "Überfällige SOs anzeigen" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "Zeige überfällige SOs auf der Startseite" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "Ausstehende Versandaufträge anzeigen" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "Ausstehende Versandaufträge auf der Startseite anzeigen" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "Zeige Neuigkeiten" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "Neuigkeiten auf der Startseite anzeigen" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "Label inline anzeigen" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "PDF-Labels im Browser anzeigen, anstatt als Datei herunterzuladen" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "Standard-Etikettendrucker" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "Einen standardmäßig ausgewählten Etikettendrucker konfigurieren" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "Berichte inline anzeigen" -#: common/models.py:2246 +#: common/models.py:2311 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "PDF-Berichte im Browser anzeigen, anstatt als Datei herunterzuladen" -#: common/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "Teile suchen" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "Teile in der Suchvorschau anzeigen" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "Zulieferteile durchsuchen" -#: common/models.py:2259 +#: common/models.py:2324 msgid "Display supplier parts in search preview window" msgstr "Zuliefererteile in der Suchvorschau anzeigen" -#: common/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "Herstellerteile durchsuchen" -#: common/models.py:2265 +#: common/models.py:2330 msgid "Display manufacturer parts in search preview window" msgstr "Herstellerteile in der Suchvorschau anzeigen" -#: common/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "Inaktive Teile ausblenden" -#: common/models.py:2271 +#: common/models.py:2336 msgid "Excluded inactive parts from search preview window" msgstr "Inaktive Teile in der Suchvorschau ausblenden" -#: common/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "Kategorien durchsuchen" -#: common/models.py:2277 +#: common/models.py:2342 msgid "Display part categories in search preview window" msgstr "Teilekategorien in der Suchvorschau anzeigen" -#: common/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "Bestand durchsuchen" -#: common/models.py:2283 +#: common/models.py:2348 msgid "Display stock items in search preview window" msgstr "Lagerartikel in Suchvorschau anzeigen" -#: common/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "Nicht verfügbare Artikel ausblenden" -#: common/models.py:2290 +#: common/models.py:2355 msgid "Exclude stock items which are not available from the search preview window" msgstr "Nicht verfügbare Lagerartikel aus der Suchvorschau ausschließen" -#: common/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "Lagerorte durchsuchen" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "Lagerorte in Suchvorschau anzeigen" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "Firmen durchsuchen" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "Firmen in der Suchvorschau anzeigen" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "Bauaufträge durchsuchen" -#: common/models.py:2309 +#: common/models.py:2374 msgid "Display build orders in search preview window" msgstr "Bauaufträge in der Suchvorschau anzeigen" -#: common/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "Bestellungen durchsuchen" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "Bestellungen in der Suchvorschau anzeigen" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "Inaktive Bestellungen ausblenden" -#: common/models.py:2322 +#: common/models.py:2387 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inaktive Bestellungen in der Suchvorschau ausblenden" -#: common/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "Aufträge durchsuchen" -#: common/models.py:2329 +#: common/models.py:2394 msgid "Display sales orders in search preview window" msgstr "Aufträge in der Suchvorschau anzeigen" -#: common/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "Inaktive Aufträge ausblenden" -#: common/models.py:2336 +#: common/models.py:2401 msgid "Exclude inactive sales orders from search preview window" msgstr "Inaktive Aufträge in der Suchvorschau ausblenden" -#: common/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "Suche nach Rücksendungen" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "Rücksendungen in der Suchvorschau anzeigen" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "Inaktive Rücksendungen ausblenden" -#: common/models.py:2350 +#: common/models.py:2415 msgid "Exclude inactive return orders from search preview window" msgstr "Inaktive Rücksendungen in der Suchvorschau ausblenden" -#: common/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "Anzahl Suchergebnisse" -#: common/models.py:2358 +#: common/models.py:2423 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/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "Regex Suche" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "Reguläre Ausdrücke in Suchabfragen aktivieren" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "Ganzes Wort suchen" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "Suchabfragen liefern Ergebnisse für ganze Wortkombinationen" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "zeige Bestand in Eingabemasken" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "Zeige den verfügbaren Bestand in einigen Eingabemasken" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "Esc-Taste schließt Formulare" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "Benutze die Esc-Taste, um Formulare zu schließen" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "Fixierter Navigationsleiste" -#: common/models.py:2389 +#: common/models.py:2454 msgid "The navbar position is fixed to the top of the screen" msgstr "Position der Navigationsleiste am oberen Bildschirmrand fixieren" -#: common/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "Datumsformat" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "Bevorzugtes Format für die Anzeige von Daten" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Teilzeitplanung" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "Zeige Zeitplanung für Teile" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventur" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Zeigt Inventur-Informationen an (falls die Inventurfunktion aktiviert ist)" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "Zeichenkettenlänge in Tabellen" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "Maximale Länge für Zeichenketten, die in Tabellenansichten angezeigt werden" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "Standardvorlage für Teilebeschriftung" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "Die Teil-Etikettenvorlage, die automatisch ausgewählt werden soll" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "Lagerartikel-Standardvorlage" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "Die Lagerartikel-Etikettenvorlage soll automatisch ausgewählt werden" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "Standardetikettenvorlage für Lagerstandort" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "Die Lagerstandort-Etikettenvorlage, die automatisch ausgewählt werden soll" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "Standardetikettenvorlage für Bauauftragspositionen" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "Die Bauauftragspositionsetikettenvorlage welche automatisch ausgewählt werden soll" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "Fehlerberichte empfangen" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "Benachrichtigungen bei Systemfehlern erhalten" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "Zuletzt verwendete Druckmaschinen" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "Die zuletzt benutzten Druckmaschinen für einen Benutzer speichern" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Benutzer" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "Preisstaffelungs Anzahl" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Preis" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "Stückpreis für die angegebene Anzahl" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "Endpunkt" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "Endpunkt, an dem dieser Webhook empfangen wird" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "Name für diesen Webhook" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Aktiv" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "Ist dieser Webhook aktiv" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "Token" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "Token für Zugang" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "Geheimnis" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "Shared Secret für HMAC" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "Nachrichten-ID" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "Eindeutige Kennung für diese Nachricht" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "Host" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "Host von dem diese Nachricht empfangen wurde" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "Kopfzeile" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "Header dieser Nachricht" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "Body" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "Body dieser Nachricht" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "Endpunkt, über den diese Nachricht empfangen wurde" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "Bearbeitet" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "Wurde die Arbeit an dieser Nachricht abgeschlossen?" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "ID" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Titel" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "Titel" msgid "Link" msgstr "Link" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "Veröffentlicht" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Autor" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "Zusammenfassung" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "Gelesen" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "Wurde diese Nachricht gelesen?" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,88 +3671,96 @@ msgstr "Wurde diese Nachricht gelesen?" msgid "Image" msgstr "Bild" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "Bilddatei" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "Einheitsname muss eine gültige Kennung sein" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "Einheitsname" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Symbol" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "Optionales Einheitssymbol" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definition" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "Einheitsdefinition" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Anhang" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Fehlende Datei" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Fehlender externer Link" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Datei zum Anhängen auswählen" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Kommentar" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" -msgstr "" +msgstr "Upload Datum" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" -msgstr "" +msgstr "Datum der hochgeladenen Datei" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" -msgstr "" +msgstr "Dateigröße" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" -msgstr "" +msgstr "Dateigröße in Bytes" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" -msgstr "" +msgstr "Ungültiger Modelltyp für Anhang angegeben" #: common/notifications.py:314 #, python-brace-format @@ -3630,7 +3780,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:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "Artikel erhalten" @@ -3646,77 +3796,77 @@ msgstr "Artikel wurden aus einer Rücksendung erhalten" msgid "Error raised by plugin" msgstr "Fehler in Plugin aufgetreten" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "Wird ausgeführt" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "Anstehende Aufgaben" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "Geplante Aufgaben" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "Fehlgeschlagene Aufgaben" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "Aufgabe-ID" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "Eindeutige Aufgaben-ID" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "Sperren" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "Sperrzeit" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "Aufgabenname" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "Funktion" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "Funktionsname" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "Parameter" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "Aufgaben-Parameter" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "Schlüsselwort Parameter" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "Schlüsselwort Parameter für Aufgaben" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Dateiname" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" -msgstr "" +msgstr "Modelltyp" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" -msgstr "" +msgstr "Benutzer hat keine Berechtigung, Anhänge für dieses Modell zu erstellen oder zu bearbeiten" #: common/validators.py:33 msgid "No attachment model type provided" @@ -3781,29 +3931,29 @@ msgstr "Teile importiert" msgid "Previous Step" msgstr "Vorheriger Schritt" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "Teil ist aktiv" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Hersteller ist aktiv" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "Lieferantenteil ist aktiv" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "Internes Teil ist aktiv" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "Lieferant ist aktiv" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Firma" @@ -3843,8 +3993,9 @@ msgstr "Kontakt-Telefon" msgid "Contact email address" msgstr "Kontakt-Email" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "Ist dieses Unternehmen aktiv?" #: company/models.py:168 -msgid "is customer" -msgstr "ist Kunde" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "Verkaufen Sie Teile an diese Firma?" #: company/models.py:174 -msgid "is supplier" -msgstr "ist Zulieferer" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "Kaufen Sie Teile von dieser Firma?" #: company/models.py:180 -msgid "is manufacturer" -msgstr "ist Hersteller" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "Produziert diese Firma Teile?" msgid "Default currency used for this company" msgstr "Standard-Währung für diese Firma" -#: company/models.py:366 +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Adresse" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Adressen" + +#: company/models.py:372 msgid "Select company" msgstr "Firma auswählen" -#: company/models.py:371 +#: company/models.py:377 msgid "Address title" msgstr "Adresstitel" -#: company/models.py:372 +#: company/models.py:378 msgid "Title describing the address entry" msgstr "Titel zur Beschreibung des Adresseintrages" -#: company/models.py:378 +#: company/models.py:384 msgid "Primary address" msgstr "Primäre Adresse" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "Als primäre Adresse festlegen" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "Linie 1" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "Adresszeile 1" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "Linie 2" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "Adresszeile 2" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "Postleitzahl" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "Stadt/Region" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "Postleitzahl Stadt/Region" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "Staat/Provinz" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "Bundesland" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "Land" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "Adresse Land" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "Versandnotizen" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "Notizen für Versandkurier" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "Interne Versandnotizen" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "Versandnotizen für interne Verwendung" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "Link zu Adressinformationen (extern)" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "Herstellerteil" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Basisteil" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "Teil auswählen" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Hersteller" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Hersteller auswählen" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "MPN" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Hersteller-Teilenummer" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "Externe URL für das Herstellerteil" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "Teilbeschreibung des Herstellers" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Parametername" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Wert" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Parameterwert" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "Einheiten" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "Parametereinheit" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "Zuliefererteil" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "Packeinheiten müssen mit den Basisteileinheiten kompatibel sein" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "Packeinheiten müssen größer als Null sein" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "Verlinktes Herstellerteil muss dasselbe Basisteil referenzieren" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Zulieferer" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Zulieferer auswählen" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "Lagerbestandseinheit (SKU) des Zulieferers" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "Ist dieser Lieferantenteil aktiv?" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "Herstellerteil auswählen" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "Teil-URL des Zulieferers" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "Zuliefererbeschreibung des Teils" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Notiz" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "Basiskosten" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "Mindestpreis" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "Verpackungen" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "Teile-Verpackungen" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "Teile-Verpackungen" msgid "Pack Quantity" msgstr "Packmenge" -#: company/models.py:841 +#: company/models.py:848 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:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "Vielfache" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "Mehrere bestellen" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "Verfügbare Menge von Lieferanten" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "Verfügbarkeit aktualisiert" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "Datum des letzten Updates der Verfügbarkeitsdaten" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "Standard-Währung für diesen Zulieferer" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "Auf Lager" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "Inaktiv" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "Bild löschen" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Kunde" @@ -4278,13 +4448,6 @@ msgstr "Kunde" msgid "Uses default currency" msgstr "verwendet Standard-Währung" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Adresse" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Telefon" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "Herstellerteil löschen" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "Internes Teil" @@ -4474,7 +4638,7 @@ msgstr "Keine Herstellerdaten verfügbar" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "Neuer Parameter" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "Parameter hinzufügen" @@ -4519,10 +4683,6 @@ msgstr "Zugewiesene Lagerartikel" msgid "Contacts" msgstr "Kontakte" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "Adressen" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "Zuliefererteil entfernen" msgid "No supplier information available" msgstr "Keine Lieferanteninformationen verfügbar" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "Verfügbarkeit der Teile aktualisieren" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Neue Firma" msgid "Placed" msgstr "Platziert" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "Spalten" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "Wert" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "Fehler" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "Gültig" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "Kopien" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "Anzahl der zu druckenden Kopien für jedes Label" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "Verbunden" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "Unbekannt" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "Drucken" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "Keine Medien" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "Verbindung getrennt" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "Etikettendrucker" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "Drucken Sie Etiketten direkt für verschiedene Artikel." -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "Druckerstandort" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "Den Drucker an einen bestimmten Ort aufstellen" @@ -4739,10 +5055,6 @@ msgstr "Keine Fehler" msgid "Initialized" msgstr "Initialisiert" -#: machine/models.py:110 -msgid "Errors" -msgstr "Fehler" - #: machine/models.py:117 msgid "Machine status" msgstr "Status der Maschine" @@ -4768,44 +5080,44 @@ msgstr "Konfigurationstyp" msgid "Total Price" msgstr "Gesamtpreis" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "Bestellstatus" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "Hat Preise" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "Keine passende Bestellung gefunden" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "Bestellung" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "Bestellung abgeschlossen" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "Bestellung ausstehend" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "Bestellung ausstehend" msgid "Purchase Order" msgstr "Bestellung" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "Rücksendeauftrag" msgid "Total price for this order" msgstr "Gesamtpreis für diese Bestellung" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "Auftragswährung" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "Währung für diesen Auftrag (leer lassen, um Firmenstandard zu verwenden)" @@ -4846,7 +5158,7 @@ msgstr "Auftragsbeschreibung (optional)" msgid "Select project code for this order" msgstr "Projektcode für diesen Auftrag auswählen" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "Link auf externe Seite" @@ -4895,15 +5207,15 @@ msgstr "Zulieferer Bestellreferenz" msgid "received by" msgstr "Empfangen von" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "Aufgabedatum" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "Datum an dem die Bestellung aufgegeben wurde" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "Datum an dem der Auftrag fertigstellt wurde" @@ -4919,15 +5231,15 @@ msgstr "Anzahl muss eine positive Zahl sein" msgid "Company to which the items are being sold" msgstr "Firma an die die Teile verkauft werden" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "Kundenreferenz" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "Bestellreferenz" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4939,11 +5251,11 @@ msgstr "Versand von" #: order/models.py:1025 msgid "Order is already complete" -msgstr "" +msgstr "Bestellung ist bereits abgeschlossen" #: order/models.py:1028 msgid "Order is already cancelled" -msgstr "" +msgstr "Bestellung ist bereits storniert" #: order/models.py:1032 msgid "Only an open order can be marked as complete" @@ -4989,20 +5301,24 @@ msgstr "Zusätzlicher Kontext für diese Zeile" msgid "Unit price" msgstr "Stückpreis" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "Lieferantenteil muss mit Lieferant übereinstimmen" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "gelöscht" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "Zuliefererteil" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "Zuliefererteil" msgid "Received" msgstr "Empfangen" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "Empfangene Objekt-Anzahl" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "Preis" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "Preis pro Einheit" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "Wo möchte der Käufer diesen Artikel gelagert haben?" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "Ein virtuelles Teil kann nicht einem Auftrag zugeordnet werden" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "Nur verkaufbare Teile können einem Auftrag zugewiesen werden" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "Verkaufspreis" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "Stückverkaufspreis" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Versendet" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "Versendete Menge" -#: order/models.py:1672 +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "Versanddatum" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "Lieferdatum" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "Versanddatum" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "Kontrolliert von" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "Benutzer, der diese Sendung kontrolliert hat" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "Sendung" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "Sendungsnummer" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "Sendungsverfolgungsnummer" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "Informationen zur Sendungsverfolgung" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "Rechnungsnummer" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "Referenznummer für zugehörige Rechnung" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "Sendung wurde bereits versandt" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "Sendung hat keine zugewiesene Lagerartikel" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "Lagerartikel wurde nicht zugewiesen" -#: order/models.py:1863 +#: order/models.py:1889 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:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "Kann Lagerartikel keiner Zeile ohne Teil hinzufügen" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Die zugeordnete Anzahl darf nicht die verfügbare Anzahl überschreiten" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "Anzahl für serialisierte Lagerartikel muss 1 sein" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "Auftrag gehört nicht zu Sendung" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "Sendung gehört nicht zu Auftrag" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "Position" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "Sendungsnummer-Referenz" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "Position" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "Lagerartikel für Zuordnung auswählen" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "Anzahl für Bestandszuordnung eingeben" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "Rücksendungsreferenz" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "Firma von der die Artikel zurückgeschickt werden" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "Status der Rücksendung" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "Nur serialisierte Artikel können einer Rücksendung zugeordnet werden" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "Artikel zur Rücksendung auswählen" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "Empfangsdatum" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "Das Datum des Empfangs dieses Rücksendeartikels" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "Ergebnis" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "Ergebnis für dieses Zeilenelement" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "Kosten für die Rückgabe oder Reparatur dieses Objektes" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "Kosten für die Rückgabe oder Reparatur dieses Objektes" msgid "Line Items" msgstr "Positionen" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "Abgeschlossene Positionen" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "Bestellung kann nicht verworfen werden" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "Erlaube das Schließen des Auftrags mit unvollständigen Positionen" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "Auftrag hat unvollständige Positionen" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "Der Auftrag ist nicht offen" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "Automatische Preisgestaltung" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "Kaufpreis automatisch basierend auf Lieferantenbestandsdaten berechnen" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "Kaufpreiswährung" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "Elemente zusammenfügen" -#: order/serializers.py:480 +#: order/serializers.py:509 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:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "Interne Teilenummer" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "Zuliefererteil muss ausgewählt werden" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "Bestellung muss angegeben sein" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "Lieferant muss mit der Bestellung übereinstimmen" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "Die Bestellung muss mit dem Lieferant übereinstimmen" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "Position" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "Position stimmt nicht mit Kaufauftrag überein" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "Zielort für empfangene Teile auswählen" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "Losnummer für eingehende Lagerartikel" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "Seriennummern für eingehende Lagerartikel" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Barcode" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "Gescannter Barcode" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "Barcode ist bereits in Verwendung" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "Ganzzahl für verfolgbare Teile erforderlich" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "Positionen müssen angegeben werden" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "Ziel-Lagerort muss angegeben werden" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "Barcode muss eindeutig sein" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "Verkaufspreis-Währung" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "Keine Sendungsdetails angegeben" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "Position ist nicht diesem Auftrag zugeordnet" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "Anzahl muss positiv sein" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "Seriennummern zum Zuweisen eingeben" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "Sendung wurde bereits versandt" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "Sendung ist nicht diesem Auftrag zugeordnet" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "Folgende Serienummern konnten nicht gefunden werden" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "Folgende Seriennummern sind bereits zugewiesen" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "Artikel der Bestellzeile zurücksenden" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "Artikel entspricht nicht der Rücksendeschrift" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "Artikel wurde bereits erhalten" -#: order/serializers.py:1665 +#: order/serializers.py:1723 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:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "Verkaufspreis-Währung" @@ -5695,7 +6047,7 @@ msgstr "Kundenreferenz" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "Stückpreis für {part} auf {price} aktualisiert" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "{part} Stückpreis auf {price} und Menge auf {qty} aktualisiert" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "Teil-ID" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "Name des Teils" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "Beschreibung des Teils" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "IPN (Interne Produktnummer)" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "Version" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Schlüsselwörter" @@ -5831,7 +6178,8 @@ msgstr "Artikelbild" msgid "Category ID" msgstr "Kategorie-ID" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "Kategoriename" @@ -5843,11 +6191,11 @@ msgstr "Standard-Standortnummer" msgid "Default Supplier ID" msgstr "Standard-Lieferantennummer" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "Variante von" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "Minimaler Bestand" @@ -5855,18 +6203,19 @@ msgstr "Minimaler Bestand" msgid "Used In" msgstr "Benutzt in" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "Im Bau" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "Minimale Kosten" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "Maximale Kosten" @@ -5883,14 +6232,14 @@ msgstr "Name des übergeordneten Teils" msgid "Category Path" msgstr "Pfad zur Kategorie" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Teile" @@ -5907,125 +6256,117 @@ msgstr "Stücklisten-Position ID" msgid "Parent IPN" msgstr "Übergeordnete IPN" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "Teil IPN" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "Niedrigster Preis" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "Höchster Preis" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "Markiert" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "Nach markierten Kategorien filtern" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "Ebenen" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "Filter nach Kategorietiefe" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" -msgstr "" +msgstr "Oberste Ebene" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "Mehrstufig" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "Unterkategorien in gefilterte Ergebnisse einbeziehen" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "Übergeordnetes" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "Nach übergeordneter Kategorie filtern" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "Baum ausschließen" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "Unterkategorien in der angegebenen Kategorie ausschließen" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "Ergebnisse" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "Eingehende Bestellung" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "Ausgehender Auftrag" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "Lagerartikel produziert von Bauauftrag" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "Lagerartikel für Bauauftrag benötigt" -#: part/api.py:881 -msgid "Valid" -msgstr "Gültig" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "Gesamte Stückliste validieren" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "Diese Option muss ausgewählt werden" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "Kategorie" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "Verwendet" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "Standard-Lagerort" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "Gesamtbestand" @@ -6034,7 +6375,7 @@ msgstr "Gesamtbestand" msgid "Input quantity for price calculation" msgstr "Menge für die Preisberechnung" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Teil-Kategorie" @@ -6049,7 +6390,7 @@ msgstr "Teil-Kategorien" msgid "Default location for parts in this category" msgstr "Standard-Lagerort für Teile dieser Kategorie" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "Standard Stichwörter" msgid "Default keywords for parts in this category" msgstr "Standard-Stichworte für Teile dieser Kategorie" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "Symbol" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "Symbol (optional)" @@ -6081,1002 +6422,1035 @@ msgstr "Symbol (optional)" 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:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" -msgstr "" +msgstr "Dieses Teil kann nicht gelöscht werden, da es noch aktiv ist" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" -msgstr "" +msgstr "Dieses Teil kann nicht gelöscht werden, da es in einem Bauauftrag verwendet wird" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "Ungültige Auswahl für übergeordnetes Teil" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, 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:595 +#: part/models.py:599 #, 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:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPN muss mit Regex-Muster {pattern} übereinstimmen" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "Ein Lagerartikel mit dieser Seriennummer existiert bereits" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "Doppelte IPN in den Teil-Einstellungen nicht erlaubt" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "Teil mit diesem Namen, IPN und Revision existiert bereits." -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "Strukturellen Teilekategorien können keine Teile zugewiesen werden!" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Name des Teils" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "Ist eine Vorlage" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "Ist dieses Teil eine Vorlage?" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "Ist dieses Teil eine Variante eines anderen Teils?" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "Artikelbeschreibung (optional)" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "Schlüsselworte um die Sichtbarkeit in Suchergebnissen zu verbessern" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "Teile-Kategorie" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "Interne Teilenummer" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "Revisions- oder Versionsnummer" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "Wo wird dieses Teil normalerweise gelagert?" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "Standard Zulieferer" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "Standard Zuliefererteil" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "Standard Ablaufzeit" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "Ablauf-Zeit (in Tagen) für Bestand dieses Teils" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "Minimal zulässiger Bestand" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "Maßeinheit für diesen Teil" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "Kann dieses Teil aus anderen Teilen angefertigt werden?" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "Kann dieses Teil zum Bauauftrag von anderen genutzt werden?" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "Hat dieses Teil Tracking für einzelne Objekte?" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "Kann dieses Teil von externen Zulieferern gekauft werden?" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "Kann dieses Teil an Kunden verkauft werden?" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "Ist dieses Teil aktiv?" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 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:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "Prüfsumme der Stückliste" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "Prüfsumme der Stückliste gespeichert" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "Stückliste kontrolliert von" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "BOM Kontrolldatum" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "Erstellungs-Nutzer" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "Verantwortlicher Besitzer für dieses Teil" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "Letzte Inventur" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "Mehrere verkaufen" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "Währung für die Berechnung der Preise im Cache" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "Minimale Stücklisten Kosten" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "Minimale Kosten für Teile" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "Maximale Stücklisten Kosten" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "Maximale Kosten für Teile" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "Minimale Einkaufskosten" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "Minimale historische Kaufkosten" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "Maximale Einkaufskosten" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "Maximale historische Einkaufskosten" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "Minimaler interner Preis" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "Minimale Kosten basierend auf den internen Staffelpreisen" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "Maximaler interner Preis" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "Maximale Kosten basierend auf internen Preisstaffeln" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "Minimaler Lieferantenpreis" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "Mindestpreis für Teil von externen Lieferanten" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "Maximaler Lieferantenpreis" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "Maximaler Preis für Teil von externen Lieferanten" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "Minimale Variantenkosten" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "Berechnete minimale Kosten für Variantenteile" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "Maximale Variantenkosten" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "Berechnete maximale Kosten für Variantenteile" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "Mindestkosten überschreiben" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "Maximale Kosten überschreiben" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "Berechnete Mindestkosten" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "Berechnete Maximalkosten" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "Mindestverkaufspreis" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "Mindestverkaufspreis basierend auf Staffelpreisen" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "Maximaler Verkaufspreis" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "Maximalverkaufspreis basierend auf Staffelpreisen" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "Mindestverkaufskosten" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "Minimaler historischer Verkaufspreis" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "Maximale Verkaufskosten" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "Maximaler historischer Verkaufspreis" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "Teil für die Inventur" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "Stückzahl" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "Anzahl einzelner Bestandseinträge zum Zeitpunkt der Inventur" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "Insgesamt verfügbarer Lagerbestand zum Zeitpunkt der Inventur" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "Datum" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "Datum der Inventur" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "Zusätzliche Notizen" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "Benutzer, der diese Inventur durchgeführt hat" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "Mindestbestandswert" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "Geschätzter Mindestwert des vorhandenen Bestands" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "Maximaler Bestandswert" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "Geschätzter Maximalwert des vorhandenen Bestands" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "Bericht" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "Inventur-Berichtsdatei (intern generiert)" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "Anzahl der Teile" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "Anzahl der Teile, die von der Inventur abgedeckt werden" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "Benutzer, der diesen Inventurbericht angefordert hat" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 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:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "Auswahl muss einzigartig sein" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "Test-Vorlagen können nur für verfolgbare Teile angelegt werden" -#: part/models.py:3466 +#: part/models.py:3482 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:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "Test-Name" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "Namen für diesen Test eingeben" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "Testschlüssel" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "Vereinfachter Schlüssel zum Test" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "Test-Beschreibung" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "Beschreibung für diesen Test eingeben" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Aktiviert" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "Ist dieser Test aktiviert?" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "Benötigt" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "Muss dieser Test erfolgreich sein?" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "Erfordert Wert" -#: part/models.py:3515 +#: part/models.py:3531 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:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "Anhang muss eingegeben werden" -#: part/models.py:3522 +#: part/models.py:3538 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:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "Auswahlmöglichkeiten" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" +msgstr "Gültige Optionen für diesen Test (durch Komma getrennt)" + +#: part/models.py:3577 +msgid "Part Parameter Template" msgstr "" -#: part/models.py:3583 +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "Checkbox-Parameter können keine Einheiten haben" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "Checkbox-Parameter können keine Auswahl haben" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "Vorlagen-Name des Parameters muss eindeutig sein" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "Name des Parameters" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "Physikalische Einheiten für diesen Parameter" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "Parameter-Beschreibung" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "Checkbox" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "Ist dieser Parameter eine Checkbox?" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "Gültige Optionen für diesen Parameter (durch Kommas getrennt)" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "Ungültige Auswahl für Parameterwert" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "Ausgangsteil" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Parameter Vorlage" -#: part/models.py:3801 -msgid "Data" -msgstr "Wert" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "Parameter Wert" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Standard-Wert" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "Standard Parameter Wert" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "Teilnummer oder Teilname" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "Eindeutige Teil-ID" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "IPN-Wert des Teils" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "Stufe" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "Stücklistenebene" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "Ausgangsteil auswählen" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "Untergeordnetes Teil" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "Teil für die Nutzung in der Stückliste auswählen" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "Stücklisten-Anzahl für dieses Stücklisten-Teil" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "Diese Stücklisten-Position ist optional" -#: part/models.py:4071 +#: part/models.py:4156 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:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Überschuss" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Geschätzter Ausschuss (absolut oder prozentual)" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "Referenz der Postion auf der Stückliste" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "Notizen zur Stücklisten-Position" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "Prüfsumme" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "Prüfsumme der Stückliste" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "überprüft" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "Diese Stücklistenposition wurde validiert" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "Wird vererbt" -#: part/models.py:4113 +#: part/models.py:4198 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:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "Varianten zulassen" -#: part/models.py:4119 +#: part/models.py:4204 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:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "Menge muss eine Ganzzahl sein" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "Zuliefererteil muss festgelegt sein" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "Stücklisten Ersatzteile" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "Ersatzteil kann nicht identisch mit dem Hauptteil sein" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "Übergeordnete Stücklisten Position" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "Ersatzteil" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "Teil 1" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "Teil 2" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "verknüpftes Teil auswählen" -#: part/models.py:4440 +#: part/models.py:4525 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:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "Doppelte Beziehung existiert bereits" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" -msgstr "" +msgstr "Übergeordnete Kategorie" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "Übergeordnete Teilkategorie" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Unter-Kategorien" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "Ergebnisse" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "Anzahl der Ergebnisse, die in dieser Vorlage aufgezeichnet wurden" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "Kaufwährung dieses Lagerartikels" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "Anzahl der Teile, die diese Vorlage verwenden" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "Keine Teile ausgewählt" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "Kategorie auswählen" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "Originalteil" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "Originalteil zum Duplizieren auswählen" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "Bild kopieren" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "Bild vom Originalteil kopieren" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Stückliste kopieren" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "Stückliste vom Originalteil kopieren" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "Parameter kopieren" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "Parameterdaten vom Originalteil kopieren" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "Anmerkungen kopieren" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "Notizen aus Originalteil kopieren" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "Start-Bestandsmenge" -#: part/serializers.py:485 +#: part/serializers.py:503 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:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "Initialer Lagerort" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "Lagerstandort für dieses Teil angeben" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "Lieferant auswählen (oder leer lassen, um zu überspringen)" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "Hersteller auswählen (oder leer lassen, um zu überspringen)" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "Hersteller-Teilenummer" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "Ausgewählte Firma ist kein gültiger Lieferant" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "Ausgewählte Firma ist kein gültiger Hersteller" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "Herstellerteil mit dieser MPN existiert bereits" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "Lieferantenteil mit dieser SKU existiert bereits" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "Externes Lager" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "Nicht zugewiesenes Lager" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "Alternatives Lager" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "Teil duplizieren" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "Initiale Daten von anderem Teil kopieren" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Initialer Lagerbestand" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "Erstelle Teil mit Ausgangsbestand" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "Lieferanteninformationen" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "Lieferanteninformationen zu diesem Teil hinzufügen" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "Kategorieparameter kopieren" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "Parametervorlagen aus der ausgewählten Teilkategorie kopieren" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "Vorhandenes Bild" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "Dateiname eines vorhandenen Teilbildes" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "Bilddatei existiert nicht" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "Inventurbericht auf ein bestimmtes Teil und alle Variantenteile beschränken" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "Inventurbericht auf eine bestimmte Teilekategorie und alle untergeordneten Kategorien beschränken" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "Inventurbericht auf einen bestimmten Lagerort und alle untergeordneten Lagerorte beschränken" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "Externen Bestand ausschließen" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "Lagerartikel an externen Orten ausschließen" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "Bericht generieren" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "Erstelle Berichtsdatei mit berechneten Inventurdaten" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "Teile aktualisieren" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "Angegebene Teile mit berechneten Inventurdaten aktualisieren" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "Inventur-Funktionalität ist nicht aktiviert" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "Berechneten Wert für Mindestpreis überschreiben" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "Mindestpreis Währung" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "Berechneten Wert für maximalen Preis überschreiben" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "Maximalpreis Währung" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "Aktualisieren" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "Preis für dieses Teil aktualisieren" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, 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:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "Mindestpreis darf nicht größer als der Maximalpreis sein" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "Der Maximalpreis darf nicht kleiner als der Mindestpreis sein" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "Teil auswählen, von dem Stückliste kopiert wird" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "Bestehende Daten entfernen" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "Bestehende Stücklisten-Positionen vor dem Kopieren entfernen" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "Vererbtes einschließen" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "Stücklisten-Positionen einbeziehen, die von Vorlage-Teilen geerbt werden" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "Ungültige Zeilen überspringen" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "Aktiviere diese Option, um ungültige Zeilen zu überspringen" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "Ersatzteile kopieren" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "Ersatzteile beim Duplizieren von Stücklisten-Positionen kopieren" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "Bestehende Stückliste löschen" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "Bestehende Stücklisten-Positionen vor dem Importieren entfernen" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "Keine Teilspalte angegeben" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "Mehrere übereinstimmende Teile gefunden" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "Keine passenden Teile gefunden" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "Teil ist nicht als Komponente angelegt" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "Menge nicht angegeben" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "Ungültige Menge" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "Mindestens eine Stückliste-Position ist erforderlich" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "Gesamtstückzahl" @@ -7394,7 +7768,7 @@ msgstr "Benachrichtigungen für dieses Teil abonnieren" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "Label drucken" @@ -7416,7 +7790,7 @@ msgstr "Bestand zählen" msgid "Transfer part stock" msgstr "Teilbestand verschieben" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "Teile Aktionen" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "Minimaler Bestand" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "Varianten" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "Bestand" @@ -7702,8 +8076,8 @@ msgstr "Preise aktualisieren" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "Kein Bestand" @@ -7847,7 +8221,7 @@ msgstr "Barcode stimmt nicht mit einem vorhandenen Lagerartikel überein" msgid "Stock item does not match line item" msgstr "Lagerartikel stimmt nicht mit dem Element überein" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "Unzureichender Bestand verfügbar" @@ -7942,7 +8316,7 @@ msgstr "Sendung wurde bereits geliefert" msgid "Quantity to allocate" msgstr "Zugewiesene Menge" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "Labeldruck fehlgeschlagen" @@ -7956,7 +8330,7 @@ msgstr "Fehler beim Rendern des Etikett als HTML" #: plugin/base/label/mixins.py:151 msgid "No items provided to print" -msgstr "" +msgstr "Keine Elemente zum Drucken übergeben" #: plugin/builtin/barcodes/inventree_barcode.py:25 msgid "InvenTree Barcodes" @@ -8398,11 +8772,11 @@ msgstr "Teile" #: report/api.py:180 msgid "Plugin not found" -msgstr "" +msgstr "Plugin nicht gefunden" #: report/api.py:182 msgid "Plugin is not active" -msgstr "" +msgstr "Plugin ist nicht aktiv" #: report/api.py:184 msgid "Plugin does not support label printing" @@ -8531,7 +8905,7 @@ msgstr "" #: report/models.py:464 report/models.py:487 msgid "Output File" -msgstr "" +msgstr "Ausgabedatei" #: report/models.py:465 report/models.py:488 msgid "Generated output file" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "Summe" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "Testergebnisse" msgid "Test" msgstr "Test" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "Ergebnis" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "Kein Ergebnis" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "Verbaute Objekte" @@ -8720,10 +9094,6 @@ msgstr "company_image tag erfordert eine Firmeninstanz" msgid "Location ID" msgstr "Standort-ID" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "Ortsname" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "Lieferant" msgid "Customer ID" msgstr "Kunden ID" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "verbaut in" @@ -8782,7 +9152,7 @@ msgstr "Überprüfung erforderlich" msgid "Delete on Deplete" msgstr "Löschen wenn leer" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "Unterorte in gefilterte Ergebnisse einbeziehen" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "Übergeordneter Ort" @@ -8808,578 +9178,621 @@ msgstr "Übergeordneter Ort" msgid "Filter by parent location" msgstr "Filtern nach übergeordnetem Ort" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "Externer Standort" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "Teile-Baum" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "Gültigkeitsdauer vor" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "Gültigkeitsdauer nach" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "überfällig" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "Menge ist erforderlich" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "Gültiges Teil muss angegeben werden" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "Der angegebene Lieferantenartikel existiert nicht" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "Das Zulieferteil hat eine Packungsgröße definiert, aber das Kennzeichen use_pack_size ist nicht gesetzt" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "Seriennummern können für nicht verfolgbare Teile nicht angegeben werden" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "Lagerstandort Typ" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "Lagerstandorte Typen" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "Standardsymbol für alle Orte, die kein Icon gesetzt haben (optional)" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "Bestand-Lagerort" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "Bestand-Lagerorte" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "Besitzer" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "Besitzer auswählen" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "Lagerartikel können nicht direkt an einen strukturellen Lagerort verlegt werden, können aber an einen untergeordneten Lagerort verlegt werden." -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "Extern" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "Dies ist ein externer Lagerort" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "Standorttyp" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "Standortart dieses Standortes" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "Sie können diesen Lagerort nicht als strukturell markieren, da sich bereits Lagerartikel darin befinden!" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "Lagerartikel können nicht in strukturelle Lagerorte abgelegt werden!" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "Für virtuelle Teile können keine Lagerartikel erstellt werden" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "Artikeltyp ('{self.supplier_part.part}') muss {self.part} sein" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "Anzahl muss für Objekte mit Seriennummer 1 sein" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "Seriennummer kann nicht gesetzt werden wenn die Anzahl größer als 1 ist" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "Teil kann nicht zu sich selbst gehören" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "Teil muss eine Referenz haben wenn is_building wahr ist" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "Referenz verweist nicht auf das gleiche Teil" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "Eltern-Lagerartikel" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "Basis-Teil" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "Passendes Zuliefererteil für diesen Lagerartikel auswählen" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "Wo wird dieses Teil normalerweise gelagert?" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "Verpackung, in der dieser Lagerartikel gelagert ist" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "Ist dieses Teil in einem anderen verbaut?" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "Seriennummer für dieses Teil" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "Losnummer für diesen Lagerartikel" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "Bestand" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "Quellbau" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "Bauauftrag für diesen Lagerartikel" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "Verbraucht von" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "Bauauftrag der diesen Lagerartikel verbrauchte" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "Quelle Bestellung" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "Bestellung für diesen Lagerartikel" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "Ziel-Auftrag" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "Ablaufdatum für Lagerartikel. Bestand wird danach als abgelaufen gekennzeichnet" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "Löschen wenn leer" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "Diesen Lagerartikel löschen wenn der Bestand aufgebraucht ist" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "Preis für eine Einheit bei Einkauf" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "In Teil umgewandelt" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "Teil ist nicht verfolgbar" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "Anzahl muss eine Ganzzahl sein" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "Menge darf die verfügbare Lagermenge ({self.quantity}) nicht überschreiten" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "Seriennummern muss eine Liste von Ganzzahlen sein" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "Anzahl stimmt nicht mit den Seriennummern überein" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "Seriennummern existieren bereits" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "Testvorlage existiert nicht" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "Artikel wurde einem Kundenauftrag zugewiesen" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "Lagerartikel ist in anderem Element verbaut" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "Lagerartikel enthält andere Artikel" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "Artikel wurde einem Kunden zugewiesen" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "Lagerartikel wird aktuell produziert" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "Nachverfolgbare Lagerartikel können nicht zusammengeführt werden" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "Artikel duplizeren" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "Lagerartikel müssen auf dasselbe Teil verweisen" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "Lagerartikel müssen auf dasselbe Lieferantenteil verweisen" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "Status-Codes müssen zusammenpassen" -#: stock/models.py:1901 +#: stock/models.py:1936 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:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "Eintrags-Notizen" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "Wert muss für diesen Test angegeben werden" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "Anhang muss für diesen Test hochgeladen werden" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "Testergebnis" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "Test Ausgabe Wert" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "Test Ergebnis Anhang" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "Test Notizen" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "Teststation" -#: stock/models.py:2440 +#: stock/models.py:2485 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:2446 +#: stock/models.py:2491 msgid "Started" msgstr "Gestartet" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "Der Zeitstempel des Teststarts" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "Fertiggestellt" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "Der Zeitstempel der Test-Beendigung" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "Testvorlage für dieses Ergebnis" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "Vorlagen-ID oder Testname muss angegeben werden" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "Die Test-Endzeit kann nicht früher als die Startzeit des Tests sein" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "Seriennummer ist zu lang" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "Elternposition" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "Packungsgröße beim Hinzufügen verwenden: Die definierte Menge ist die Anzahl der Pakete" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "Zugewiesene Menge" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "abgelaufen" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "Untergeordnete Objekte" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "Einkaufspreis dieses Lagerartikels, pro Einheit oder Verpackungseinheit" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "Anzahl der zu serialisierenden Lagerartikel eingeben" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Anzahl darf nicht die verfügbare Menge überschreiten ({q})" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "Seriennummern für neue Teile eingeben" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "Ziel-Bestand" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "Optionales Notizfeld" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "Seriennummern können diesem Teil nicht zugewiesen werden" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "Lagerartikel für Installation auswählen" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "Zu installierende Menge" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "Anzahl der zu verwendenden Artikel eingeben" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr " Transaktionsnotizen hinzufügen (optional)" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "Die zu verwendende Menge muss mindestens 1 sein" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "Lagerartikel ist nicht verfügbar" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "Ausgewähltes Teil ist nicht in der Stückliste" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "Die zu verwendende Menge darf die verfügbare Menge nicht überschreiten" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "Ziel Lagerort für unverbautes Objekt" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "Wählen Sie einen Teil aus, zu dem dieser Lagerartikel geändert werden soll" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "Das ausgewählte Teil ist keine gültige Option für die Umwandlung" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "Lagerartikel konnte nicht mit Zulieferteil zugewiesen werden" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "Ziel Lagerort für zurückgegebene Artikel" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "Lagerartikel auswählen, um den Status zu ändern" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "Keine Lagerartikel ausgewählt" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Unter-Lagerorte" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "Übergeordneter Lagerort" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "Teil muss verkaufbar sein" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "Artikel ist einem Kundenauftrag zugeordnet" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "Artikel ist einem Fertigungsauftrag zugeordnet" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "Kunde zum Zuweisen von Lagerartikel" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "Ausgewählte Firma ist kein Kunde" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "Notizen zur Lagerzuordnung" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "Eine Liste der Lagerbestände muss angegeben werden" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "Notizen zur Lagerartikelzusammenführung" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "Unterschiedliche Lieferanten erlauben" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "Zusammenführen von Lagerartikeln mit unterschiedlichen Lieferanten erlauben" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "Unterschiedliche Status erlauben" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "Zusammenführen von Lagerartikeln mit unterschiedlichen Status-Codes erlauben" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "Mindestens zwei Lagerartikel müssen angegeben werden" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "Keine Änderung" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "Primärschlüssel Lagerelement" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "Lagerartikel Status-Code" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "Bestandsbewegungsnotizen" @@ -9648,10 +10061,6 @@ msgstr "Lagerartikel löschen" msgid "Build" msgstr "Bauauftrag" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "Elternposition" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "Kein Hersteller ausgewählt" @@ -9727,11 +10136,6 @@ msgstr "Dieser Lagerartikel hat nicht alle Tests bestanden" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "Dieser Lagerartikel lief am %(item.expiry_date)s ab" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "abgelaufen" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "Lagerartikel-Verfolgung" msgid "Allocations" msgstr "Zuweisungen" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "Untergeordnete Objekte" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "Zugriff verweigert" @@ -10357,8 +10757,8 @@ msgstr "Bewerten" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Löschen" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "Keine Kategorieparameter Vorlage gefunden" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "Vorlage bearbeiten" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "Vorlage löschen" @@ -10516,18 +10916,6 @@ msgstr "Kontoeinstellungen" msgid "Change Password" msgstr "Passwort ändern" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "Benutzername" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "Vorname" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "Nachname" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "Die folgenden E-Mail-Adressen sind mit deinem Konto verknüpft:" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "Bei den folgenden Teilen gibt es wenige Lagerartikel" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "Benötigte Menge" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "Klicken Sie auf den folgenden Link, um diesen Teil anzuzeigen" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "Mindestmenge" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "Keine Antwort" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "Keine Antwort vom InvenTree Server" @@ -11082,27 +11470,27 @@ msgstr "Fehler 400: Ungültige Anforderung" msgid "API request returned error code 400" msgstr "API Anfrage hat Fehler 400 zurückgegeben" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "Fehler 401: Nicht authentifiziert" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "Anmeldeinformationen nicht angegeben" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "Fehler 403: Zugriff verweigert" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "Sie haben nicht die erforderliche Berechtigung auf diesen Inhalt zuzugreifen" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "Fehler 404: Ressource nicht gefunden" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "Die angefragte Ressource konnte auf dem Server nicht gefunden werden" @@ -11114,11 +11502,11 @@ msgstr "Fehler 405: Methode nicht erlaubt" msgid "HTTP method not allowed at URL" msgstr "HTTP Methode für diese URL nicht erlaubt" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "Fehler 408: Zeitüberschreitung" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "Zeitüberschreitung beim Abfragen der Daten vom Server" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "Unbekannte Serverantwort" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "Ungültige Serverantwort" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "Zeilendaten" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "Stückliste für Bauteile laden" msgid "Substitutes Available" msgstr "Ersatzteile verfügbar" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "Alternatives Lager erlaubt" @@ -11437,30 +11825,30 @@ msgstr "Stücklistenpreise sind vollständig" msgid "No pricing available" msgstr "Keine Preisinformation verfügbar" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "Externes Lager" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "Kein Lagerbestand verfügbar" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "Alternatives Lager und Ersatzteillager einschließen" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "Alternatives Lager einschließen" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "Ersatzteillager einschließen" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "Verbrauchsartikel" @@ -11492,7 +11880,7 @@ msgstr "Stückliste anzeigen" msgid "No BOM items found" msgstr "Keine Stücklisten-Position(en) gefunden" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "Benötigtes Teil" @@ -11661,10 +12049,6 @@ msgstr "Endprodukte entfernen" msgid "No build order allocations found" msgstr "Keine Allokationen für Bauauftrag gefunden" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "Zugewiesene Menge" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "Standort nicht angegeben" @@ -11776,9 +12160,9 @@ msgstr "Lagerartikel zuordnen" msgid "No builds matching query" msgstr "Keine Bauaufträge zur Suchanfrage" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "Auswählen" @@ -11809,59 +12193,59 @@ msgstr "Zuordnung bearbeiten" msgid "Remove Allocation" msgstr "Zuordnung entfernen" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "Bauauftragsposition" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "Bauauftragspositionen" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "Keine Bauauftragspositionen gefunden" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "Nachverfolgbares Teil" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "Menge" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "Ausreichender Bestand vorhanden" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "Verbrauchsartikel" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "Verfolgtes Objekt" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "Zuweisung von nachverfolgbaren Artikeln zu einzelnen Bauprodukten" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "Bestand bauen" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "Bestand bestellen" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "Bestand zuweisen" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "Bestands-Zuordnung löschen" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "Parameter löschen" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "Teile bestellen" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "Keine Herstellerteile gefunden" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "Vorlagenteil" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "Baugruppe" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "Keine Parameter gefunden" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "Parameter bearbeiten" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "Parameter löschen" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "Parameter bearbeiten" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "Parameter löschen" @@ -12226,74 +12610,74 @@ msgstr "Falsch" msgid "No parts required for builds" msgstr "Keine Ersatzteile für Montage erforderlich" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "Elemente auswählen" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "Keine Elemente zum Drucken ausgewählt" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "Etiketten an den Drucker senden" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "Abbrechen" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "Abschicken" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "Formulartitel" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "Warte auf Server..." -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "Fehler-Informationen anzeigen" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "Akzeptieren" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "Lade Daten" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "Ungültige Antwort vom Server" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "Formulardaten fehlen bei Serverantwort" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "Formulardaten fehlerhaft" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "JSON Antwort enthält keine Formulardaten" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "Fehler 400: Ungültige Anfrage" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "Fehler 400 von Server erhalten" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "Fehler bei Formulardaten-Anfrage" @@ -12303,7 +12687,7 @@ msgstr "Keine Nachrichten gefunden" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "ID" @@ -12384,343 +12768,343 @@ msgstr "Duplizierungsoptionen für Teile" msgid "Add Part Category" msgstr "Teil-Kategorie hinzufügen" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "Icon (optional) - alle verfügbaren Icons einsehbar auf" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "Teil-Kategorie hinzufügen" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "Neue Kategorie nach dieser Kategorie erstellen" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "Artikelkategorie erstellt" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "Teilekategorie bearbeiten" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "Möchten Sie diese Artikel-Kategorie wirklich löschen?" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "In übergeordnete Kategorie verschieben" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "Teil-Kategorie löschen" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "Aktion für Teile in dieser Kategorie" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "Aktion für Unterkategorien" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "Teil erstellen" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "Weiteres Teil nach diesem erstellen" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "Teil erfolgreich angelegt" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "Teil bearbeiten" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "Teil bearbeitet" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "Teil-Variante anlegen" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "Aktives Teil" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "Teil kann nicht gelöscht werden, da es derzeit aktiv ist" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "Das Löschen dieses Teils kann nicht rückgängig gemacht werden" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "Alle Lagerartikel für dieses Teil werden gelöscht" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "Dieses Teil wird von allen Stücklisten entfernt" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "Alle Hersteller- und Lieferanteninformationen für dieses Teil werden gelöscht" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "Teil löschen" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "Du hast Benachrichtigungen zu diesem Artikel abonniert" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "Du hast Benachrichtigungen zu diesem Artikel abonniert" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "Benachrichtigungen zu diesem Artikel abonnieren" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "Du erhältst keine Benachrichtigungen zu diesem Artikel mehr" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "Die Stückliste zu validieren markiert jede Position als gültig" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "Stückliste prüfen" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "Überprüfte Stückliste" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "Stückliste kopieren" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "Bestand niedrig" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "Kein Lagerbestand verfügbar" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "Bedarf" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "Einheit" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "Virtuelles Teil" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "Abonniertes Teil" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "Verkäufliches Teil" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "Erstellung eines neuen Inventurberichts planen." -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "Nach Fertigstellung steht der Inventurbericht zum Download zur Verfügung." -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "Inventurbericht erstellen" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "Inventurbericht geplant" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "Keine Inventurinformationen verfügbar" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "Inventureintrag bearbeiten" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "Inventureintrag löschen" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "Keine Varianten gefunden" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "Keine Teileparametervorlagen gefunden" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "Teileparametervorlage bearbeiten" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "Alle Parameter mit Verweis auf diese Vorlage werden ebenfalls gelöscht" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "Teileparametervorlage löschen" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "Keine Bestellungen gefunden" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "Diese Position ist überfällig" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "Position empfangen" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "Teilebeziehung löschen" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "Teilebeziehung löschen" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "Keine Teile gefunden" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "Wähle die Kategorie für die ausgewählten Teile" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "Teilekategorie auswählen" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "Kategorie wählen" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "Teil" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "Teile" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "Keine Kategorien" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "Als Liste anzeigen" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "Als Raster anzeigen" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "Keine Unterkategorien gefunden" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "Als Baum anzeigen" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "Unterkategorien laden" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "Abonnierte Kategorie" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "Keine passenden Testvorlagen gefunden" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "Ergebnisse" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "Testergebnis bearbeiten" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "Testergebnis löschen" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "Dieser Test ist für ein übergeordnetes Teil definiert" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "Vorlage für Testergebnis bearbeiten" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "Vorlage für Testergebnis löschen" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "Kein Datum angegeben" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "Das angegebene Datum liegt in der Vergangenheit" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "Spekulativ" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "Keine Zeitplanung für dieses Teil vorhanden" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "Fehler beim Abrufen der Zeitplanungsinformationen für dieses Teil" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "Geplante Lagermengen" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "Maximale Menge" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "Minimaler Lagerbestand" @@ -13496,7 +13880,7 @@ msgstr "Entnehmen" msgid "Add Stock" msgstr "Bestand hinzufügen" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "Hinzufügen" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "Unterkategorien einschließen" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "Abonniert" @@ -14005,40 +14389,44 @@ msgstr "Teile in Unterkategorien einschließen" msgid "Show active parts" msgstr "Aktive Teile anzeigen" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "Verfügbarer Lagerbestand" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "Hat Einheiten" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "Teil hat definierte Einheiten" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "Hat IPN" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "Teil hat Interne Teilenummer" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "Auf Lager" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "Kaufbar" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "Hat Inventureinträge" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "Hat Auswahlen" @@ -14110,10 +14498,6 @@ msgstr "Seitennavigation verstecken/anzeigen" msgid "Toggle" msgstr "Umschalten" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "Spalten" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "Alle" @@ -14387,35 +14771,35 @@ msgstr "Das letzte Mal, wo das Token verwendet wurde" msgid "Revoked" msgstr "Widerrufen" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "Berechtigung geändert" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Gruppe" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Ansicht" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Berechtigung Einträge anzuzeigen" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Berechtigung Einträge zu erstellen" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Ändern" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Berechtigungen Einträge zu ändern" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Berechtigung Einträge zu löschen" diff --git a/src/backend/InvenTree/locale/el/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/el/LC_MESSAGES/django.po index 12d1296fe8..6b2243c886 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "Το API endpoint δε βρέθηκε" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Δεν έχετε δικαιώματα να το δείτε αυτό" @@ -56,21 +56,21 @@ msgstr "Μπορείτε να βρείτε λεπτομέρειες σφάλμα msgid "Enter date" msgstr "Εισάγετε ημερομηνία" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "Η παρεχόμενη κύρια διεύθυνση ηλεκτρονι msgid "The provided email domain is not approved." msgstr "Ο παρεχόμενος τομέας ηλεκτρονικού ταχυδρομείου δεν έχει εγκριθεί." -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Η εγγραφή είναι απενεργοποιημένη." @@ -348,8 +348,8 @@ msgstr "Κινέζικα (Παραδοσιακά)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Σύνδεση στην εφαρμογή" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Μεταδεδομένα Πρόσθετου" msgid "JSON metadata field, for use by external plugins" msgstr "JSON πεδίο μεταδεδομένων, για χρήση από εξωτερικά πρόσθετα" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Λανθασμένο μοτίβο" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Δώσατε λάθος μορφή κλειδιού" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Λείπει το απαραίτητο κλειδί" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Το πεδίο δεν μπορεί να είναι άδειο" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Η αναφορά πρέπει να ταιριάζει με το απαιτούμενο μοτίβο" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Ο αριθμός αναφοράς είναι πολύ μεγάλος" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Διπλότυπα ονόματα δεν μπορούν να υπάρχουν στον ίδιο γονέα" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Μη έγκυρη επιλογή" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Μη έγκυρη επιλογή" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Όνομα" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Όνομα" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Όνομα" msgid "Description" msgstr "Περιγραφή" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Περιγραφή (προαιρετική)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Μονοπάτι" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Σημειώσεις Markdown (προαιρετικό)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Στοιχεία Barcode" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Δεδομένα barcode τρίτων" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Μοναδικό hash δεδομένων barcode" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Βρέθηκε υπάρχων barcode" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Σφάλμα διακομιστή" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Ένα σφάλμα έχει καταγραφεί από το διακομιστή." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Πρέπει να είναι αριθμός" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Νόμισμα" msgid "Select currency from available options" msgstr "Επιλέξτε νόμισμα από τις διαθέσιμες επιλογές" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Δεν έχετε άδεια να αλλάξετε αυτόν τον ρόλο χρήστη." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Μόνο υπερχρήστες (superusers) μπορούν να δημιουργήσουν νέους χρήστες" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Ο λογαριασμός σας δημιουργήθηκε." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Παρακαλούμε χρησιμοποιήστε τη λειτουργία επαναφοράς κωδικού πρόσβασης για να συνδεθείτε" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Καλώς ήρθατε στο InvenTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Μη έγκυρη τιμή" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Αρχείο Δεδομένων" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Επιλέξτε ένα αρχείο για ανέβασμα" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Μη υποστηριζόμενος τύπος αρχείου" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Το αρχείο είναι πολύ μεγάλο" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Δεν βρέθηκαν στήλες στο αρχείο" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Δεν βρέθηκαν γραμμές δεδομένων στο αρχείο" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Δεν παρασχέθηκαν σειρές δεδομένων" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Δεν δόθηκαν στήλες δεδομένων" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Λείπει απαιτούμενη στήλη: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Διπλή στήλη: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Απομακρυσμένες Εικόνες" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "Διεύθυνση URL του αρχείου απομακρυσμένης εικόνας" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Η λήψη εικόνων από απομακρυσμένο URL δεν είναι ενεργοποιημένη" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Ο έλεγχος εργασίας στο παρασκήνιο απέτυχε" @@ -654,47 +711,48 @@ msgstr "Πληροφορίες συστήματος" msgid "About InvenTree" msgstr "Σχετικά με το InvenTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "Η έκδοση πρέπει να ακυρωθεί πριν διαγραφεί" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Αναλώσιμο" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Προαιρετικό" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Υπό παρακολούθηση" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Κατανεμημένο" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Διαθέσιμο" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Σειρά Κατασκευής" msgid "Build Orders" msgstr "Δημιουργία Παραγγελιών" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Μη έγκυρη επιλογή για γονική κατασκευή" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "Εξάρτημα από εντολή κατασκευής δεν μπορεί να αλλάξει" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Αναφορά Παραγγελίας Κατασκευής" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Αναφορά Παραγγελίας Κατασκευής" msgid "Reference" msgstr "Αναφορά" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Σύντομη περιγραφή της κατασκευής (προαιρετικό)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Γονική Κατασκευή" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "BuildOrder στην οποία έχει δοθεί αυτή η κατασκευή" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "BuildOrder στην οποία έχει δοθεί αυτή η κατα #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "BuildOrder στην οποία έχει δοθεί αυτή η κατα #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "BuildOrder στην οποία έχει δοθεί αυτή η κατα msgid "Part" msgstr "Εξάρτημα" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Επιλέξτε τμήμα για κατασκευή" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Κωδικός Παραγγελίας Πωλήσεων" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "SalesOrder στην οποία έχει διατεθεί αυτό το build" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Τοποθεσία Προέλευσης" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Επιλέξτε τοποθεσία από την οποία θα γίνει απόθεμα, για αυτή την κατασκευή (αφήστε κενό για να πάρετε από οποιαδήποτε θέση αποθήκευσης)" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Τοποθεσία Προορισμού" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "Επιλέξτε την τοποθεσία όπου θα αποθηκευτούν τα ολοκληρωμένα στοιχεία" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Ποσότητα Κατασκευής" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Αριθμός αντικειμένων για κατασκευή" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Ολοκληρωμένα αντικείμενα" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Αριθμός αντικειμένων αποθέματος που έχουν ολοκληρωθεί" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Κατάσταση Κατασκευής" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Κωδικός κατάστασης κατασκευής" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Κωδικός Παρτίδας" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Κωδικός παρτίδας για αυτήν την κατασκευή" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Ημερομηνία Δημιουργίας" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Ημερομηνία ολοκλήρωσης στόχου" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Ημερομηνία ολοκλήρωσης της κατασκευής. Η κατασκευή θα καθυστερήσει μετά από αυτή την ημερομηνία." -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Ημερομηνία ολοκλήρωσης" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "ολοκληρώθηκε από" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Εκδόθηκε από" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Χρήστης που εξέδωσε αυτήν την παραγγελία κατασκευής" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Χρήστης που εξέδωσε αυτήν την παραγγελ msgid "Responsible" msgstr "Υπεύθυνος" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "Χρήστης ή ομάδα υπεύθυνη για αυτή την εντολή κατασκευής" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Εξωτερικοί σύνδεσμοι" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Σύνδεσμος προς εξωτερική διεύθυνση URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Προτεραιότητα Κατασκευής" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Προτεραιότητα αυτής της εντολής κατασκευής" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Προτεραιότητα αυτής της εντολής κατασκ msgid "Project Code" msgstr "Κωδικός Έργου" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Κωδικός έργου για αυτήν την εντολή κατασκευής" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Η παραγγελία κατασκευής {build} έχει ολοκληρωθεί" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθεί" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Δεν καθορίστηκε έξοδος κατασκευής" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθεί" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "Η έξοδος κατασκευής δεν ταιριάζει με την παραγγελία κατασκευής" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "Η ποσότητα πρέπει να είναι μεγαλύτερη από 0" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "Η ποσότητα δεν μπορεί να είναι μεγαλύτερη από την παραγόμενη ποσότητα" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Το προϊόν κατασκευής {serial} δεν έχει περάσει όλες τις απαιτούμενες δοκιμές" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Αντικείμενο κατασκευής" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Αντικείμενο κατασκευής" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Αντικείμενο κατασκευής" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Αντικείμενο κατασκευής" msgid "Quantity" msgstr "Ποσότητα" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Απαιτούμενη ποσότητα για την εντολή κατασκευής" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Το στοιχείο κατασκευής πρέπει να ορίζει μια έξοδο κατασκευής, καθώς το κύριο τμήμα επισημαίνεται ως ανιχνεύσιμο" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Η καταχωρημένη ποσότητα ({q}) δεν πρέπει να υπερβαίνει τη διαθέσιμη ποσότητα αποθέματος ({a})" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Στοιχείο αποθέματος είναι υπερ-κατανεμημένο" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Η ποσότητα πρέπει να είναι μεγαλύτερη από 0" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Η ποσότητα πρέπει να είναι 1 για σειριακό απόθεμα" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "Το επιλεγμένο στοιχείο αποθέματος δεν ταιριάζει με τη γραμμή ΤΥ" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "Το επιλεγμένο στοιχείο αποθέματος δεν msgid "Stock Item" msgstr "Στοιχείο Αποθέματος" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Στοιχείο πηγαίου αποθέματος" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Ποσότητα αποθέματος για διάθεση για κατασκευή" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Εγκατάσταση σε" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Αποθήκη προορισμού" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Κατασκευή Εξόδου" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "Η έξοδος κατασκευής δεν ταιριάζει με την παραγγελία κατασκευής" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "Το εξερχόμενο μέρος δεν ταιριάζει με το μέρος BuildOrder" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθεί" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "Αυτή η έξοδος κατασκευής δεν έχει εκχωρηθεί πλήρως" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Εισάγετε ποσότητα για την έξοδο κατασκευής" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "Ακέραιη ποσότητα που απαιτείται για ανιχνεύσιμα μέρη" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Ακέραιη ποσότητα που απαιτείται, καθώς ο λογαριασμός των υλικών περιέχει ανιχνεύσιμα μέρη" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Σειριακοί αριθμοί" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Εισάγετε ποσότητα για την έξοδο κατασκευής" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Εισάγετε ποσότητα για την έξοδο κατασκ msgid "Location" msgstr "Τοποθεσία" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Αυτόματη Κατανομή Σειριακών Αριθμών" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "Αυτόματη κατανομή των απαιτούμενων στοιχείων με τους αντίστοιχους σειριακούς αριθμούς" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "Οι παρακάτω σειριακοί αριθμοί υπάρχουν ήδη ή δεν είναι έγκυροι" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "Πρέπει να παρέχεται μια λίστα με τα αποτελέσματα κατασκευής" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "Θέση αποθέματος για απορριφθείσες παραγωγές" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "Απόρριψη Κατανομών" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "Απορρίψτε τυχόν κατανομές αποθέματος για παραγωγές που έχουν απορριφθεί" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "Αιτία απόρριψης προϊόντων κατασκευής" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "Τοποθεσία για ολοκληρωμένα προϊόντα κατασκευής" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "Τοποθεσία για ολοκληρωμένα προϊόντα κα msgid "Status" msgstr "Κατάσταση" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Αποδοχή Ελλιπούς Δέσμευσης" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "Ολοκλήρωσε τα προϊόντα εάν το απόθεμα δεν έχει δεσμευτεί πλήρως" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "Αφαίρεση Ατελείωτων Προϊόντων" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "Διαγράψτε τυχόν προϊόντα κατασκευής που δεν έχουν ολοκληρωθεί" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Δεν επιτρέπεται" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Αποδοχή ως κατανάλωση για αυτή την παραγγελία κατασκευής" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "Αποδέσμευση πριν από την ολοκλήρωση αυτής της παραγγελίας κατασκευής" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Υπερ-δεσμευμένο Απόθεμα" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Πώς θέλετε να χειριστείτε το επιπλέον απόθεμα που έχει δεσμευτεί στην παραγγελία κατασκευής" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "Μερικά στοιχεία αποθέματος έχουν υπερ-δεσμευτεί" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Αποδοχή Μη Δεσμευμένων" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Αποδεχτείτε ότι αντικείμενα αποθέματος δεν έχουν δεσμευτεί πλήρως σε αυτή την παραγγελία κατασκευής" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "Το απαιτούμενο απόθεμα δεν έχει δεσμευτεί πλήρως" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Αποδοχή Μη Ολοκληρωμένων" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "Αποδεχτείτε ότι ο απαιτούμενος αριθμός προϊόντων κατασκευής δεν έχει ολοκληρωθεί" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "Ο απαιτούμενος αριθμός προϊόντων δεν έχει ολοκληρωθεί" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "Η παραγγελία κατασκευής έχει ελλιπή προϊόντα" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Γραμμή Κατασκευής" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Προϊόν Κατασκευής" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "Το προϊόν κατασκευής πρέπει να δείχνει στην ίδια κατασκευή" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "Αντικείμενο Γραμμής Κατασκευής" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part πρέπει να δείχνει στο ίδιο εξάρτημα με τη εντολή κατασκευής" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Παραγωγή" msgid "Cancelled" msgstr "Ακυρώθηκε" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "Το Απόθεμα δεν έχει κατανεμηθεί πλήρως #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "Ολοκληρωμένα Προϊόντα" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Προέλευση Αποθέματος" msgid "Stock can be taken from any available location." msgstr "Το απόθεμα μπορεί να ληφθεί από οποιαδήποτε διαθέσιμη τοποθεσία." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Προορισμός" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Χρήστης" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "Σύνδεσμος" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Συνημμένο" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Το αρχείο λείπει" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Λείπει ο εξωτερικός σύνδεσμος" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Επιλέξτε αρχείο για επισύναψη" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Σχόλιο" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Όνομα αρχείου" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "Τοποθετήθηκε" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Αποστάλθηκε" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "Κατασκευή" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/en/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/en/LC_MESSAGES/django.po index f0ebeec87a..1c2cf37e88 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: 2024-06-26 03:18+0000\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,7 +22,7 @@ msgstr "" msgid "API endpoint not found" msgstr "" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -57,21 +57,21 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -129,7 +129,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -349,8 +349,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -372,42 +372,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -418,25 +418,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -445,10 +445,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -461,53 +461,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -517,85 +517,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -655,47 +712,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -704,7 +762,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -721,31 +779,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -753,27 +823,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -784,8 +855,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -798,8 +869,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -817,107 +888,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -928,37 +999,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -968,65 +1040,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1036,7 +1109,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1047,8 +1120,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1068,38 +1141,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1115,70 +1188,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1194,54 +1273,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1253,193 +1332,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1455,7 +1582,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1588,11 +1716,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1625,8 +1754,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1676,7 +1805,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1828,31 +1957,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1906,1591 +2035,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3499,28 +3641,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3530,86 +3672,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3631,7 +3781,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3647,75 +3797,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3782,29 +3932,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3844,8 +3994,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3864,7 +4015,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3872,7 +4023,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3880,7 +4031,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3891,270 +4042,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4163,35 +4325,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4203,7 +4373,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4262,16 +4432,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4279,13 +4449,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4465,7 +4628,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4475,7 +4639,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4496,7 +4660,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4520,10 +4684,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4565,9 +4725,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4616,15 +4776,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4659,48 +4819,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4740,10 +5056,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4769,44 +5081,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4814,8 +5126,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4827,11 +5139,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4847,7 +5159,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4896,15 +5208,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4920,15 +5232,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4990,20 +5302,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5012,196 +5328,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5210,163 +5554,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5696,7 +6048,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5792,34 +6144,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5832,7 +6179,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5844,11 +6192,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5856,18 +6204,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5884,14 +6233,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5908,125 +6257,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6035,7 +6376,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6050,7 +6391,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6069,12 +6410,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6082,1002 +6423,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7395,7 +7769,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7417,7 +7791,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7489,7 +7863,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7582,8 +7956,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7703,8 +8077,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7848,7 +8222,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7943,7 +8317,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8639,8 +9013,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8670,7 +9044,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8691,7 +9065,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8721,10 +9095,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8758,7 +9128,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8783,7 +9153,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8801,7 +9171,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8809,578 +9179,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9649,10 +10062,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9728,11 +10137,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9880,10 +10284,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10358,8 +10758,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10399,12 +10799,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10517,18 +10917,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11049,7 +11437,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11063,15 +11451,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11083,27 +11471,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11115,11 +11503,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11204,7 +11592,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11299,8 +11687,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11418,7 +11806,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11438,30 +11826,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11493,7 +11881,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11662,10 +12050,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11777,9 +12161,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11810,59 +12194,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12009,7 +12393,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12026,34 +12410,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12227,74 +12611,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12304,7 +12688,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12385,343 +12769,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13497,7 +13881,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13851,7 +14235,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14006,40 +14390,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14111,10 +14499,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14388,34 +14772,34 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/es/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/es/LC_MESSAGES/django.po index ba6bc4aa5d..22db8eee91 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:05\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Spanish, Mexico\n" "Language: es_MX\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "Endpoint de API no encontrado" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "El usuario no tiene permiso para ver este modelo" @@ -56,21 +56,21 @@ msgstr "Detalles del error pueden encontrarse en el panel de administración" msgid "Enter date" msgstr "Ingrese la fecha" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "El registro ha sido desactivado." @@ -348,8 +348,8 @@ msgstr "Chino (Tradicional)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Iniciar sesión en la aplicación" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Los nombres duplicados no pueden existir bajo el mismo padre" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Selección no válida" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Selección no válida" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Nombre" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Nombre" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Nombre" msgid "Description" msgstr "Descripción" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Descripción (opcional)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Ruta" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Notas (opcional)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Datos de código de barras" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Datos de código de barras de terceros" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Hash del Código de barras" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Hash único de datos de código de barras" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Código de barras existente encontrado" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Error de servidor" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" 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 f0ebeec87a..1c2cf37e88 100644 --- a/src/backend/InvenTree/locale/es_MX/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/es_MX/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 03:18+0000\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,7 +22,7 @@ msgstr "" msgid "API endpoint not found" msgstr "" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -57,21 +57,21 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -129,7 +129,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -349,8 +349,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -372,42 +372,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -418,25 +418,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -445,10 +445,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -461,53 +461,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -517,85 +517,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -655,47 +712,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -704,7 +762,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -721,31 +779,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -753,27 +823,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -784,8 +855,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -798,8 +869,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -817,107 +888,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -928,37 +999,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -968,65 +1040,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1036,7 +1109,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1047,8 +1120,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1068,38 +1141,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1115,70 +1188,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1194,54 +1273,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1253,193 +1332,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1455,7 +1582,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1588,11 +1716,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1625,8 +1754,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1676,7 +1805,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1828,31 +1957,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1906,1591 +2035,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3499,28 +3641,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3530,86 +3672,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3631,7 +3781,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3647,75 +3797,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3782,29 +3932,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3844,8 +3994,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3864,7 +4015,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3872,7 +4023,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3880,7 +4031,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3891,270 +4042,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4163,35 +4325,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4203,7 +4373,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4262,16 +4432,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4279,13 +4449,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4465,7 +4628,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4475,7 +4639,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4496,7 +4660,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4520,10 +4684,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4565,9 +4725,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4616,15 +4776,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4659,48 +4819,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4740,10 +5056,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4769,44 +5081,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4814,8 +5126,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4827,11 +5139,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4847,7 +5159,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4896,15 +5208,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4920,15 +5232,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4990,20 +5302,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5012,196 +5328,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5210,163 +5554,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5696,7 +6048,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5792,34 +6144,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5832,7 +6179,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5844,11 +6192,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5856,18 +6204,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5884,14 +6233,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5908,125 +6257,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6035,7 +6376,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6050,7 +6391,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6069,12 +6410,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6082,1002 +6423,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7395,7 +7769,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7417,7 +7791,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7489,7 +7863,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7582,8 +7956,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7703,8 +8077,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7848,7 +8222,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7943,7 +8317,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8639,8 +9013,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8670,7 +9044,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8691,7 +9065,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8721,10 +9095,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8758,7 +9128,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8783,7 +9153,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8801,7 +9171,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8809,578 +9179,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9649,10 +10062,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9728,11 +10137,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9880,10 +10284,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10358,8 +10758,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10399,12 +10799,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10517,18 +10917,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11049,7 +11437,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11063,15 +11451,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11083,27 +11471,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11115,11 +11503,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11204,7 +11592,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11299,8 +11687,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11418,7 +11806,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11438,30 +11826,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11493,7 +11881,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11662,10 +12050,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11777,9 +12161,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11810,59 +12194,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12009,7 +12393,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12026,34 +12410,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12227,74 +12611,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12304,7 +12688,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12385,343 +12769,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13497,7 +13881,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13851,7 +14235,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14006,40 +14390,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14111,10 +14499,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14388,34 +14772,34 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po new file mode 100644 index 0000000000..4035a3af0c --- /dev/null +++ b/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po @@ -0,0 +1,14942 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-07-14 02:54+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: InvenTree/api.py:272 +msgid "API endpoint not found" +msgstr "" + +#: InvenTree/api.py:505 +msgid "User does not have permission to view this model" +msgstr "" + +#: InvenTree/conversion.py:160 +#, python-brace-format +msgid "Invalid unit provided ({unit})" +msgstr "" + +#: InvenTree/conversion.py:177 +msgid "No value provided" +msgstr "" + +#: InvenTree/conversion.py:204 +#, python-brace-format +msgid "Could not convert {original} to {unit}" +msgstr "" + +#: InvenTree/conversion.py:206 +msgid "Invalid quantity supplied" +msgstr "" + +#: InvenTree/conversion.py:220 +#, python-brace-format +msgid "Invalid quantity supplied ({exc})" +msgstr "" + +#: InvenTree/exceptions.py:109 +msgid "Error details can be found in the admin panel" +msgstr "" + +#: InvenTree/fields.py:136 +msgid "Enter date" +msgstr "" + +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:462 +#: build/serializers.py:540 build/templates/build/sidebar.html:25 +#: company/models.py:824 company/templates/company/sidebar.html:37 +#: order/models.py:1296 order/templates/order/po_sidebar.html:11 +#: order/templates/order/return_order_sidebar.html:9 +#: order/templates/order/so_sidebar.html:17 part/admin.py:59 +#: part/models.py:3259 part/templates/part/part_sidebar.html:63 +#: report/templates/report/inventree_build_order_report.html:172 +#: stock/admin.py:230 stock/models.py:2351 stock/models.py:2478 +#: stock/serializers.py:694 stock/serializers.py:852 stock/serializers.py:948 +#: stock/serializers.py:998 stock/serializers.py:1309 stock/serializers.py:1398 +#: stock/serializers.py:1563 stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 +#: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 +#: templates/js/translated/part.js:1086 +#: templates/js/translated/purchase_order.js:2200 +#: templates/js/translated/return_order.js:775 +#: templates/js/translated/sales_order.js:1103 +#: templates/js/translated/sales_order.js:2018 +#: templates/js/translated/stock.js:1536 templates/js/translated/stock.js:2428 +msgid "Notes" +msgstr "" + +#: InvenTree/format.py:164 +#, python-brace-format +msgid "Value '{name}' does not appear in pattern format" +msgstr "" + +#: InvenTree/format.py:175 +msgid "Provided value does not match required pattern: " +msgstr "" + +#: InvenTree/forms.py:128 +msgid "Enter password" +msgstr "" + +#: InvenTree/forms.py:129 +msgid "Enter new password" +msgstr "" + +#: InvenTree/forms.py:138 +msgid "Confirm password" +msgstr "" + +#: InvenTree/forms.py:139 +msgid "Confirm new password" +msgstr "" + +#: InvenTree/forms.py:143 +msgid "Old password" +msgstr "" + +#: InvenTree/forms.py:182 +msgid "Email (again)" +msgstr "" + +#: InvenTree/forms.py:186 +msgid "Email address confirmation" +msgstr "" + +#: InvenTree/forms.py:209 +msgid "You must type the same email each time." +msgstr "" + +#: InvenTree/forms.py:248 InvenTree/forms.py:256 +msgid "The provided primary email address is not valid." +msgstr "" + +#: InvenTree/forms.py:263 +msgid "The provided email domain is not approved." +msgstr "" + +#: InvenTree/forms.py:392 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:525 order/models.py:562 order/models.py:764 +msgid "Invalid quantity provided" +msgstr "" + +#: InvenTree/helpers.py:533 +msgid "Empty serial number string" +msgstr "" + +#: InvenTree/helpers.py:562 +msgid "Duplicate serial" +msgstr "" + +#: InvenTree/helpers.py:594 InvenTree/helpers.py:637 +#, python-brace-format +msgid "Invalid group range: {group}" +msgstr "" + +#: InvenTree/helpers.py:625 +#, python-brace-format +msgid "Group range {group} exceeds allowed quantity ({expected_quantity})" +msgstr "" + +#: InvenTree/helpers.py:655 InvenTree/helpers.py:662 InvenTree/helpers.py:681 +#, python-brace-format +msgid "Invalid group sequence: {group}" +msgstr "" + +#: InvenTree/helpers.py:691 +msgid "No serial numbers found" +msgstr "" + +#: InvenTree/helpers.py:696 +msgid "Number of unique serial numbers ({len(serials)}) must match quantity ({expected_quantity})" +msgstr "" + +#: InvenTree/helpers.py:814 +msgid "Remove HTML tags from this value" +msgstr "" + +#: InvenTree/helpers_model.py:140 +msgid "Connection error" +msgstr "" + +#: InvenTree/helpers_model.py:145 InvenTree/helpers_model.py:152 +msgid "Server responded with invalid status code" +msgstr "" + +#: InvenTree/helpers_model.py:148 +msgid "Exception occurred" +msgstr "" + +#: InvenTree/helpers_model.py:158 +msgid "Server responded with invalid Content-Length value" +msgstr "" + +#: InvenTree/helpers_model.py:161 +msgid "Image size is too large" +msgstr "" + +#: InvenTree/helpers_model.py:173 +msgid "Image download exceeded maximum size" +msgstr "" + +#: InvenTree/helpers_model.py:178 +msgid "Remote server returned empty response" +msgstr "" + +#: InvenTree/helpers_model.py:186 +msgid "Supplied URL is not a valid image file" +msgstr "" + +#: InvenTree/locales.py:18 +msgid "Arabic" +msgstr "" + +#: InvenTree/locales.py:19 +msgid "Bulgarian" +msgstr "" + +#: InvenTree/locales.py:20 +msgid "Czech" +msgstr "" + +#: InvenTree/locales.py:21 +msgid "Danish" +msgstr "" + +#: InvenTree/locales.py:22 +msgid "German" +msgstr "" + +#: InvenTree/locales.py:23 +msgid "Greek" +msgstr "" + +#: InvenTree/locales.py:24 +msgid "English" +msgstr "" + +#: InvenTree/locales.py:25 +msgid "Spanish" +msgstr "" + +#: InvenTree/locales.py:26 +msgid "Spanish (Mexican)" +msgstr "" + +#: InvenTree/locales.py:27 +msgid "Estonian" +msgstr "" + +#: InvenTree/locales.py:28 +msgid "Farsi / Persian" +msgstr "" + +#: InvenTree/locales.py:29 +msgid "Finnish" +msgstr "" + +#: InvenTree/locales.py:30 +msgid "French" +msgstr "" + +#: InvenTree/locales.py:31 +msgid "Hebrew" +msgstr "" + +#: InvenTree/locales.py:32 +msgid "Hindi" +msgstr "" + +#: InvenTree/locales.py:33 +msgid "Hungarian" +msgstr "" + +#: InvenTree/locales.py:34 +msgid "Italian" +msgstr "" + +#: InvenTree/locales.py:35 +msgid "Japanese" +msgstr "" + +#: InvenTree/locales.py:36 +msgid "Korean" +msgstr "" + +#: InvenTree/locales.py:37 +msgid "Latvian" +msgstr "" + +#: InvenTree/locales.py:38 +msgid "Dutch" +msgstr "" + +#: InvenTree/locales.py:39 +msgid "Norwegian" +msgstr "" + +#: InvenTree/locales.py:40 +msgid "Polish" +msgstr "" + +#: InvenTree/locales.py:41 +msgid "Portuguese" +msgstr "" + +#: InvenTree/locales.py:42 +msgid "Portuguese (Brazilian)" +msgstr "" + +#: InvenTree/locales.py:43 +msgid "Romanian" +msgstr "" + +#: InvenTree/locales.py:44 +msgid "Russian" +msgstr "" + +#: InvenTree/locales.py:45 +msgid "Slovak" +msgstr "" + +#: InvenTree/locales.py:46 +msgid "Slovenian" +msgstr "" + +#: InvenTree/locales.py:47 +msgid "Serbian" +msgstr "" + +#: InvenTree/locales.py:48 +msgid "Swedish" +msgstr "" + +#: InvenTree/locales.py:49 +msgid "Thai" +msgstr "" + +#: InvenTree/locales.py:50 +msgid "Turkish" +msgstr "" + +#: InvenTree/locales.py:51 +msgid "Ukrainian" +msgstr "" + +#: InvenTree/locales.py:52 +msgid "Vietnamese" +msgstr "" + +#: InvenTree/locales.py:53 +msgid "Chinese (Simplified)" +msgstr "" + +#: InvenTree/locales.py:54 +msgid "Chinese (Traditional)" +msgstr "" + +#: InvenTree/magic_login.py:28 +#, python-brace-format +msgid "[{site_name}] Log in to the app" +msgstr "" + +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 +#: templates/InvenTree/settings/user.html:49 +#: templates/js/translated/company.js:677 +msgid "Email" +msgstr "" + +#: InvenTree/models.py:105 +msgid "Error running plugin validation" +msgstr "" + +#: InvenTree/models.py:174 +msgid "Metadata must be a python dict object" +msgstr "" + +#: InvenTree/models.py:180 +msgid "Plugin Metadata" +msgstr "" + +#: InvenTree/models.py:181 +msgid "JSON metadata field, for use by external plugins" +msgstr "" + +#: InvenTree/models.py:411 +msgid "Improperly formatted pattern" +msgstr "" + +#: InvenTree/models.py:418 +msgid "Unknown format key specified" +msgstr "" + +#: InvenTree/models.py:424 +msgid "Missing required format key" +msgstr "" + +#: InvenTree/models.py:435 +msgid "Reference field cannot be empty" +msgstr "" + +#: InvenTree/models.py:443 +msgid "Reference must match required pattern" +msgstr "" + +#: InvenTree/models.py:474 +msgid "Reference number is too large" +msgstr "" + +#: InvenTree/models.py:722 +msgid "Duplicate names cannot exist under the same parent" +msgstr "" + +#: InvenTree/models.py:739 +msgid "Invalid choice" +msgstr "" + +#: InvenTree/models.py:769 common/models.py:2665 common/models.py:3095 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:951 part/models.py:3726 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 +#: templates/InvenTree/settings/mixins/urls.html:13 +#: templates/InvenTree/settings/notifications.html:17 +#: templates/InvenTree/settings/plugin.html:83 +#: templates/InvenTree/settings/plugin_settings.html:22 +#: templates/InvenTree/settings/settings_staff_js.html:67 +#: templates/InvenTree/settings/settings_staff_js.html:446 +#: templates/js/translated/company.js:676 +#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:913 +#: templates/js/translated/company.js:1165 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1192 +#: templates/js/translated/part.js:1480 templates/js/translated/part.js:1616 +#: templates/js/translated/part.js:2768 templates/js/translated/stock.js:2716 +msgid "Name" +msgstr "" + +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 +#: company/templates/company/company_base.html:77 +#: company/templates/company/manufacturer_part.html:75 +#: company/templates/company/supplier_part.html:107 order/models.py:289 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:974 +#: part/models.py:3741 part/templates/part/category.html:82 +#: part/templates/part/part_base.html:170 +#: part/templates/part/part_scheduling.html:12 report/models.py:156 +#: report/models.py:510 report/models.py:536 +#: report/templates/report/inventree_build_order_report.html:117 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 +#: templates/InvenTree/settings/notifications.html:19 +#: templates/InvenTree/settings/plugin_settings.html:27 +#: templates/InvenTree/settings/settings_staff_js.html:170 +#: templates/InvenTree/settings/settings_staff_js.html:451 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:963 +#: templates/js/translated/build.js:2314 templates/js/translated/company.js:519 +#: templates/js/translated/company.js:1330 +#: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1244 +#: templates/js/translated/part.js:1489 templates/js/translated/part.js:1627 +#: templates/js/translated/part.js:1964 templates/js/translated/part.js:2361 +#: templates/js/translated/part.js:2804 templates/js/translated/part.js:2916 +#: templates/js/translated/plugin.js:80 +#: templates/js/translated/purchase_order.js:1706 +#: templates/js/translated/purchase_order.js:1849 +#: templates/js/translated/purchase_order.js:2022 +#: templates/js/translated/return_order.js:313 +#: templates/js/translated/sales_order.js:838 +#: templates/js/translated/sales_order.js:1848 +#: templates/js/translated/stock.js:1515 templates/js/translated/stock.js:2058 +#: templates/js/translated/stock.js:2748 templates/js/translated/stock.js:2831 +msgid "Description" +msgstr "" + +#: InvenTree/models.py:776 stock/models.py:81 +msgid "Description (optional)" +msgstr "" + +#: InvenTree/models.py:791 templates/js/translated/part.js:2813 +#: templates/js/translated/stock.js:2757 +msgid "Path" +msgstr "" + +#: InvenTree/models.py:921 +msgid "Markdown notes (optional)" +msgstr "" + +#: InvenTree/models.py:950 +msgid "Barcode Data" +msgstr "" + +#: InvenTree/models.py:951 +msgid "Third party barcode data" +msgstr "" + +#: InvenTree/models.py:957 +msgid "Barcode Hash" +msgstr "" + +#: InvenTree/models.py:958 +msgid "Unique hash of barcode data" +msgstr "" + +#: InvenTree/models.py:1011 +msgid "Existing barcode found" +msgstr "" + +#: InvenTree/models.py:1054 +msgid "Server Error" +msgstr "" + +#: InvenTree/models.py:1055 +msgid "An error has been logged by the server." +msgstr "" + +#: InvenTree/serializers.py:63 part/models.py:4349 +msgid "Must be a valid number" +msgstr "" + +#: InvenTree/serializers.py:100 company/models.py:186 +#: company/templates/company/company_base.html:112 part/models.py:3077 +#: templates/InvenTree/settings/settings_staff_js.html:44 +#: templates/currency_data.html:5 +msgid "Currency" +msgstr "" + +#: InvenTree/serializers.py:103 +msgid "Select currency from available options" +msgstr "" + +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2670 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1151 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 +msgid "You do not have permission to change this user role." +msgstr "" + +#: InvenTree/serializers.py:475 +msgid "Only superusers can create new users" +msgstr "" + +#: InvenTree/serializers.py:494 +msgid "Your account has been created." +msgstr "" + +#: InvenTree/serializers.py:496 +msgid "Please use the password reset function to login" +msgstr "" + +#: InvenTree/serializers.py:503 +msgid "Welcome to InvenTree" +msgstr "" + +#: InvenTree/serializers.py:561 +msgid "Invalid value" +msgstr "" + +#: InvenTree/serializers.py:581 importer/models.py:60 +msgid "Data File" +msgstr "" + +#: InvenTree/serializers.py:582 +msgid "Select data file for upload" +msgstr "" + +#: InvenTree/serializers.py:599 +msgid "Unsupported file type" +msgstr "" + +#: InvenTree/serializers.py:605 +msgid "File is too large" +msgstr "" + +#: InvenTree/serializers.py:626 +msgid "No columns found in file" +msgstr "" + +#: InvenTree/serializers.py:629 +msgid "No data rows found in file" +msgstr "" + +#: InvenTree/serializers.py:742 +msgid "No data rows provided" +msgstr "" + +#: InvenTree/serializers.py:745 +msgid "No data columns supplied" +msgstr "" + +#: InvenTree/serializers.py:812 +#, python-brace-format +msgid "Missing required column: '{name}'" +msgstr "" + +#: InvenTree/serializers.py:821 +#, python-brace-format +msgid "Duplicate column: '{col}'" +msgstr "" + +#: InvenTree/serializers.py:861 +msgid "Remote Image" +msgstr "" + +#: InvenTree/serializers.py:862 +msgid "URL of remote image file" +msgstr "" + +#: InvenTree/serializers.py:880 +msgid "Downloading images from remote URL is not enabled" +msgstr "" + +#: InvenTree/status.py:66 part/serializers.py:1234 +msgid "Background worker check failed" +msgstr "" + +#: InvenTree/status.py:70 +msgid "Email backend not configured" +msgstr "" + +#: InvenTree/status.py:73 +msgid "InvenTree system health checks failed" +msgstr "" + +#: InvenTree/templatetags/inventree_extras.py:184 +msgid "Unknown database" +msgstr "" + +#: InvenTree/validators.py:32 InvenTree/validators.py:34 +msgid "Invalid physical unit" +msgstr "" + +#: InvenTree/validators.py:40 +msgid "Not a valid currency code" +msgstr "" + +#: InvenTree/validators.py:118 InvenTree/validators.py:134 +msgid "Overage value must not be negative" +msgstr "" + +#: InvenTree/validators.py:136 +msgid "Overage must not exceed 100%" +msgstr "" + +#: InvenTree/validators.py:142 +msgid "Invalid value for overage" +msgstr "" + +#: InvenTree/views.py:400 templates/InvenTree/settings/user.html:23 +msgid "Edit User Information" +msgstr "" + +#: InvenTree/views.py:412 templates/InvenTree/settings/user.html:20 +msgid "Set Password" +msgstr "" + +#: InvenTree/views.py:434 +msgid "Password fields must match" +msgstr "" + +#: InvenTree/views.py:442 +msgid "Wrong password provided" +msgstr "" + +#: InvenTree/views.py:650 templates/navbar.html:160 +msgid "System Information" +msgstr "" + +#: InvenTree/views.py:657 templates/navbar.html:171 +msgid "About InvenTree" +msgstr "" + +#: build/api.py:247 +msgid "Build must be cancelled before it can be deleted" +msgstr "" + +#: build/api.py:291 build/serializers.py:1227 part/models.py:4227 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2705 +#: templates/js/translated/table_filters.js:190 +#: templates/js/translated/table_filters.js:583 +msgid "Consumable" +msgstr "" + +#: build/api.py:292 build/serializers.py:1228 part/models.py:4221 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 +#: templates/js/translated/table_filters.js:186 +#: templates/js/translated/table_filters.js:215 +#: templates/js/translated/table_filters.js:587 +msgid "Optional" +msgstr "" + +#: build/api.py:293 templates/js/translated/table_filters.js:408 +#: templates/js/translated/table_filters.js:579 +msgid "Tracked" +msgstr "" + +#: build/api.py:295 part/admin.py:144 templates/js/translated/build.js:1919 +#: templates/js/translated/build.js:2823 +#: templates/js/translated/sales_order.js:1965 +#: templates/js/translated/table_filters.js:571 +msgid "Allocated" +msgstr "" + +#: build/api.py:303 company/models.py:879 company/serializers.py:388 +#: company/templates/company/supplier_part.html:114 +#: templates/email/build_order_required_stock.html:19 +#: templates/email/low_stock_notification.html:17 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2755 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:234 +#: templates/js/translated/part.js:694 templates/js/translated/part.js:696 +#: templates/js/translated/part.js:701 +#: templates/js/translated/table_filters.js:340 +#: templates/js/translated/table_filters.js:575 +msgid "Available" +msgstr "" + +#: build/models.py:85 build/templates/build/build_base.html:9 +#: build/templates/build/build_base.html:27 +#: report/templates/report/inventree_build_order_report.html:105 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 +#: templates/email/overdue_build_order.html:15 +#: templates/js/translated/build.js:1147 templates/js/translated/stock.js:2892 +msgid "Build Order" +msgstr "" + +#: build/models.py:86 build/templates/build/build_base.html:13 +#: build/templates/build/index.html:8 build/templates/build/index.html:12 +#: order/templates/order/sales_order_detail.html:111 +#: order/templates/order/so_sidebar.html:13 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 +#: templates/InvenTree/search.html:141 +#: templates/InvenTree/settings/sidebar.html:55 +#: templates/js/translated/search.js:186 users/models.py:207 +msgid "Build Orders" +msgstr "" + +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 +msgid "Invalid choice for parent build" +msgstr "" + +#: build/models.py:166 order/models.py:240 +msgid "Responsible user or group must be specified" +msgstr "" + +#: build/models.py:172 +msgid "Build order part cannot be changed" +msgstr "" + +#: build/models.py:233 +msgid "Build Order Reference" +msgstr "" + +#: build/models.py:234 build/serializers.py:1226 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4242 part/templates/part/upload_bom.html:54 +#: report/templates/report/inventree_bill_of_materials_report.html:139 +#: report/templates/report/inventree_purchase_order_report.html:28 +#: report/templates/report/inventree_return_order_report.html:26 +#: report/templates/report/inventree_sales_order_report.html:28 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 +#: templates/js/translated/build.js:1013 templates/js/translated/build.js:2688 +#: templates/js/translated/order.js:291 templates/js/translated/pricing.js:386 +#: templates/js/translated/purchase_order.js:2065 +#: templates/js/translated/return_order.js:728 +#: templates/js/translated/sales_order.js:1854 +msgid "Reference" +msgstr "" + +#: build/models.py:245 +msgid "Brief description of the build (optional)" +msgstr "" + +#: build/models.py:253 build/templates/build/build_base.html:183 +#: build/templates/build/detail.html:87 +msgid "Parent Build" +msgstr "" + +#: build/models.py:254 +msgid "BuildOrder to which this build is allocated" +msgstr "" + +#: build/models.py:259 build/serializers.py:1217 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1504 part/api.py:1800 part/models.py:397 part/models.py:3088 +#: part/models.py:3232 part/models.py:3380 part/models.py:3401 +#: part/models.py:3423 part/models.py:3559 part/models.py:3899 +#: part/models.py:4062 part/models.py:4193 part/models.py:4552 +#: part/serializers.py:1180 part/serializers.py:1808 +#: part/templates/part/part_app_base.html:8 +#: part/templates/part/part_pricing.html:12 +#: part/templates/part/upload_bom.html:52 +#: 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 +#: report/templates/report/inventree_purchase_order_report.html:27 +#: report/templates/report/inventree_return_order_report.html:24 +#: report/templates/report/inventree_sales_order_report.html:27 +#: report/templates/report/inventree_stock_location_report.html:102 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:445 +#: stock/serializers.py:882 templates/InvenTree/search.html:82 +#: templates/email/build_order_completed.html:17 +#: templates/email/build_order_required_stock.html:17 +#: templates/email/low_stock_notification.html:15 +#: templates/email/overdue_build_order.html:16 +#: templates/js/translated/barcode.js:577 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1004 templates/js/translated/build.js:1487 +#: templates/js/translated/build.js:1918 templates/js/translated/build.js:2337 +#: templates/js/translated/build.js:2510 templates/js/translated/company.js:348 +#: templates/js/translated/company.js:1116 +#: templates/js/translated/company.js:1271 +#: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1949 templates/js/translated/part.js:2021 +#: templates/js/translated/part.js:2330 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:751 +#: templates/js/translated/purchase_order.js:1304 +#: templates/js/translated/purchase_order.js:1848 +#: templates/js/translated/purchase_order.js:2007 +#: templates/js/translated/return_order.js:538 +#: templates/js/translated/return_order.js:709 +#: templates/js/translated/sales_order.js:300 +#: templates/js/translated/sales_order.js:1233 +#: templates/js/translated/sales_order.js:1634 +#: templates/js/translated/sales_order.js:1832 +#: templates/js/translated/stock.js:676 templates/js/translated/stock.js:842 +#: templates/js/translated/stock.js:1058 templates/js/translated/stock.js:1997 +#: templates/js/translated/stock.js:2857 templates/js/translated/stock.js:3090 +#: templates/js/translated/stock.js:3236 +msgid "Part" +msgstr "" + +#: build/models.py:267 +msgid "Select part to build" +msgstr "" + +#: build/models.py:272 +msgid "Sales Order Reference" +msgstr "" + +#: build/models.py:276 +msgid "SalesOrder to which this build is allocated" +msgstr "" + +#: build/models.py:281 build/serializers.py:1009 +#: templates/js/translated/build.js:1906 +#: templates/js/translated/sales_order.js:1221 +msgid "Source Location" +msgstr "" + +#: build/models.py:285 +msgid "Select location to take stock from for this build (leave blank to take from any stock location)" +msgstr "" + +#: build/models.py:290 +msgid "Destination Location" +msgstr "" + +#: build/models.py:294 +msgid "Select location where the completed items will be stored" +msgstr "" + +#: build/models.py:298 +msgid "Build Quantity" +msgstr "" + +#: build/models.py:301 +msgid "Number of stock items to build" +msgstr "" + +#: build/models.py:305 +msgid "Completed items" +msgstr "" + +#: build/models.py:307 +msgid "Number of stock items which have been completed" +msgstr "" + +#: build/models.py:311 +msgid "Build Status" +msgstr "" + +#: build/models.py:315 +msgid "Build status code" +msgstr "" + +#: build/models.py:324 build/serializers.py:296 order/serializers.py:630 +#: stock/models.py:837 stock/serializers.py:76 stock/serializers.py:1528 +#: templates/js/translated/purchase_order.js:1129 +msgid "Batch Code" +msgstr "" + +#: build/models.py:328 build/serializers.py:297 +msgid "Batch code for this build output" +msgstr "" + +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1191 part/templates/part/part_base.html:319 +#: templates/js/translated/return_order.js:338 +#: templates/js/translated/sales_order.js:863 +msgid "Creation Date" +msgstr "" + +#: build/models.py:335 +msgid "Target completion date" +msgstr "" + +#: build/models.py:336 +msgid "Target date for build completion. Build will be overdue after this date." +msgstr "" + +#: build/models.py:339 order/models.py:521 order/models.py:2091 +#: templates/js/translated/build.js:2422 +msgid "Completion Date" +msgstr "" + +#: build/models.py:345 +msgid "completed by" +msgstr "" + +#: build/models.py:353 templates/js/translated/build.js:2382 +msgid "Issued by" +msgstr "" + +#: build/models.py:354 +msgid "User who issued this build order" +msgstr "" + +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 +#: order/models.py:334 order/templates/order/order_base.html:217 +#: order/templates/order/return_order_base.html:188 +#: order/templates/order/sales_order_base.html:232 part/models.py:1208 +#: part/templates/part/part_base.html:399 +#: report/templates/report/inventree_build_order_report.html:158 +#: templates/InvenTree/settings/settings_staff_js.html:150 +#: templates/js/translated/build.js:2394 +#: templates/js/translated/purchase_order.js:1763 +#: templates/js/translated/return_order.js:358 +#: templates/js/translated/table_filters.js:531 +msgid "Responsible" +msgstr "" + +#: build/models.py:363 +msgid "User or group responsible for this build order" +msgstr "" + +#: build/models.py:368 build/templates/build/detail.html:108 +#: company/templates/company/manufacturer_part.html:107 +#: company/templates/company/supplier_part.html:194 +#: order/templates/order/order_base.html:167 +#: order/templates/order/return_order_base.html:145 +#: order/templates/order/sales_order_base.html:184 +#: part/templates/part/part_base.html:392 stock/models.py:833 +#: stock/templates/stock/item_base.html:200 +#: templates/js/translated/company.js:1019 +msgid "External Link" +msgstr "" + +#: build/models.py:369 common/models.py:3236 part/models.py:1026 +#: stock/models.py:833 +msgid "Link to external URL" +msgstr "" + +#: build/models.py:373 +msgid "Build Priority" +msgstr "" + +#: build/models.py:376 +msgid "Priority of this build order" +msgstr "" + +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 +#: templates/InvenTree/settings/settings_staff_js.html:146 +#: templates/js/translated/build.js:2319 +#: templates/js/translated/purchase_order.js:1710 +#: templates/js/translated/return_order.js:317 +#: templates/js/translated/sales_order.js:842 +#: templates/js/translated/table_filters.js:48 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:384 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:617 build/models.py:682 +msgid "Failed to offload task to complete build allocations" +msgstr "" + +#: build/models.py:639 +#, python-brace-format +msgid "Build order {build} has been completed" +msgstr "" + +#: build/models.py:645 +msgid "A build order has been completed" +msgstr "" + +#: build/models.py:871 build/models.py:956 +msgid "No build output specified" +msgstr "" + +#: build/models.py:874 +msgid "Build output is already completed" +msgstr "" + +#: build/models.py:877 +msgid "Build output does not match Build Order" +msgstr "" + +#: build/models.py:960 build/serializers.py:229 build/serializers.py:278 +#: build/serializers.py:876 order/models.py:559 order/serializers.py:462 +#: order/serializers.py:625 part/serializers.py:1549 part/serializers.py:1971 +#: stock/models.py:678 stock/models.py:1498 stock/serializers.py:665 +msgid "Quantity must be greater than zero" +msgstr "" + +#: build/models.py:965 build/serializers.py:234 +msgid "Quantity cannot be greater than the output quantity" +msgstr "" + +#: build/models.py:1025 build/serializers.py:557 +#, python-brace-format +msgid "Build output {serial} has not passed all required tests" +msgstr "" + +#: build/models.py:1366 +msgid "Build Order Line Item" +msgstr "" + +#: build/models.py:1391 +msgid "Build object" +msgstr "" + +#: build/models.py:1405 build/models.py:1661 build/serializers.py:216 +#: build/serializers.py:263 build/serializers.py:1233 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2550 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1384 +#: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 +#: part/forms.py:48 part/models.py:3246 part/models.py:4215 +#: part/templates/part/part_pricing.html:16 +#: part/templates/part/upload_bom.html:53 +#: 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:29 +#: report/templates/report/inventree_sales_order_report.html:29 +#: report/templates/report/inventree_stock_location_report.html:104 +#: report/templates/report/inventree_test_report.html:90 +#: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:656 +#: stock/templates/stock/item_base.html:287 +#: stock/templates/stock/item_base.html:295 +#: stock/templates/stock/item_base.html:342 +#: templates/email/build_order_completed.html:18 +#: templates/js/translated/barcode.js:579 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:981 templates/js/translated/build.js:522 +#: templates/js/translated/build.js:738 templates/js/translated/build.js:1544 +#: templates/js/translated/build.js:1921 templates/js/translated/build.js:2532 +#: templates/js/translated/company.js:1818 +#: templates/js/translated/model_renderers.js:236 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:967 +#: templates/js/translated/part.js:1817 templates/js/translated/part.js:3361 +#: templates/js/translated/pricing.js:381 +#: templates/js/translated/pricing.js:474 +#: templates/js/translated/pricing.js:522 +#: templates/js/translated/pricing.js:616 +#: templates/js/translated/purchase_order.js:754 +#: templates/js/translated/purchase_order.js:1852 +#: templates/js/translated/purchase_order.js:2071 +#: templates/js/translated/sales_order.js:317 +#: templates/js/translated/sales_order.js:1235 +#: templates/js/translated/sales_order.js:1554 +#: templates/js/translated/sales_order.js:1644 +#: templates/js/translated/sales_order.js:1734 +#: templates/js/translated/sales_order.js:1860 +#: templates/js/translated/stock.js:564 templates/js/translated/stock.js:702 +#: templates/js/translated/stock.js:873 templates/js/translated/stock.js:3021 +#: templates/js/translated/stock.js:3104 +msgid "Quantity" +msgstr "" + +#: build/models.py:1406 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1486 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1495 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1505 order/models.py:1908 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1511 order/models.py:1911 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1517 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1576 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1648 build/serializers.py:856 order/serializers.py:1228 +#: order/serializers.py:1249 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:759 stock/serializers.py:1247 stock/serializers.py:1359 +#: stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:194 +#: templates/js/translated/build.js:1920 +#: templates/js/translated/sales_order.js:301 +#: templates/js/translated/sales_order.js:1234 +#: templates/js/translated/sales_order.js:1535 +#: templates/js/translated/sales_order.js:1540 +#: templates/js/translated/sales_order.js:1641 +#: templates/js/translated/sales_order.js:1728 +#: templates/js/translated/stock.js:677 templates/js/translated/stock.js:843 +#: templates/js/translated/stock.js:2977 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1649 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1662 +msgid "Stock quantity to allocate to build" +msgstr "" + +#: build/models.py:1670 +msgid "Install into" +msgstr "" + +#: build/models.py:1671 +msgid "Destination stock item" +msgstr "" + +#: build/serializers.py:93 build/serializers.py:1138 build/serializers.py:1218 +#: part/admin.py:41 part/admin.py:405 part/models.py:4064 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:105 +msgid "Project Code Label" +msgstr "" + +#: build/serializers.py:166 build/serializers.py:885 +#: templates/js/translated/build.js:1044 templates/js/translated/build.js:1497 +msgid "Build Output" +msgstr "" + +#: build/serializers.py:178 +msgid "Build output does not match the parent build" +msgstr "" + +#: build/serializers.py:182 +msgid "Output part does not match BuildOrder part" +msgstr "" + +#: build/serializers.py:186 +msgid "This build output has already been completed" +msgstr "" + +#: build/serializers.py:197 +msgid "This build output is not fully allocated" +msgstr "" + +#: build/serializers.py:217 build/serializers.py:264 +msgid "Enter quantity for build output" +msgstr "" + +#: build/serializers.py:285 +msgid "Integer quantity required for trackable parts" +msgstr "" + +#: build/serializers.py:288 +msgid "Integer quantity required, as the bill of materials contains trackable parts" +msgstr "" + +#: build/serializers.py:303 order/serializers.py:638 order/serializers.py:1388 +#: stock/serializers.py:676 templates/js/translated/purchase_order.js:1153 +#: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 +msgid "Serial Numbers" +msgstr "" + +#: build/serializers.py:304 +msgid "Enter serial numbers for build outputs" +msgstr "" + +#: build/serializers.py:309 build/serializers.py:450 build/serializers.py:522 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 +#: part/serializers.py:1200 stock/serializers.py:102 stock/serializers.py:687 +#: stock/serializers.py:847 stock/serializers.py:943 stock/serializers.py:1391 +#: stock/serializers.py:1647 stock/templates/stock/item_base.html:394 +#: templates/js/translated/barcode.js:578 +#: templates/js/translated/barcode.js:826 templates/js/translated/build.js:1034 +#: templates/js/translated/build.js:1176 templates/js/translated/build.js:2547 +#: templates/js/translated/purchase_order.js:1178 +#: templates/js/translated/purchase_order.js:1268 +#: templates/js/translated/sales_order.js:1547 +#: templates/js/translated/sales_order.js:1655 +#: templates/js/translated/sales_order.js:1663 +#: templates/js/translated/sales_order.js:1742 +#: templates/js/translated/stock.js:678 templates/js/translated/stock.js:844 +#: templates/js/translated/stock.js:1060 templates/js/translated/stock.js:2201 +#: templates/js/translated/stock.js:2871 +msgid "Location" +msgstr "" + +#: build/serializers.py:310 +msgid "Stock location for build output" +msgstr "" + +#: build/serializers.py:324 +msgid "Auto Allocate Serial Numbers" +msgstr "" + +#: build/serializers.py:325 +msgid "Automatically allocate required items with matching serial numbers" +msgstr "" + +#: build/serializers.py:340 +msgid "Serial numbers must be provided for trackable parts" +msgstr "" + +#: build/serializers.py:365 stock/api.py:1033 +msgid "The following serial numbers already exist or are invalid" +msgstr "" + +#: build/serializers.py:412 build/serializers.py:474 build/serializers.py:563 +msgid "A list of build outputs must be provided" +msgstr "" + +#: build/serializers.py:451 +msgid "Stock location for scrapped outputs" +msgstr "" + +#: build/serializers.py:457 +msgid "Discard Allocations" +msgstr "" + +#: build/serializers.py:458 +msgid "Discard any stock allocations for scrapped outputs" +msgstr "" + +#: build/serializers.py:463 +msgid "Reason for scrapping build output(s)" +msgstr "" + +#: build/serializers.py:523 +msgid "Location for completed build outputs" +msgstr "" + +#: build/serializers.py:529 build/templates/build/build_base.html:151 +#: build/templates/build/detail.html:62 order/models.py:950 +#: order/models.py:2070 order/serializers.py:646 stock/admin.py:164 +#: stock/serializers.py:994 stock/serializers.py:1535 +#: stock/templates/stock/item_base.html:427 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2366 +#: templates/js/translated/purchase_order.js:1308 +#: templates/js/translated/purchase_order.js:1722 +#: templates/js/translated/return_order.js:330 +#: templates/js/translated/sales_order.js:855 +#: templates/js/translated/stock.js:2176 templates/js/translated/stock.js:2995 +#: templates/js/translated/stock.js:3120 +msgid "Status" +msgstr "" + +#: build/serializers.py:535 +msgid "Accept Incomplete Allocation" +msgstr "" + +#: build/serializers.py:536 +msgid "Complete outputs if stock has not been fully allocated" +msgstr "" + +#: build/serializers.py:621 +msgid "Consume Allocated Stock" +msgstr "" + +#: build/serializers.py:622 +msgid "Consume any stock which has already been allocated to this build" +msgstr "" + +#: build/serializers.py:628 +msgid "Remove Incomplete Outputs" +msgstr "" + +#: build/serializers.py:629 +msgid "Delete any build outputs which have not been completed" +msgstr "" + +#: build/serializers.py:656 +msgid "Not permitted" +msgstr "" + +#: build/serializers.py:657 +msgid "Accept as consumed by this build order" +msgstr "" + +#: build/serializers.py:658 +msgid "Deallocate before completing this build order" +msgstr "" + +#: build/serializers.py:688 +msgid "Overallocated Stock" +msgstr "" + +#: build/serializers.py:690 +msgid "How do you want to handle extra stock items assigned to the build order" +msgstr "" + +#: build/serializers.py:700 +msgid "Some stock items have been overallocated" +msgstr "" + +#: build/serializers.py:705 +msgid "Accept Unallocated" +msgstr "" + +#: build/serializers.py:706 +msgid "Accept that stock items have not been fully allocated to this build order" +msgstr "" + +#: build/serializers.py:716 templates/js/translated/build.js:316 +msgid "Required stock has not been fully allocated" +msgstr "" + +#: build/serializers.py:721 order/serializers.py:320 order/serializers.py:1291 +msgid "Accept Incomplete" +msgstr "" + +#: build/serializers.py:722 +msgid "Accept that the required number of build outputs have not been completed" +msgstr "" + +#: build/serializers.py:732 templates/js/translated/build.js:320 +msgid "Required build quantity has not been completed" +msgstr "" + +#: build/serializers.py:741 templates/js/translated/build.js:304 +msgid "Build order has incomplete outputs" +msgstr "" + +#: build/serializers.py:779 +msgid "Build Line" +msgstr "" + +#: build/serializers.py:789 +msgid "Build output" +msgstr "" + +#: build/serializers.py:797 +msgid "Build output must point to the same build" +msgstr "" + +#: build/serializers.py:833 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:847 +msgid "bom_item.part must point to the same part as the build order" +msgstr "" + +#: build/serializers.py:862 stock/serializers.py:1260 +msgid "Item must be in stock" +msgstr "" + +#: build/serializers.py:910 order/serializers.py:1282 +#, python-brace-format +msgid "Available quantity ({q}) exceeded" +msgstr "" + +#: build/serializers.py:916 +msgid "Build output must be specified for allocation of tracked parts" +msgstr "" + +#: build/serializers.py:923 +msgid "Build output cannot be specified for allocation of untracked parts" +msgstr "" + +#: build/serializers.py:947 order/serializers.py:1534 +msgid "Allocation items must be provided" +msgstr "" + +#: build/serializers.py:1010 +msgid "Stock location where parts are to be sourced (leave blank to take from any location)" +msgstr "" + +#: build/serializers.py:1018 +msgid "Exclude Location" +msgstr "" + +#: build/serializers.py:1019 +msgid "Exclude stock items from this selected location" +msgstr "" + +#: build/serializers.py:1024 +msgid "Interchangeable Stock" +msgstr "" + +#: build/serializers.py:1025 +msgid "Stock items in multiple locations can be used interchangeably" +msgstr "" + +#: build/serializers.py:1030 +msgid "Substitute Stock" +msgstr "" + +#: build/serializers.py:1031 +msgid "Allow allocation of substitute parts" +msgstr "" + +#: build/serializers.py:1036 +msgid "Optional Items" +msgstr "" + +#: build/serializers.py:1037 +msgid "Allocate optional BOM items to build order" +msgstr "" + +#: build/serializers.py:1059 +msgid "Failed to start auto-allocation task" +msgstr "" + +#: build/serializers.py:1130 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1131 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1132 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:456 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1133 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1134 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1137 part/admin.py:39 part/admin.py:398 +#: part/models.py:4063 part/stocktake.py:219 stock/admin.py:152 +msgid "Part ID" +msgstr "" + +#: build/serializers.py:1139 build/serializers.py:1219 part/admin.py:402 +#: part/models.py:4065 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1152 stock/serializers.py:589 +#: templates/js/translated/build.js:1019 templates/js/translated/build.js:1166 +#: templates/js/translated/build.js:2519 +msgid "Allocated Quantity" +msgstr "" + +#: build/serializers.py:1153 stock/templates/stock/item_base.html:340 +msgid "Available Quantity" +msgstr "" + +#: build/serializers.py:1221 part/admin.py:45 part/stocktake.py:221 +msgid "Part Description" +msgstr "" + +#: build/serializers.py:1222 +msgid "Part Category ID" +msgstr "" + +#: build/serializers.py:1223 +msgid "Part Category Name" +msgstr "" + +#: build/serializers.py:1229 common/models.py:1494 part/admin.py:113 +#: part/models.py:1134 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1230 +msgid "Inherited" +msgstr "" + +#: build/serializers.py:1231 part/models.py:4275 +#: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 +#: templates/js/translated/build.js:2714 +msgid "Allow Variants" +msgstr "" + +#: build/serializers.py:1235 part/models.py:4072 part/models.py:4544 +#: stock/api.py:796 +msgid "BOM Item" +msgstr "" + +#: build/serializers.py:1244 build/templates/build/detail.html:236 +#: build/templates/build/sidebar.html:16 templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + +#: build/serializers.py:1249 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:887 part/serializers.py:1567 +#: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 +#: templates/js/translated/build.js:2807 templates/js/translated/part.js:711 +#: templates/js/translated/part.js:2154 +#: templates/js/translated/table_filters.js:170 +msgid "On Order" +msgstr "" + +#: build/serializers.py:1254 part/serializers.py:1569 +#: templates/js/translated/build.js:2811 +#: templates/js/translated/table_filters.js:360 +msgid "In Production" +msgstr "" + +#: build/serializers.py:1259 part/bom.py:172 part/serializers.py:1594 +#: part/templates/part/part_base.html:192 +#: templates/js/translated/sales_order.js:1929 +msgid "Available Stock" +msgstr "" + +#: build/serializers.py:1263 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1264 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1265 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1266 part/serializers.py:894 +msgid "External Stock" +msgstr "" + +#: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 +#: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 +#: templates/js/translated/table_filters.js:598 +msgid "Pending" +msgstr "" + +#: build/status_codes.py:12 +msgid "Production" +msgstr "" + +#: build/status_codes.py:13 order/status_codes.py:15 order/status_codes.py:45 +#: order/status_codes.py:70 +msgid "Cancelled" +msgstr "" + +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 +#: order/status_codes.py:44 order/status_codes.py:69 +#: order/templates/order/order_base.html:158 +#: order/templates/order/sales_order_base.html:165 report/models.py:444 +msgid "Complete" +msgstr "" + +#: build/tasks.py:184 +msgid "Stock required for build order" +msgstr "" + +#: build/tasks.py:201 +msgid "Overdue Build Order" +msgstr "" + +#: build/tasks.py:206 +#, python-brace-format +msgid "Build order {bo} is now overdue" +msgstr "" + +#: build/templates/build/build_base.html:18 +msgid "Part thumbnail" +msgstr "" + +#: build/templates/build/build_base.html:38 +#: company/templates/company/supplier_part.html:35 +#: order/templates/order/order_base.html:29 +#: order/templates/order/return_order_base.html:38 +#: order/templates/order/sales_order_base.html:38 +#: part/templates/part/part_base.html:41 +#: stock/templates/stock/item_base.html:40 +#: stock/templates/stock/location.html:55 +#: templates/js/translated/filters.js:335 +msgid "Barcode actions" +msgstr "" + +#: build/templates/build/build_base.html:42 +#: company/templates/company/supplier_part.html:39 +#: order/templates/order/order_base.html:33 +#: order/templates/order/return_order_base.html:42 +#: order/templates/order/sales_order_base.html:42 +#: part/templates/part/part_base.html:44 +#: stock/templates/stock/item_base.html:44 +#: stock/templates/stock/location.html:57 templates/qr_button.html:1 +msgid "Show QR Code" +msgstr "" + +#: build/templates/build/build_base.html:45 +#: company/templates/company/supplier_part.html:41 +#: order/templates/order/order_base.html:36 +#: order/templates/order/return_order_base.html:45 +#: order/templates/order/sales_order_base.html:45 +#: part/templates/part/part_base.html:47 +#: stock/templates/stock/item_base.html:47 +#: stock/templates/stock/location.html:59 +#: templates/js/translated/barcode.js:527 +#: templates/js/translated/barcode.js:532 +msgid "Unlink Barcode" +msgstr "" + +#: build/templates/build/build_base.html:47 +#: company/templates/company/supplier_part.html:43 +#: order/templates/order/order_base.html:38 +#: order/templates/order/return_order_base.html:47 +#: order/templates/order/sales_order_base.html:47 +#: part/templates/part/part_base.html:49 +#: stock/templates/stock/item_base.html:49 +#: stock/templates/stock/location.html:61 +msgid "Link Barcode" +msgstr "" + +#: build/templates/build/build_base.html:56 +#: order/templates/order/order_base.html:46 +#: order/templates/order/return_order_base.html:55 +#: order/templates/order/sales_order_base.html:55 +msgid "Print actions" +msgstr "" + +#: build/templates/build/build_base.html:60 +msgid "Print build order report" +msgstr "" + +#: build/templates/build/build_base.html:67 +msgid "Build actions" +msgstr "" + +#: build/templates/build/build_base.html:71 +msgid "Edit Build" +msgstr "" + +#: build/templates/build/build_base.html:73 +msgid "Cancel Build" +msgstr "" + +#: build/templates/build/build_base.html:76 +msgid "Duplicate Build" +msgstr "" + +#: build/templates/build/build_base.html:79 +msgid "Delete Build" +msgstr "" + +#: build/templates/build/build_base.html:84 +#: build/templates/build/build_base.html:85 +msgid "Complete Build" +msgstr "" + +#: build/templates/build/build_base.html:107 +msgid "Build Description" +msgstr "" + +#: build/templates/build/build_base.html:117 +msgid "No build outputs have been created for this build order" +msgstr "" + +#: build/templates/build/build_base.html:124 +msgid "Build Order is ready to mark as completed" +msgstr "" + +#: build/templates/build/build_base.html:129 +msgid "Build Order cannot be completed as outstanding outputs remain" +msgstr "" + +#: build/templates/build/build_base.html:134 +msgid "Required build quantity has not yet been completed" +msgstr "" + +#: build/templates/build/build_base.html:139 +msgid "Stock has not been fully allocated to this Build Order" +msgstr "" + +#: build/templates/build/build_base.html:160 +#: build/templates/build/detail.html:138 order/models.py:309 +#: order/models.py:1307 order/serializers.py:175 +#: order/templates/order/order_base.html:186 +#: order/templates/order/return_order_base.html:164 +#: order/templates/order/sales_order_base.html:196 +#: report/templates/report/inventree_build_order_report.html:125 +#: templates/js/translated/build.js:2414 templates/js/translated/part.js:1836 +#: templates/js/translated/purchase_order.js:1739 +#: templates/js/translated/purchase_order.js:2147 +#: templates/js/translated/return_order.js:346 +#: templates/js/translated/return_order.js:750 +#: templates/js/translated/sales_order.js:871 +#: templates/js/translated/sales_order.js:1903 +msgid "Target Date" +msgstr "" + +#: build/templates/build/build_base.html:165 +#, python-format +msgid "This build was due on %(target)s" +msgstr "" + +#: build/templates/build/build_base.html:165 +#: build/templates/build/build_base.html:222 +#: order/templates/order/order_base.html:122 +#: order/templates/order/return_order_base.html:117 +#: order/templates/order/sales_order_base.html:126 +#: templates/js/translated/table_filters.js:98 +#: templates/js/translated/table_filters.js:524 +#: templates/js/translated/table_filters.js:626 +#: templates/js/translated/table_filters.js:667 +msgid "Overdue" +msgstr "" + +#: build/templates/build/build_base.html:177 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" +msgstr "" + +#: build/templates/build/build_base.html:190 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 +#: order/templates/order/sales_order_base.html:9 +#: order/templates/order/sales_order_base.html:28 +#: report/templates/report/inventree_build_order_report.html:135 +#: report/templates/report/inventree_sales_order_report.html:14 +#: stock/templates/stock/item_base.html:369 +#: templates/email/overdue_sales_order.html:15 +#: templates/js/translated/pricing.js:929 +#: templates/js/translated/sales_order.js:805 +#: templates/js/translated/sales_order.js:1028 +#: templates/js/translated/stock.js:2924 +msgid "Sales Order" +msgstr "" + +#: build/templates/build/build_base.html:197 +#: build/templates/build/detail.html:115 +#: report/templates/report/inventree_build_order_report.html:152 +#: templates/js/translated/table_filters.js:24 +msgid "Issued By" +msgstr "" + +#: build/templates/build/build_base.html:211 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2331 +msgid "Priority" +msgstr "" + +#: build/templates/build/build_base.html:269 +msgid "Delete Build Order" +msgstr "" + +#: build/templates/build/build_base.html:279 +msgid "Build Order QR Code" +msgstr "" + +#: build/templates/build/build_base.html:291 +msgid "Link Barcode to Build Order" +msgstr "" + +#: build/templates/build/detail.html:15 +msgid "Build Details" +msgstr "" + +#: build/templates/build/detail.html:38 +msgid "Stock Source" +msgstr "" + +#: build/templates/build/detail.html:43 +msgid "Stock can be taken from any available location." +msgstr "" + +#: build/templates/build/detail.html:49 order/models.py:1448 +#: templates/js/translated/purchase_order.js:2189 +msgid "Destination" +msgstr "" + +#: build/templates/build/detail.html:56 +msgid "Destination location not specified" +msgstr "" + +#: build/templates/build/detail.html:73 +msgid "Allocated Parts" +msgstr "" + +#: build/templates/build/detail.html:80 stock/admin.py:162 +#: stock/templates/stock/item_base.html:162 +#: templates/js/translated/build.js:1555 +#: templates/js/translated/model_renderers.js:241 +#: templates/js/translated/purchase_order.js:1274 +#: templates/js/translated/stock.js:1133 templates/js/translated/stock.js:2190 +#: templates/js/translated/stock.js:3127 +#: templates/js/translated/table_filters.js:313 +#: templates/js/translated/table_filters.js:404 +msgid "Batch" +msgstr "" + +#: build/templates/build/detail.html:133 +#: order/templates/order/order_base.html:173 +#: order/templates/order/return_order_base.html:151 +#: order/templates/order/sales_order_base.html:190 +#: templates/js/translated/build.js:2374 +msgid "Created" +msgstr "" + +#: build/templates/build/detail.html:144 +msgid "No target date set" +msgstr "" + +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:206 +#: templates/js/translated/table_filters.js:689 +msgid "Completed" +msgstr "" + +#: build/templates/build/detail.html:153 +msgid "Build not complete" +msgstr "" + +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:21 +msgid "Child Build Orders" +msgstr "" + +#: build/templates/build/detail.html:177 +msgid "Build Order Line Items" +msgstr "" + +#: build/templates/build/detail.html:181 +msgid "Deallocate stock" +msgstr "" + +#: build/templates/build/detail.html:182 +msgid "Deallocate Stock" +msgstr "" + +#: build/templates/build/detail.html:184 +msgid "Automatically allocate stock to build" +msgstr "" + +#: build/templates/build/detail.html:185 +msgid "Auto Allocate" +msgstr "" + +#: build/templates/build/detail.html:187 +msgid "Manually allocate stock to build" +msgstr "" + +#: build/templates/build/detail.html:188 +msgid "Allocate Stock" +msgstr "" + +#: build/templates/build/detail.html:191 +msgid "Order required parts" +msgstr "" + +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:795 +msgid "Order Parts" +msgstr "" + +#: build/templates/build/detail.html:205 +msgid "Available stock has been filtered based on specified source location for this build order" +msgstr "" + +#: build/templates/build/detail.html:215 +msgid "Incomplete Build Outputs" +msgstr "" + +#: build/templates/build/detail.html:219 +msgid "Create new build output" +msgstr "" + +#: build/templates/build/detail.html:220 +msgid "New Build Output" +msgstr "" + +#: build/templates/build/detail.html:249 build/templates/build/sidebar.html:19 +msgid "Consumed Stock" +msgstr "" + +#: build/templates/build/detail.html:261 +msgid "Completed Build Outputs" +msgstr "" + +#: build/templates/build/detail.html:273 build/templates/build/sidebar.html:23 +#: company/templates/company/detail.html:229 +#: company/templates/company/manufacturer_part.html:141 +#: company/templates/company/manufacturer_part_sidebar.html:9 +#: company/templates/company/sidebar.html:39 +#: order/templates/order/po_sidebar.html:9 +#: order/templates/order/purchase_order_detail.html:84 +#: order/templates/order/return_order_detail.html:70 +#: order/templates/order/return_order_sidebar.html:7 +#: order/templates/order/sales_order_detail.html:124 +#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:217 +#: part/templates/part/part_sidebar.html:61 stock/templates/stock/item.html:110 +#: stock/templates/stock/stock_sidebar.html:23 +msgid "Attachments" +msgstr "" + +#: build/templates/build/detail.html:288 +msgid "Build Notes" +msgstr "" + +#: build/templates/build/detail.html:442 +msgid "Allocation Complete" +msgstr "" + +#: build/templates/build/detail.html:443 +msgid "All lines have been fully allocated" +msgstr "" + +#: build/templates/build/index.html:18 part/templates/part/detail.html:319 +msgid "New Build Order" +msgstr "" + +#: build/templates/build/sidebar.html:5 +msgid "Build Order Details" +msgstr "" + +#: build/templates/build/sidebar.html:8 order/serializers.py:83 +#: order/templates/order/po_sidebar.html:5 +#: order/templates/order/return_order_detail.html:18 +#: order/templates/order/so_sidebar.html:5 +#: report/templates/report/inventree_purchase_order_report.html:22 +#: report/templates/report/inventree_return_order_report.html:19 +#: report/templates/report/inventree_sales_order_report.html:22 +msgid "Line Items" +msgstr "" + +#: build/templates/build/sidebar.html:10 +msgid "Incomplete Outputs" +msgstr "" + +#: common/api.py:690 +msgid "Is Link" +msgstr "" + +#: common/api.py:698 +msgid "Is File" +msgstr "" + +#: common/api.py:740 +msgid "User does not have permission to delete this attachment" +msgstr "" + +#: common/currency.py:132 +msgid "Invalid currency code" +msgstr "" + +#: common/currency.py:134 +msgid "Duplicate currency code" +msgstr "" + +#: common/currency.py:139 +msgid "No valid currency codes provided" +msgstr "" + +#: common/currency.py:156 +msgid "No plugin" +msgstr "" + +#: common/files.py:63 +#, python-brace-format +msgid "Unsupported file format: {fmt}" +msgstr "" + +#: common/files.py:65 +msgid "Error reading file (invalid encoding)" +msgstr "" + +#: common/files.py:70 +msgid "Error reading file (invalid format)" +msgstr "" + +#: common/files.py:72 +msgid "Error reading file (incorrect dimension)" +msgstr "" + +#: common/files.py:74 +msgid "Error reading file (data could be corrupted)" +msgstr "" + +#: common/forms.py:12 +msgid "File" +msgstr "" + +#: common/forms.py:12 +msgid "Select file to upload" +msgstr "" + +#: common/forms.py:25 +msgid "{name.title()} File" +msgstr "" + +#: common/forms.py:26 +#, python-brace-format +msgid "Select {name} file to upload" +msgstr "" + +#: common/models.py:73 +msgid "Updated" +msgstr "" + +#: common/models.py:74 +msgid "Timestamp of last update" +msgstr "" + +#: common/models.py:107 +msgid "Site URL is locked by configuration" +msgstr "" + +#: common/models.py:137 +msgid "Unique project code" +msgstr "" + +#: common/models.py:144 +msgid "Project description" +msgstr "" + +#: common/models.py:153 +msgid "User or group responsible for this project" +msgstr "" + +#: common/models.py:770 +msgid "Settings key (must be unique - case insensitive)" +msgstr "" + +#: common/models.py:774 +msgid "Settings value" +msgstr "" + +#: common/models.py:826 +msgid "Chosen value is not a valid option" +msgstr "" + +#: common/models.py:842 +msgid "Value must be a boolean value" +msgstr "" + +#: common/models.py:850 +msgid "Value must be an integer value" +msgstr "" + +#: common/models.py:887 +msgid "Key string must be unique" +msgstr "" + +#: common/models.py:1119 +msgid "No group" +msgstr "" + +#: common/models.py:1218 +msgid "Restart required" +msgstr "" + +#: common/models.py:1220 +msgid "A setting has been changed which requires a server restart" +msgstr "" + +#: common/models.py:1227 +msgid "Pending migrations" +msgstr "" + +#: common/models.py:1228 +msgid "Number of pending database migrations" +msgstr "" + +#: common/models.py:1233 +msgid "Server Instance Name" +msgstr "" + +#: common/models.py:1235 +msgid "String descriptor for the server instance" +msgstr "" + +#: common/models.py:1239 +msgid "Use instance name" +msgstr "" + +#: common/models.py:1240 +msgid "Use the instance name in the title-bar" +msgstr "" + +#: common/models.py:1245 +msgid "Restrict showing `about`" +msgstr "" + +#: common/models.py:1246 +msgid "Show the `about` modal only to superusers" +msgstr "" + +#: common/models.py:1251 company/models.py:111 company/models.py:112 +msgid "Company name" +msgstr "" + +#: common/models.py:1252 +msgid "Internal company name" +msgstr "" + +#: common/models.py:1256 +msgid "Base URL" +msgstr "" + +#: common/models.py:1257 +msgid "Base URL for server instance" +msgstr "" + +#: common/models.py:1263 +msgid "Default Currency" +msgstr "" + +#: common/models.py:1264 +msgid "Select base currency for pricing calculations" +msgstr "" + +#: common/models.py:1270 +msgid "Supported Currencies" +msgstr "" + +#: common/models.py:1271 +msgid "List of supported currency codes" +msgstr "" + +#: common/models.py:1277 +msgid "Currency Update Interval" +msgstr "" + +#: common/models.py:1279 +msgid "How often to update exchange rates (set to zero to disable)" +msgstr "" + +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1607 common/models.py:1629 common/models.py:1744 +#: common/models.py:2117 +msgid "days" +msgstr "" + +#: common/models.py:1286 +msgid "Currency Update Plugin" +msgstr "" + +#: common/models.py:1287 +msgid "Currency update plugin to use" +msgstr "" + +#: common/models.py:1292 +msgid "Download from URL" +msgstr "" + +#: common/models.py:1294 +msgid "Allow download of remote images and files from external URL" +msgstr "" + +#: common/models.py:1300 +msgid "Download Size Limit" +msgstr "" + +#: common/models.py:1301 +msgid "Maximum allowable download size for remote image" +msgstr "" + +#: common/models.py:1307 +msgid "User-agent used to download from URL" +msgstr "" + +#: common/models.py:1309 +msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" +msgstr "" + +#: common/models.py:1314 +msgid "Strict URL Validation" +msgstr "" + +#: common/models.py:1315 +msgid "Require schema specification when validating URLs" +msgstr "" + +#: common/models.py:1320 +msgid "Require confirm" +msgstr "" + +#: common/models.py:1321 +msgid "Require explicit user confirmation for certain action." +msgstr "" + +#: common/models.py:1326 +msgid "Tree Depth" +msgstr "" + +#: common/models.py:1328 +msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." +msgstr "" + +#: common/models.py:1334 +msgid "Update Check Interval" +msgstr "" + +#: common/models.py:1335 +msgid "How often to check for updates (set to zero to disable)" +msgstr "" + +#: common/models.py:1341 +msgid "Automatic Backup" +msgstr "" + +#: common/models.py:1342 +msgid "Enable automatic backup of database and media files" +msgstr "" + +#: common/models.py:1347 +msgid "Auto Backup Interval" +msgstr "" + +#: common/models.py:1348 +msgid "Specify number of days between automated backup events" +msgstr "" + +#: common/models.py:1354 +msgid "Task Deletion Interval" +msgstr "" + +#: common/models.py:1356 +msgid "Background task results will be deleted after specified number of days" +msgstr "" + +#: common/models.py:1363 +msgid "Error Log Deletion Interval" +msgstr "" + +#: common/models.py:1365 +msgid "Error logs will be deleted after specified number of days" +msgstr "" + +#: common/models.py:1372 +msgid "Notification Deletion Interval" +msgstr "" + +#: common/models.py:1374 +msgid "User notifications will be deleted after specified number of days" +msgstr "" + +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 +msgid "Barcode Support" +msgstr "" + +#: common/models.py:1382 +msgid "Enable barcode scanner support in the web interface" +msgstr "" + +#: common/models.py:1387 +msgid "Barcode Input Delay" +msgstr "" + +#: common/models.py:1388 +msgid "Barcode input processing delay time" +msgstr "" + +#: common/models.py:1394 +msgid "Barcode Webcam Support" +msgstr "" + +#: common/models.py:1395 +msgid "Allow barcode scanning via webcam in browser" +msgstr "" + +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 +msgid "Part Revisions" +msgstr "" + +#: common/models.py:1407 +msgid "Enable revision field for Part" +msgstr "" + +#: common/models.py:1412 +msgid "Assembly Revision Only" +msgstr "" + +#: common/models.py:1413 +msgid "Only allow revisions for assembly parts" +msgstr "" + +#: common/models.py:1418 +msgid "Allow Deletion from Assembly" +msgstr "" + +#: common/models.py:1419 +msgid "Allow deletion of parts which are used in an assembly" +msgstr "" + +#: common/models.py:1424 +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1425 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1428 +msgid "Allow Duplicate IPN" +msgstr "" + +#: common/models.py:1429 +msgid "Allow multiple parts to share the same IPN" +msgstr "" + +#: common/models.py:1434 +msgid "Allow Editing IPN" +msgstr "" + +#: common/models.py:1435 +msgid "Allow changing the IPN value while editing a part" +msgstr "" + +#: common/models.py:1440 +msgid "Copy Part BOM Data" +msgstr "" + +#: common/models.py:1441 +msgid "Copy BOM data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Parameter Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1453 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1458 +msgid "Copy Category Parameter Templates" +msgstr "" + +#: common/models.py:1459 +msgid "Copy category parameter templates when creating a part" +msgstr "" + +#: common/models.py:1464 part/admin.py:108 part/models.py:3907 +#: report/models.py:294 report/models.py:361 report/serializers.py:90 +#: report/serializers.py:131 stock/serializers.py:232 +#: templates/js/translated/table_filters.js:139 +#: templates/js/translated/table_filters.js:772 +msgid "Template" +msgstr "" + +#: common/models.py:1465 +msgid "Parts are templates by default" +msgstr "" + +#: common/models.py:1470 part/admin.py:91 part/admin.py:425 part/models.py:1122 +#: templates/js/translated/bom.js:1639 +#: templates/js/translated/table_filters.js:330 +#: templates/js/translated/table_filters.js:726 +msgid "Assembly" +msgstr "" + +#: common/models.py:1471 +msgid "Parts can be assembled from other components by default" +msgstr "" + +#: common/models.py:1476 part/admin.py:95 part/models.py:1128 +#: templates/js/translated/table_filters.js:734 +msgid "Component" +msgstr "" + +#: common/models.py:1477 +msgid "Parts can be used as sub-components by default" +msgstr "" + +#: common/models.py:1482 part/admin.py:100 part/models.py:1140 +msgid "Purchaseable" +msgstr "" + +#: common/models.py:1483 +msgid "Parts are purchaseable by default" +msgstr "" + +#: common/models.py:1488 part/admin.py:104 part/models.py:1146 +#: templates/js/translated/table_filters.js:760 +msgid "Salable" +msgstr "" + +#: common/models.py:1489 +msgid "Parts are salable by default" +msgstr "" + +#: common/models.py:1495 +msgid "Parts are trackable by default" +msgstr "" + +#: common/models.py:1500 part/admin.py:117 part/models.py:1162 +#: part/templates/part/part_base.html:154 +#: templates/js/translated/table_filters.js:143 +#: templates/js/translated/table_filters.js:780 +msgid "Virtual" +msgstr "" + +#: common/models.py:1501 +msgid "Parts are virtual by default" +msgstr "" + +#: common/models.py:1506 +msgid "Show Import in Views" +msgstr "" + +#: common/models.py:1507 +msgid "Display the import wizard in some part views" +msgstr "" + +#: common/models.py:1512 +msgid "Show related parts" +msgstr "" + +#: common/models.py:1513 +msgid "Display related parts for a part" +msgstr "" + +#: common/models.py:1518 +msgid "Initial Stock Data" +msgstr "" + +#: common/models.py:1519 +msgid "Allow creation of initial stock when adding a new part" +msgstr "" + +#: common/models.py:1524 templates/js/translated/part.js:107 +msgid "Initial Supplier Data" +msgstr "" + +#: common/models.py:1526 +msgid "Allow creation of initial supplier data when adding a new part" +msgstr "" + +#: common/models.py:1532 +msgid "Part Name Display Format" +msgstr "" + +#: common/models.py:1533 +msgid "Format to display the part name" +msgstr "" + +#: common/models.py:1539 +msgid "Part Category Default Icon" +msgstr "" + +#: common/models.py:1540 +msgid "Part category default icon (empty means no icon)" +msgstr "" + +#: common/models.py:1544 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/models.py:1546 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1552 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1554 +msgid "Minimum number of decimal places to display when rendering pricing data" +msgstr "" + +#: common/models.py:1565 +msgid "Maximum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1567 +msgid "Maximum number of decimal places to display when rendering pricing data" +msgstr "" + +#: common/models.py:1578 +msgid "Use Supplier Pricing" +msgstr "" + +#: common/models.py:1580 +msgid "Include supplier price breaks in overall pricing calculations" +msgstr "" + +#: common/models.py:1586 +msgid "Purchase History Override" +msgstr "" + +#: common/models.py:1588 +msgid "Historical purchase order pricing overrides supplier price breaks" +msgstr "" + +#: common/models.py:1594 +msgid "Use Stock Item Pricing" +msgstr "" + +#: common/models.py:1596 +msgid "Use pricing from manually entered stock data for pricing calculations" +msgstr "" + +#: common/models.py:1602 +msgid "Stock Item Pricing Age" +msgstr "" + +#: common/models.py:1604 +msgid "Exclude stock items older than this number of days from pricing calculations" +msgstr "" + +#: common/models.py:1611 +msgid "Use Variant Pricing" +msgstr "" + +#: common/models.py:1612 +msgid "Include variant pricing in overall pricing calculations" +msgstr "" + +#: common/models.py:1617 +msgid "Active Variants Only" +msgstr "" + +#: common/models.py:1619 +msgid "Only use active variant parts for calculating variant pricing" +msgstr "" + +#: common/models.py:1625 +msgid "Pricing Rebuild Interval" +msgstr "" + +#: common/models.py:1627 +msgid "Number of days before part pricing is automatically updated" +msgstr "" + +#: common/models.py:1634 +msgid "Internal Prices" +msgstr "" + +#: common/models.py:1635 +msgid "Enable internal prices for parts" +msgstr "" + +#: common/models.py:1640 +msgid "Internal Price Override" +msgstr "" + +#: common/models.py:1642 +msgid "If available, internal prices override price range calculations" +msgstr "" + +#: common/models.py:1648 +msgid "Enable label printing" +msgstr "" + +#: common/models.py:1649 +msgid "Enable label printing from the web interface" +msgstr "" + +#: common/models.py:1654 +msgid "Label Image DPI" +msgstr "" + +#: common/models.py:1656 +msgid "DPI resolution when generating image files to supply to label printing plugins" +msgstr "" + +#: common/models.py:1662 +msgid "Enable Reports" +msgstr "" + +#: common/models.py:1663 +msgid "Enable generation of reports" +msgstr "" + +#: common/models.py:1668 templates/stats.html:25 +msgid "Debug Mode" +msgstr "" + +#: common/models.py:1669 +msgid "Generate reports in debug mode (HTML output)" +msgstr "" + +#: common/models.py:1674 +msgid "Log Report Errors" +msgstr "" + +#: common/models.py:1675 +msgid "Log errors which occur when generating reports" +msgstr "" + +#: common/models.py:1680 plugin/builtin/labels/label_sheet.py:29 +#: report/models.py:302 +msgid "Page Size" +msgstr "" + +#: common/models.py:1681 +msgid "Default page size for PDF reports" +msgstr "" + +#: common/models.py:1686 +msgid "Enable Test Reports" +msgstr "" + +#: common/models.py:1687 +msgid "Enable generation of test reports" +msgstr "" + +#: common/models.py:1692 +msgid "Attach Test Reports" +msgstr "" + +#: common/models.py:1694 +msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" +msgstr "" + +#: common/models.py:1700 +msgid "Globally Unique Serials" +msgstr "" + +#: common/models.py:1701 +msgid "Serial numbers for stock items must be globally unique" +msgstr "" + +#: common/models.py:1706 +msgid "Autofill Serial Numbers" +msgstr "" + +#: common/models.py:1707 +msgid "Autofill serial numbers in forms" +msgstr "" + +#: common/models.py:1712 +msgid "Delete Depleted Stock" +msgstr "" + +#: common/models.py:1714 +msgid "Determines default behavior when a stock item is depleted" +msgstr "" + +#: common/models.py:1720 +msgid "Batch Code Template" +msgstr "" + +#: common/models.py:1722 +msgid "Template for generating default batch codes for stock items" +msgstr "" + +#: common/models.py:1727 +msgid "Stock Expiry" +msgstr "" + +#: common/models.py:1728 +msgid "Enable stock expiry functionality" +msgstr "" + +#: common/models.py:1733 +msgid "Sell Expired Stock" +msgstr "" + +#: common/models.py:1734 +msgid "Allow sale of expired stock" +msgstr "" + +#: common/models.py:1739 +msgid "Stock Stale Time" +msgstr "" + +#: common/models.py:1741 +msgid "Number of days stock items are considered stale before expiring" +msgstr "" + +#: common/models.py:1748 +msgid "Build Expired Stock" +msgstr "" + +#: common/models.py:1749 +msgid "Allow building with expired stock" +msgstr "" + +#: common/models.py:1754 +msgid "Stock Ownership Control" +msgstr "" + +#: common/models.py:1755 +msgid "Enable ownership control over stock locations and items" +msgstr "" + +#: common/models.py:1760 +msgid "Stock Location Default Icon" +msgstr "" + +#: common/models.py:1761 +msgid "Stock location default icon (empty means no icon)" +msgstr "" + +#: common/models.py:1765 +msgid "Show Installed Stock Items" +msgstr "" + +#: common/models.py:1766 +msgid "Display installed stock items in stock tables" +msgstr "" + +#: common/models.py:1771 +msgid "Check BOM when installing items" +msgstr "" + +#: common/models.py:1773 +msgid "Installed stock items must exist in the BOM for the parent part" +msgstr "" + +#: common/models.py:1779 +msgid "Allow Out of Stock Transfer" +msgstr "" + +#: common/models.py:1781 +msgid "Allow stock items which are not in stock to be transferred between stock locations" +msgstr "" + +#: common/models.py:1787 +msgid "Build Order Reference Pattern" +msgstr "" + +#: common/models.py:1789 +msgid "Required pattern for generating Build Order reference field" +msgstr "" + +#: common/models.py:1795 common/models.py:1843 common/models.py:1865 +#: common/models.py:1901 +msgid "Require Responsible Owner" +msgstr "" + +#: common/models.py:1796 common/models.py:1844 common/models.py:1866 +#: common/models.py:1902 +msgid "A responsible owner must be assigned to each order" +msgstr "" + +#: common/models.py:1801 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1808 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1813 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1815 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1821 +msgid "Block Until Tests Pass" +msgstr "" + +#: common/models.py:1823 +msgid "Prevent build outputs from being completed until all required tests pass" +msgstr "" + +#: common/models.py:1829 +msgid "Enable Return Orders" +msgstr "" + +#: common/models.py:1830 +msgid "Enable return order functionality in the user interface" +msgstr "" + +#: common/models.py:1835 +msgid "Return Order Reference Pattern" +msgstr "" + +#: common/models.py:1837 +msgid "Required pattern for generating Return Order reference field" +msgstr "" + +#: common/models.py:1849 +msgid "Edit Completed Return Orders" +msgstr "" + +#: common/models.py:1851 +msgid "Allow editing of return orders after they have been completed" +msgstr "" + +#: common/models.py:1857 +msgid "Sales Order Reference Pattern" +msgstr "" + +#: common/models.py:1859 +msgid "Required pattern for generating Sales Order reference field" +msgstr "" + +#: common/models.py:1871 +msgid "Sales Order Default Shipment" +msgstr "" + +#: common/models.py:1872 +msgid "Enable creation of default shipment with sales orders" +msgstr "" + +#: common/models.py:1877 +msgid "Edit Completed Sales Orders" +msgstr "" + +#: common/models.py:1879 +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1885 +msgid "Mark Shipped Orders as Complete" +msgstr "" + +#: common/models.py:1887 +msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" +msgstr "" + +#: common/models.py:1893 +msgid "Purchase Order Reference Pattern" +msgstr "" + +#: common/models.py:1895 +msgid "Required pattern for generating Purchase Order reference field" +msgstr "" + +#: common/models.py:1907 +msgid "Edit Completed Purchase Orders" +msgstr "" + +#: common/models.py:1909 +msgid "Allow editing of purchase orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1915 +msgid "Auto Complete Purchase Orders" +msgstr "" + +#: common/models.py:1917 +msgid "Automatically mark purchase orders as complete when all line items are received" +msgstr "" + +#: common/models.py:1924 +msgid "Enable password forgot" +msgstr "" + +#: common/models.py:1925 +msgid "Enable password forgot function on the login pages" +msgstr "" + +#: common/models.py:1930 +msgid "Enable registration" +msgstr "" + +#: common/models.py:1931 +msgid "Enable self-registration for users on the login pages" +msgstr "" + +#: common/models.py:1936 +msgid "Enable SSO" +msgstr "" + +#: common/models.py:1937 +msgid "Enable SSO on the login pages" +msgstr "" + +#: common/models.py:1942 +msgid "Enable SSO registration" +msgstr "" + +#: common/models.py:1944 +msgid "Enable self-registration via SSO for users on the login pages" +msgstr "" + +#: common/models.py:1950 +msgid "Enable SSO group sync" +msgstr "" + +#: common/models.py:1952 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" + +#: common/models.py:1958 +msgid "SSO group key" +msgstr "" + +#: common/models.py:1960 +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" + +#: common/models.py:1966 +msgid "SSO group map" +msgstr "" + +#: common/models.py:1968 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" + +#: common/models.py:1974 +msgid "Remove groups outside of SSO" +msgstr "" + +#: common/models.py:1976 +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 "" + +#: common/models.py:1982 +msgid "Email required" +msgstr "" + +#: common/models.py:1983 +msgid "Require user to supply mail on signup" +msgstr "" + +#: common/models.py:1988 +msgid "Auto-fill SSO users" +msgstr "" + +#: common/models.py:1990 +msgid "Automatically fill out user-details from SSO account-data" +msgstr "" + +#: common/models.py:1996 +msgid "Mail twice" +msgstr "" + +#: common/models.py:1997 +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:2002 +msgid "Password twice" +msgstr "" + +#: common/models.py:2003 +msgid "On signup ask users twice for their password" +msgstr "" + +#: common/models.py:2008 +msgid "Allowed domains" +msgstr "" + +#: common/models.py:2010 +msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgstr "" + +#: common/models.py:2016 +msgid "Group on signup" +msgstr "" + +#: common/models.py:2018 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" + +#: common/models.py:2024 +msgid "Enforce MFA" +msgstr "" + +#: common/models.py:2025 +msgid "Users must use multifactor security." +msgstr "" + +#: common/models.py:2030 +msgid "Check plugins on startup" +msgstr "" + +#: common/models.py:2032 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:2040 +msgid "Check for plugin updates" +msgstr "" + +#: common/models.py:2041 +msgid "Enable periodic checks for updates to installed plugins" +msgstr "" + +#: common/models.py:2047 +msgid "Enable URL integration" +msgstr "" + +#: common/models.py:2048 +msgid "Enable plugins to add URL routes" +msgstr "" + +#: common/models.py:2054 +msgid "Enable navigation integration" +msgstr "" + +#: common/models.py:2055 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2061 +msgid "Enable app integration" +msgstr "" + +#: common/models.py:2062 +msgid "Enable plugins to add apps" +msgstr "" + +#: common/models.py:2068 +msgid "Enable schedule integration" +msgstr "" + +#: common/models.py:2069 +msgid "Enable plugins to run scheduled tasks" +msgstr "" + +#: common/models.py:2075 +msgid "Enable event integration" +msgstr "" + +#: common/models.py:2076 +msgid "Enable plugins to respond to internal events" +msgstr "" + +#: common/models.py:2082 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2083 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2088 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2090 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2096 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2098 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2104 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2106 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2112 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2114 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2121 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2122 +msgid "Display Users full names instead of usernames" +msgstr "" + +#: common/models.py:2127 +msgid "Enable Test Station Data" +msgstr "" + +#: common/models.py:2128 +msgid "Enable test station data collection for test results" +msgstr "" + +#: common/models.py:2140 common/models.py:2520 +msgid "Settings key (must be unique - case insensitive" +msgstr "" + +#: common/models.py:2183 +msgid "Hide inactive parts" +msgstr "" + +#: common/models.py:2185 +msgid "Hide inactive parts in results displayed on the homepage" +msgstr "" + +#: common/models.py:2191 +msgid "Show subscribed parts" +msgstr "" + +#: common/models.py:2192 +msgid "Show subscribed parts on the homepage" +msgstr "" + +#: common/models.py:2197 +msgid "Show subscribed categories" +msgstr "" + +#: common/models.py:2198 +msgid "Show subscribed part categories on the homepage" +msgstr "" + +#: common/models.py:2203 +msgid "Show latest parts" +msgstr "" + +#: common/models.py:2204 +msgid "Show latest parts on the homepage" +msgstr "" + +#: common/models.py:2209 +msgid "Show invalid BOMs" +msgstr "" + +#: common/models.py:2210 +msgid "Show BOMs that await validation on the homepage" +msgstr "" + +#: common/models.py:2215 +msgid "Show recent stock changes" +msgstr "" + +#: common/models.py:2216 +msgid "Show recently changed stock items on the homepage" +msgstr "" + +#: common/models.py:2221 +msgid "Show low stock" +msgstr "" + +#: common/models.py:2222 +msgid "Show low stock items on the homepage" +msgstr "" + +#: common/models.py:2227 +msgid "Show depleted stock" +msgstr "" + +#: common/models.py:2228 +msgid "Show depleted stock items on the homepage" +msgstr "" + +#: common/models.py:2233 +msgid "Show needed stock" +msgstr "" + +#: common/models.py:2234 +msgid "Show stock items needed for builds on the homepage" +msgstr "" + +#: common/models.py:2239 +msgid "Show expired stock" +msgstr "" + +#: common/models.py:2240 +msgid "Show expired stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show stale stock" +msgstr "" + +#: common/models.py:2246 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show pending builds" +msgstr "" + +#: common/models.py:2252 +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2257 +msgid "Show overdue builds" +msgstr "" + +#: common/models.py:2258 +msgid "Show overdue builds on the homepage" +msgstr "" + +#: common/models.py:2263 +msgid "Show outstanding POs" +msgstr "" + +#: common/models.py:2264 +msgid "Show outstanding POs on the homepage" +msgstr "" + +#: common/models.py:2269 +msgid "Show overdue POs" +msgstr "" + +#: common/models.py:2270 +msgid "Show overdue POs on the homepage" +msgstr "" + +#: common/models.py:2275 +msgid "Show outstanding SOs" +msgstr "" + +#: common/models.py:2276 +msgid "Show outstanding SOs on the homepage" +msgstr "" + +#: common/models.py:2281 +msgid "Show overdue SOs" +msgstr "" + +#: common/models.py:2282 +msgid "Show overdue SOs on the homepage" +msgstr "" + +#: common/models.py:2287 +msgid "Show pending SO shipments" +msgstr "" + +#: common/models.py:2288 +msgid "Show pending SO shipments on the homepage" +msgstr "" + +#: common/models.py:2293 +msgid "Show News" +msgstr "" + +#: common/models.py:2294 +msgid "Show news on the homepage" +msgstr "" + +#: common/models.py:2299 +msgid "Inline label display" +msgstr "" + +#: common/models.py:2301 +msgid "Display PDF labels in the browser, instead of downloading as a file" +msgstr "" + +#: common/models.py:2307 +msgid "Default label printer" +msgstr "" + +#: common/models.py:2309 +msgid "Configure which label printer should be selected by default" +msgstr "" + +#: common/models.py:2315 +msgid "Inline report display" +msgstr "" + +#: common/models.py:2317 +msgid "Display PDF reports in the browser, instead of downloading as a file" +msgstr "" + +#: common/models.py:2323 +msgid "Search Parts" +msgstr "" + +#: common/models.py:2324 +msgid "Display parts in search preview window" +msgstr "" + +#: common/models.py:2329 +msgid "Search Supplier Parts" +msgstr "" + +#: common/models.py:2330 +msgid "Display supplier parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Search Manufacturer Parts" +msgstr "" + +#: common/models.py:2336 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Hide Inactive Parts" +msgstr "" + +#: common/models.py:2342 +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2347 +msgid "Search Categories" +msgstr "" + +#: common/models.py:2348 +msgid "Display part categories in search preview window" +msgstr "" + +#: common/models.py:2353 +msgid "Search Stock" +msgstr "" + +#: common/models.py:2354 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/models.py:2359 +msgid "Hide Unavailable Stock Items" +msgstr "" + +#: common/models.py:2361 +msgid "Exclude stock items which are not available from the search preview window" +msgstr "" + +#: common/models.py:2367 +msgid "Search Locations" +msgstr "" + +#: common/models.py:2368 +msgid "Display stock locations in search preview window" +msgstr "" + +#: common/models.py:2373 +msgid "Search Companies" +msgstr "" + +#: common/models.py:2374 +msgid "Display companies in search preview window" +msgstr "" + +#: common/models.py:2379 +msgid "Search Build Orders" +msgstr "" + +#: common/models.py:2380 +msgid "Display build orders in search preview window" +msgstr "" + +#: common/models.py:2385 +msgid "Search Purchase Orders" +msgstr "" + +#: common/models.py:2386 +msgid "Display purchase orders in search preview window" +msgstr "" + +#: common/models.py:2391 +msgid "Exclude Inactive Purchase Orders" +msgstr "" + +#: common/models.py:2393 +msgid "Exclude inactive purchase orders from search preview window" +msgstr "" + +#: common/models.py:2399 +msgid "Search Sales Orders" +msgstr "" + +#: common/models.py:2400 +msgid "Display sales orders in search preview window" +msgstr "" + +#: common/models.py:2405 +msgid "Exclude Inactive Sales Orders" +msgstr "" + +#: common/models.py:2407 +msgid "Exclude inactive sales orders from search preview window" +msgstr "" + +#: common/models.py:2413 +msgid "Search Return Orders" +msgstr "" + +#: common/models.py:2414 +msgid "Display return orders in search preview window" +msgstr "" + +#: common/models.py:2419 +msgid "Exclude Inactive Return Orders" +msgstr "" + +#: common/models.py:2421 +msgid "Exclude inactive return orders from search preview window" +msgstr "" + +#: common/models.py:2427 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2429 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2435 +msgid "Regex Search" +msgstr "" + +#: common/models.py:2436 +msgid "Enable regular expressions in search queries" +msgstr "" + +#: common/models.py:2441 +msgid "Whole Word Search" +msgstr "" + +#: common/models.py:2442 +msgid "Search queries return results for whole word matches" +msgstr "" + +#: common/models.py:2447 +msgid "Show Quantity in Forms" +msgstr "" + +#: common/models.py:2448 +msgid "Display available part quantity in some forms" +msgstr "" + +#: common/models.py:2453 +msgid "Escape Key Closes Forms" +msgstr "" + +#: common/models.py:2454 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2459 +msgid "Fixed Navbar" +msgstr "" + +#: common/models.py:2460 +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2465 +msgid "Date Format" +msgstr "" + +#: common/models.py:2466 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2480 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2485 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2487 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2493 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2495 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2501 +msgid "Receive error reports" +msgstr "" + +#: common/models.py:2502 +msgid "Receive notifications for system errors" +msgstr "" + +#: common/models.py:2507 +msgid "Last used printing machines" +msgstr "" + +#: common/models.py:2508 +msgid "Save the last used printing machines for a user" +msgstr "" + +#: common/models.py:2528 common/models.py:2529 common/models.py:2678 +#: common/models.py:2679 common/models.py:2924 common/models.py:2925 +#: common/models.py:3251 common/models.py:3252 importer/models.py:85 +#: part/models.py:3269 part/models.py:3356 part/models.py:3430 +#: part/models.py:3458 plugin/models.py:274 plugin/models.py:275 +#: report/templates/report/inventree_test_report.html:105 +#: templates/js/translated/stock.js:3036 users/models.py:111 +msgid "User" +msgstr "" + +#: common/models.py:2551 +msgid "Price break quantity" +msgstr "" + +#: common/models.py:2558 company/serializers.py:506 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1891 +#: templates/js/translated/pricing.js:621 +#: templates/js/translated/return_order.js:740 +msgid "Price" +msgstr "" + +#: common/models.py:2559 +msgid "Unit price at specified quantity" +msgstr "" + +#: common/models.py:2655 common/models.py:2840 +msgid "Endpoint" +msgstr "" + +#: common/models.py:2656 +msgid "Endpoint at which this webhook is received" +msgstr "" + +#: common/models.py:2666 +msgid "Name for this webhook" +msgstr "" + +#: common/models.py:2670 +msgid "Is this webhook active" +msgstr "" + +#: common/models.py:2686 users/models.py:159 +msgid "Token" +msgstr "" + +#: common/models.py:2687 +msgid "Token for access" +msgstr "" + +#: common/models.py:2695 +msgid "Secret" +msgstr "" + +#: common/models.py:2696 +msgid "Shared secret for HMAC" +msgstr "" + +#: common/models.py:2804 +msgid "Message ID" +msgstr "" + +#: common/models.py:2805 +msgid "Unique identifier for this message" +msgstr "" + +#: common/models.py:2813 +msgid "Host" +msgstr "" + +#: common/models.py:2814 +msgid "Host from which this message was received" +msgstr "" + +#: common/models.py:2822 +msgid "Header" +msgstr "" + +#: common/models.py:2823 +msgid "Header of this message" +msgstr "" + +#: common/models.py:2830 +msgid "Body" +msgstr "" + +#: common/models.py:2831 +msgid "Body of this message" +msgstr "" + +#: common/models.py:2841 +msgid "Endpoint on which this message was received" +msgstr "" + +#: common/models.py:2846 +msgid "Worked on" +msgstr "" + +#: common/models.py:2847 +msgid "Was the work on this message finished?" +msgstr "" + +#: common/models.py:2973 +msgid "Id" +msgstr "" + +#: common/models.py:2975 templates/js/translated/company.js:965 +#: templates/js/translated/news.js:44 +msgid "Title" +msgstr "" + +#: common/models.py:2977 common/models.py:3235 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:1025 +#: part/templates/part/part_scheduling.html:11 +#: report/templates/report/inventree_build_order_report.html:164 +#: stock/admin.py:229 templates/js/translated/company.js:1319 +#: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 +#: templates/js/translated/part.js:2475 +#: templates/js/translated/purchase_order.js:2040 +#: templates/js/translated/purchase_order.js:2204 +#: templates/js/translated/return_order.js:779 +#: templates/js/translated/sales_order.js:1092 +#: templates/js/translated/sales_order.js:2023 +msgid "Link" +msgstr "" + +#: common/models.py:2979 templates/js/translated/news.js:60 +msgid "Published" +msgstr "" + +#: common/models.py:2981 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 +msgid "Author" +msgstr "" + +#: common/models.py:2983 templates/js/translated/news.js:52 +msgid "Summary" +msgstr "" + +#: common/models.py:2986 +msgid "Read" +msgstr "" + +#: common/models.py:2986 +msgid "Was this news item read?" +msgstr "" + +#: common/models.py:3003 company/models.py:159 part/models.py:1035 +#: 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 +#: stock/templates/stock/item_base.html:133 templates/503.html:31 +#: templates/hover_image.html:7 templates/hover_image.html:9 +#: templates/modals.html:6 +msgid "Image" +msgstr "" + +#: common/models.py:3003 +msgid "Image file" +msgstr "" + +#: common/models.py:3015 common/models.py:3219 +msgid "Target model type for this image" +msgstr "" + +#: common/models.py:3019 +msgid "Target model ID for this image" +msgstr "" + +#: common/models.py:3041 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3062 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3077 +msgid "Unit name must be a valid identifier" +msgstr "" + +#: common/models.py:3096 +msgid "Unit name" +msgstr "" + +#: common/models.py:3103 templates/InvenTree/settings/settings_staff_js.html:75 +msgid "Symbol" +msgstr "" + +#: common/models.py:3104 +msgid "Optional unit symbol" +msgstr "" + +#: common/models.py:3110 templates/InvenTree/settings/settings_staff_js.html:71 +msgid "Definition" +msgstr "" + +#: common/models.py:3111 +msgid "Unit definition" +msgstr "" + +#: common/models.py:3169 common/models.py:3226 stock/models.py:2473 +#: templates/js/translated/attachment.js:119 +#: templates/js/translated/attachment.js:345 +msgid "Attachment" +msgstr "" + +#: common/models.py:3181 +msgid "Missing file" +msgstr "" + +#: common/models.py:3182 +msgid "Missing external link" +msgstr "" + +#: common/models.py:3227 +msgid "Select file to attach" +msgstr "" + +#: common/models.py:3242 templates/js/translated/attachment.js:120 +#: templates/js/translated/attachment.js:360 +msgid "Comment" +msgstr "" + +#: common/models.py:3243 +msgid "Attachment comment" +msgstr "" + +#: common/models.py:3259 +msgid "Upload date" +msgstr "" + +#: common/models.py:3260 +msgid "Date the file was uploaded" +msgstr "" + +#: common/models.py:3264 +msgid "File size" +msgstr "" + +#: common/models.py:3264 +msgid "File size in bytes" +msgstr "" + +#: common/models.py:3302 common/serializers.py:557 +msgid "Invalid model type specified for attachment" +msgstr "" + +#: common/notifications.py:314 +#, python-brace-format +msgid "New {verbose_name}" +msgstr "" + +#: common/notifications.py:316 +msgid "A new order has been created and assigned to you" +msgstr "" + +#: common/notifications.py:322 +#, python-brace-format +msgid "{verbose_name} canceled" +msgstr "" + +#: common/notifications.py:324 +msgid "A order that is assigned to you was canceled" +msgstr "" + +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 +msgid "Items Received" +msgstr "" + +#: common/notifications.py:332 +msgid "Items have been received against a purchase order" +msgstr "" + +#: common/notifications.py:339 +msgid "Items have been received against a return order" +msgstr "" + +#: common/notifications.py:457 +msgid "Error raised by plugin" +msgstr "" + +#: common/serializers.py:375 +msgid "Is Running" +msgstr "" + +#: common/serializers.py:381 +msgid "Pending Tasks" +msgstr "" + +#: common/serializers.py:387 +msgid "Scheduled Tasks" +msgstr "" + +#: common/serializers.py:393 +msgid "Failed Tasks" +msgstr "" + +#: common/serializers.py:408 +msgid "Task ID" +msgstr "" + +#: common/serializers.py:408 +msgid "Unique task ID" +msgstr "" + +#: common/serializers.py:410 +msgid "Lock" +msgstr "" + +#: common/serializers.py:410 +msgid "Lock time" +msgstr "" + +#: common/serializers.py:412 +msgid "Task name" +msgstr "" + +#: common/serializers.py:414 +msgid "Function" +msgstr "" + +#: common/serializers.py:414 +msgid "Function name" +msgstr "" + +#: common/serializers.py:416 +msgid "Arguments" +msgstr "" + +#: common/serializers.py:416 +msgid "Task arguments" +msgstr "" + +#: common/serializers.py:419 +msgid "Keyword Arguments" +msgstr "" + +#: common/serializers.py:419 +msgid "Task keyword arguments" +msgstr "" + +#: common/serializers.py:529 +msgid "Filename" +msgstr "" + +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 +msgid "Model Type" +msgstr "" + +#: common/serializers.py:563 +msgid "User does not have permission to create or edit attachments for this model" +msgstr "" + +#: common/validators.py:33 +msgid "No attachment model type provided" +msgstr "" + +#: common/validators.py:39 +msgid "Invalid attachment model type" +msgstr "" + +#: common/validators.py:80 +msgid "Minimum places cannot be greater than maximum places" +msgstr "" + +#: common/validators.py:92 +msgid "Maximum places cannot be less than minimum places" +msgstr "" + +#: common/validators.py:103 +msgid "An empty domain is not allowed." +msgstr "" + +#: common/validators.py:105 +#, python-brace-format +msgid "Invalid domain name: {domain}" +msgstr "" + +#: common/views.py:84 order/templates/order/order_wizard/po_upload.html:51 +#: order/templates/order/purchase_order_detail.html:24 order/views.py:118 +#: part/templates/part/import_wizard/part_upload.html:58 part/views.py:109 +#: templates/patterns/wizard/upload.html:37 +msgid "Upload File" +msgstr "" + +#: common/views.py:84 order/templates/order/order_wizard/match_fields.html:52 +#: order/views.py:119 +#: part/templates/part/import_wizard/ajax_match_fields.html:45 +#: part/templates/part/import_wizard/match_fields.html:52 part/views.py:110 +#: templates/patterns/wizard/match_fields.html:51 +msgid "Match Fields" +msgstr "" + +#: common/views.py:84 +msgid "Match Items" +msgstr "" + +#: common/views.py:401 +msgid "Fields matching failed" +msgstr "" + +#: common/views.py:464 +msgid "Parts imported" +msgstr "" + +#: common/views.py:494 order/templates/order/order_wizard/match_fields.html:27 +#: order/templates/order/order_wizard/match_parts.html:19 +#: order/templates/order/order_wizard/po_upload.html:49 +#: part/templates/part/import_wizard/match_fields.html:27 +#: part/templates/part/import_wizard/match_references.html:19 +#: part/templates/part/import_wizard/part_upload.html:56 +#: templates/patterns/wizard/match_fields.html:26 +#: templates/patterns/wizard/upload.html:35 +msgid "Previous Step" +msgstr "" + +#: company/api.py:141 +msgid "Part is Active" +msgstr "" + +#: company/api.py:145 +msgid "Manufacturer is Active" +msgstr "" + +#: company/api.py:278 +msgid "Supplier Part is Active" +msgstr "" + +#: company/api.py:282 +msgid "Internal Part is Active" +msgstr "" + +#: company/api.py:286 +msgid "Supplier is Active" +msgstr "" + +#: company/models.py:100 company/models.py:371 +#: company/templates/company/company_base.html:8 +#: company/templates/company/company_base.html:12 stock/api.py:814 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 +msgid "Company" +msgstr "" + +#: company/models.py:101 company/views.py:51 +#: templates/js/translated/search.js:192 +msgid "Companies" +msgstr "" + +#: company/models.py:117 +msgid "Company description" +msgstr "" + +#: company/models.py:118 +msgid "Description of the company" +msgstr "" + +#: company/models.py:123 company/templates/company/company_base.html:106 +#: templates/InvenTree/settings/plugin_settings.html:54 +#: templates/js/translated/company.js:532 +msgid "Website" +msgstr "" + +#: company/models.py:123 +msgid "Company website URL" +msgstr "" + +#: company/models.py:128 +msgid "Phone number" +msgstr "" + +#: company/models.py:130 +msgid "Contact phone number" +msgstr "" + +#: company/models.py:137 +msgid "Contact email address" +msgstr "" + +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 +#: order/templates/order/return_order_base.html:174 +#: order/templates/order/sales_order_base.html:218 +msgid "Contact" +msgstr "" + +#: company/models.py:144 +msgid "Point of contact" +msgstr "" + +#: company/models.py:150 +msgid "Link to external company information" +msgstr "" + +#: company/models.py:163 +msgid "Is this company active?" +msgstr "" + +#: company/models.py:168 +msgid "Is customer" +msgstr "" + +#: company/models.py:169 +msgid "Do you sell items to this company?" +msgstr "" + +#: company/models.py:174 +msgid "Is supplier" +msgstr "" + +#: company/models.py:175 +msgid "Do you purchase items from this company?" +msgstr "" + +#: company/models.py:180 +msgid "Is manufacturer" +msgstr "" + +#: company/models.py:181 +msgid "Does this company manufacture parts?" +msgstr "" + +#: company/models.py:189 +msgid "Default currency used for this company" +msgstr "" + +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + +#: company/models.py:372 +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" +msgstr "" + +#: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 +msgid "Primary address" +msgstr "" + +#: company/models.py:385 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:390 templates/js/translated/company.js:914 +#: templates/js/translated/company.js:971 +msgid "Line 1" +msgstr "" + +#: company/models.py:391 +msgid "Address line 1" +msgstr "" + +#: company/models.py:397 templates/js/translated/company.js:915 +#: templates/js/translated/company.js:977 +msgid "Line 2" +msgstr "" + +#: company/models.py:398 +msgid "Address line 2" +msgstr "" + +#: company/models.py:404 company/models.py:405 +#: templates/js/translated/company.js:983 +msgid "Postal code" +msgstr "" + +#: company/models.py:411 +msgid "City/Region" +msgstr "" + +#: company/models.py:412 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:418 +msgid "State/Province" +msgstr "" + +#: company/models.py:419 +msgid "State or province" +msgstr "" + +#: company/models.py:425 templates/js/translated/company.js:1001 +msgid "Country" +msgstr "" + +#: company/models.py:426 +msgid "Address country" +msgstr "" + +#: company/models.py:432 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:433 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:439 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:440 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:447 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:469 company/models.py:581 company/models.py:799 +#: company/templates/company/manufacturer_part.html:7 +#: company/templates/company/manufacturer_part.html:24 +#: stock/templates/stock/item_base.html:217 +msgid "Manufacturer Part" +msgstr "" + +#: company/models.py:481 company/models.py:767 stock/models.py:765 +#: stock/serializers.py:444 stock/templates/stock/item_base.html:142 +#: templates/js/translated/bom.js:622 +msgid "Base Part" +msgstr "" + +#: company/models.py:483 company/models.py:769 +msgid "Select part" +msgstr "" + +#: company/models.py:492 company/templates/company/company_base.html:82 +#: company/templates/company/manufacturer_part.html:90 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 +#: stock/templates/stock/item_base.html:207 +#: templates/js/translated/company.js:507 +#: templates/js/translated/company.js:1118 +#: templates/js/translated/company.js:1296 +#: templates/js/translated/company.js:1611 +#: templates/js/translated/table_filters.js:805 +msgid "Manufacturer" +msgstr "" + +#: company/models.py:493 +msgid "Select manufacturer" +msgstr "" + +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:519 +#: part/serializers.py:553 templates/js/translated/company.js:351 +#: templates/js/translated/company.js:1117 +#: templates/js/translated/company.js:1312 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1806 +#: templates/js/translated/purchase_order.js:1851 +#: templates/js/translated/purchase_order.js:2053 +msgid "MPN" +msgstr "" + +#: company/models.py:507 +msgid "URL for external manufacturer part link" +msgstr "" + +#: company/models.py:516 +msgid "Manufacturer part description" +msgstr "" + +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 +msgid "Parameter name" +msgstr "" + +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2465 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1498 +#: templates/js/translated/stock.js:1522 +msgid "Value" +msgstr "" + +#: company/models.py:595 +msgid "Parameter value" +msgstr "" + +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1115 part/models.py:3733 +#: part/templates/part/part_base.html:293 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1517 +#: templates/js/translated/part.js:1621 templates/js/translated/part.js:2376 +msgid "Units" +msgstr "" + +#: company/models.py:603 +msgid "Parameter units" +msgstr "" + +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:776 stock/templates/stock/item_base.html:233 +#: templates/js/translated/build.js:1054 +#: templates/js/translated/company.js:1600 +#: templates/js/translated/purchase_order.js:752 +#: templates/js/translated/stock.js:2280 +msgid "Supplier Part" +msgstr "" + +#: company/models.py:707 +msgid "Pack units must be compatible with the base part units" +msgstr "" + +#: company/models.py:714 +msgid "Pack units must be greater than zero" +msgstr "" + +#: company/models.py:728 +msgid "Linked manufacturer part must reference the same base part" +msgstr "" + +#: company/models.py:777 company/templates/company/company_base.html:87 +#: company/templates/company/supplier_part.html:129 order/models.py:486 +#: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 +#: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 +#: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 +#: templates/email/overdue_purchase_order.html:16 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:511 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1774 +#: templates/js/translated/pricing.js:498 +#: templates/js/translated/purchase_order.js:1689 +#: templates/js/translated/table_filters.js:809 +msgid "Supplier" +msgstr "" + +#: company/models.py:778 +msgid "Select supplier" +msgstr "" + +#: company/models.py:784 part/serializers.py:538 +msgid "Supplier stock keeping unit" +msgstr "" + +#: company/models.py:790 +msgid "Is this supplier part active?" +msgstr "" + +#: company/models.py:800 +msgid "Select manufacturer part" +msgstr "" + +#: company/models.py:807 +msgid "URL for external supplier part link" +msgstr "" + +#: company/models.py:816 +msgid "Supplier part description" +msgstr "" + +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4250 part/templates/part/upload_bom.html:59 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:32 +#: 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:772 +msgid "Note" +msgstr "" + +#: company/models.py:832 part/models.py:2079 +msgid "base cost" +msgstr "" + +#: company/models.py:833 part/models.py:2080 +msgid "Minimum charge (e.g. stocking fee)" +msgstr "" + +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:796 stock/serializers.py:1545 +#: stock/templates/stock/item_base.html:240 +#: templates/js/translated/company.js:1646 +#: templates/js/translated/stock.js:2424 +msgid "Packaging" +msgstr "" + +#: company/models.py:841 +msgid "Part packaging" +msgstr "" + +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1827 templates/js/translated/part.js:1883 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:841 +#: templates/js/translated/purchase_order.js:1103 +#: templates/js/translated/purchase_order.js:2084 +#: templates/js/translated/purchase_order.js:2101 +msgid "Pack Quantity" +msgstr "" + +#: company/models.py:848 +msgid "Total quantity supplied in a single pack. Leave empty for single items." +msgstr "" + +#: company/models.py:867 part/models.py:2086 +msgid "multiple" +msgstr "" + +#: company/models.py:868 +msgid "Order multiple" +msgstr "" + +#: company/models.py:880 +msgid "Quantity available from supplier" +msgstr "" + +#: company/models.py:886 +msgid "Availability Updated" +msgstr "" + +#: company/models.py:887 +msgid "Date of last update of availability data" +msgstr "" + +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 +msgid "Default currency used for this supplier" +msgstr "" + +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:386 part/admin.py:126 part/serializers.py:886 +#: part/templates/part/part_base.html:197 +#: templates/js/translated/company.js:1689 +#: templates/js/translated/table_filters.js:355 +msgid "In Stock" +msgstr "" + +#: company/templates/company/company_base.html:16 +#: part/templates/part/part_base.html:146 +#: templates/js/translated/company.js:1287 +#: templates/js/translated/company.js:1575 +#: templates/js/translated/model_renderers.js:312 +#: templates/js/translated/part.js:816 templates/js/translated/part.js:1224 +msgid "Inactive" +msgstr "" + +#: company/templates/company/company_base.html:27 +#: templates/js/translated/purchase_order.js:242 +msgid "Create Purchase Order" +msgstr "" + +#: company/templates/company/company_base.html:33 +msgid "Company actions" +msgstr "" + +#: company/templates/company/company_base.html:38 +msgid "Edit company information" +msgstr "" + +#: company/templates/company/company_base.html:39 +#: templates/js/translated/company.js:445 +msgid "Edit Company" +msgstr "" + +#: company/templates/company/company_base.html:43 +msgid "Delete company" +msgstr "" + +#: company/templates/company/company_base.html:44 +#: company/templates/company/company_base.html:168 +msgid "Delete Company" +msgstr "" + +#: company/templates/company/company_base.html:53 +#: company/templates/company/manufacturer_part.html:51 +#: company/templates/company/supplier_part.html:83 +#: part/templates/part/part_thumb.html:20 +#: report/templates/report/inventree_build_order_report.html:98 +#: report/templates/report/inventree_purchase_order_report.html:40 +#: report/templates/report/inventree_sales_order_report.html:40 +#: report/templates/report/inventree_test_report.html:84 +#: report/templates/report/inventree_test_report.html:162 +msgid "Part image" +msgstr "" + +#: company/templates/company/company_base.html:61 +#: part/templates/part/part_thumb.html:12 +msgid "Upload new image" +msgstr "" + +#: company/templates/company/company_base.html:64 +#: part/templates/part/part_thumb.html:14 +msgid "Download image from URL" +msgstr "" + +#: company/templates/company/company_base.html:66 +#: part/templates/part/part_thumb.html:16 +msgid "Delete image" +msgstr "" + +#: company/templates/company/company_base.html:92 order/models.py:938 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:818 +#: stock/models.py:819 stock/serializers.py:1295 +#: stock/templates/stock/item_base.html:405 +#: templates/email/overdue_sales_order.html:16 +#: templates/js/translated/company.js:503 +#: templates/js/translated/return_order.js:295 +#: templates/js/translated/sales_order.js:820 +#: templates/js/translated/stock.js:2959 +#: templates/js/translated/table_filters.js:813 +msgid "Customer" +msgstr "" + +#: company/templates/company/company_base.html:117 +msgid "Uses default currency" +msgstr "" + +#: company/templates/company/company_base.html:131 +msgid "Phone" +msgstr "" + +#: company/templates/company/company_base.html:211 +#: part/templates/part/part_base.html:536 +msgid "Remove Image" +msgstr "" + +#: company/templates/company/company_base.html:212 +msgid "Remove associated image from this company" +msgstr "" + +#: company/templates/company/company_base.html:214 +#: part/templates/part/part_base.html:539 +#: templates/InvenTree/settings/user.html:88 +#: templates/InvenTree/settings/user_sso.html:43 +msgid "Remove" +msgstr "" + +#: company/templates/company/company_base.html:243 +#: part/templates/part/part_base.html:568 +msgid "Upload Image" +msgstr "" + +#: company/templates/company/company_base.html:258 +#: part/templates/part/part_base.html:622 +msgid "Download Image" +msgstr "" + +#: company/templates/company/detail.html:15 +#: company/templates/company/manufacturer_part_sidebar.html:7 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 +msgid "Supplier Parts" +msgstr "" + +#: company/templates/company/detail.html:19 +msgid "Create new supplier part" +msgstr "" + +#: company/templates/company/detail.html:20 +#: company/templates/company/manufacturer_part.html:123 +#: part/templates/part/detail.html:356 +msgid "New Supplier Part" +msgstr "" + +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 +msgid "Manufacturer Parts" +msgstr "" + +#: company/templates/company/detail.html:45 +msgid "Create new manufacturer part" +msgstr "" + +#: company/templates/company/detail.html:46 part/templates/part/detail.html:376 +msgid "New Manufacturer Part" +msgstr "" + +#: company/templates/company/detail.html:65 +msgid "Supplier Stock" +msgstr "" + +#: company/templates/company/detail.html:75 +#: company/templates/company/sidebar.html:12 +#: company/templates/company/supplier_part_sidebar.html:7 +#: order/templates/order/order_base.html:13 +#: order/templates/order/purchase_orders.html:8 +#: order/templates/order/purchase_orders.html:12 +#: part/templates/part/detail.html:106 part/templates/part/part_sidebar.html:35 +#: templates/InvenTree/index.html:227 templates/InvenTree/search.html:199 +#: templates/InvenTree/settings/sidebar.html:57 +#: templates/js/translated/search.js:205 templates/navbar.html:50 +#: users/models.py:208 +msgid "Purchase Orders" +msgstr "" + +#: company/templates/company/detail.html:79 +#: order/templates/order/purchase_orders.html:17 +msgid "Create new purchase order" +msgstr "" + +#: company/templates/company/detail.html:80 +#: order/templates/order/purchase_orders.html:18 +msgid "New Purchase Order" +msgstr "" + +#: company/templates/company/detail.html:101 +#: company/templates/company/sidebar.html:21 +#: order/templates/order/sales_order_base.html:13 +#: order/templates/order/sales_orders.html:8 +#: order/templates/order/sales_orders.html:15 +#: part/templates/part/detail.html:127 part/templates/part/part_sidebar.html:39 +#: templates/InvenTree/index.html:259 templates/InvenTree/search.html:219 +#: templates/InvenTree/settings/sidebar.html:59 +#: templates/js/translated/search.js:219 templates/navbar.html:62 +#: users/models.py:209 +msgid "Sales Orders" +msgstr "" + +#: company/templates/company/detail.html:105 +#: order/templates/order/sales_orders.html:20 +msgid "Create new sales order" +msgstr "" + +#: company/templates/company/detail.html:106 +#: order/templates/order/sales_orders.html:21 +msgid "New Sales Order" +msgstr "" + +#: company/templates/company/detail.html:126 +msgid "Assigned Stock" +msgstr "" + +#: company/templates/company/detail.html:142 +#: company/templates/company/sidebar.html:29 +#: order/templates/order/return_order_base.html:13 +#: order/templates/order/return_orders.html:8 +#: order/templates/order/return_orders.html:15 +#: templates/InvenTree/settings/sidebar.html:61 +#: templates/js/translated/search.js:232 templates/navbar.html:65 +#: users/models.py:210 +msgid "Return Orders" +msgstr "" + +#: company/templates/company/detail.html:146 +#: order/templates/order/return_orders.html:20 +msgid "Create new return order" +msgstr "" + +#: company/templates/company/detail.html:147 +#: order/templates/order/return_orders.html:21 +msgid "New Return Order" +msgstr "" + +#: company/templates/company/detail.html:168 +msgid "Company Notes" +msgstr "" + +#: company/templates/company/detail.html:183 +msgid "Company Contacts" +msgstr "" + +#: company/templates/company/detail.html:187 +#: company/templates/company/detail.html:188 +msgid "Add Contact" +msgstr "" + +#: company/templates/company/detail.html:206 +msgid "Company addresses" +msgstr "" + +#: company/templates/company/detail.html:210 +#: company/templates/company/detail.html:211 +msgid "Add Address" +msgstr "" + +#: company/templates/company/manufacturer_part.html:15 company/views.py:37 +#: templates/InvenTree/search.html:180 templates/navbar.html:49 +msgid "Manufacturers" +msgstr "" + +#: company/templates/company/manufacturer_part.html:35 +#: company/templates/company/supplier_part.html:227 +#: part/templates/part/detail.html:109 part/templates/part/part_base.html:83 +msgid "Order part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:39 +#: templates/js/translated/company.js:1343 +msgid "Edit manufacturer part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:43 +#: templates/js/translated/company.js:1344 +msgid "Delete manufacturer part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:65 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:527 +msgid "Internal Part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:95 +msgid "No manufacturer information available" +msgstr "" + +#: company/templates/company/manufacturer_part.html:119 +#: company/templates/company/supplier_part.html:15 company/views.py:31 +#: part/admin.py:122 part/serializers.py:892 +#: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 +#: templates/navbar.html:48 +msgid "Suppliers" +msgstr "" + +#: company/templates/company/manufacturer_part.html:156 +#: company/templates/company/manufacturer_part_sidebar.html:5 +#: part/templates/part/category_sidebar.html:20 +#: part/templates/part/detail.html:195 part/templates/part/part_sidebar.html:8 +msgid "Parameters" +msgstr "" + +#: company/templates/company/manufacturer_part.html:160 +#: part/templates/part/detail.html:200 +#: templates/InvenTree/settings/category.html:12 +#: templates/InvenTree/settings/part_parameters.html:24 +msgid "New Parameter" +msgstr "" + +#: company/templates/company/manufacturer_part.html:196 +#: templates/js/translated/part.js:1428 +msgid "Add Parameter" +msgstr "" + +#: company/templates/company/sidebar.html:6 +msgid "Manufactured Parts" +msgstr "" + +#: company/templates/company/sidebar.html:10 +msgid "Supplied Parts" +msgstr "" + +#: company/templates/company/sidebar.html:16 +msgid "Supplied Stock Items" +msgstr "" + +#: company/templates/company/sidebar.html:25 +msgid "Assigned Stock Items" +msgstr "" + +#: company/templates/company/sidebar.html:33 +msgid "Contacts" +msgstr "" + +#: company/templates/company/supplier_part.html:50 +#: templates/js/translated/company.js:1526 +msgid "Supplier part actions" +msgstr "" + +#: company/templates/company/supplier_part.html:55 +#: company/templates/company/supplier_part.html:56 +#: company/templates/company/supplier_part.html:228 +#: part/templates/part/detail.html:110 +msgid "Order Part" +msgstr "" + +#: company/templates/company/supplier_part.html:60 +#: company/templates/company/supplier_part.html:61 +msgid "Update Availability" +msgstr "" + +#: company/templates/company/supplier_part.html:63 +#: company/templates/company/supplier_part.html:64 +#: templates/js/translated/company.js:294 +msgid "Edit Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:68 +#: company/templates/company/supplier_part.html:69 +#: templates/js/translated/company.js:269 +msgid "Duplicate Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:73 +msgid "Delete Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:74 +msgid "Delete Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:133 +msgid "No supplier information available" +msgstr "" + +#: company/templates/company/supplier_part.html:139 order/serializers.py:516 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1792 +#: templates/js/translated/pricing.js:510 +#: templates/js/translated/purchase_order.js:1850 +#: templates/js/translated/purchase_order.js:2028 +msgid "SKU" +msgstr "" + +#: company/templates/company/supplier_part.html:206 +msgid "Supplier Part Stock" +msgstr "" + +#: company/templates/company/supplier_part.html:209 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:207 +msgid "Create new stock item" +msgstr "" + +#: company/templates/company/supplier_part.html:210 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:208 +#: templates/js/translated/stock.js:537 +msgid "New Stock Item" +msgstr "" + +#: company/templates/company/supplier_part.html:223 +msgid "Supplier Part Orders" +msgstr "" + +#: company/templates/company/supplier_part.html:246 +msgid "Pricing Information" +msgstr "" + +#: company/templates/company/supplier_part.html:251 +#: templates/js/translated/company.js:398 +#: templates/js/translated/pricing.js:684 +msgid "Add Price Break" +msgstr "" + +#: company/templates/company/supplier_part.html:276 +msgid "Supplier Part QR Code" +msgstr "" + +#: company/templates/company/supplier_part.html:287 +msgid "Link Barcode to Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:359 +msgid "Update Part Availability" +msgstr "" + +#: company/templates/company/supplier_part_sidebar.html:5 +#: part/serializers.py:890 part/stocktake.py:224 +#: part/templates/part/category.html:183 +#: part/templates/part/category_sidebar.html:17 stock/admin.py:68 +#: stock/serializers.py:980 stock/serializers.py:1158 +#: stock/templates/stock/location.html:170 +#: stock/templates/stock/location.html:191 +#: stock/templates/stock/location.html:203 +#: stock/templates/stock/location_sidebar.html:7 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1066 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 +#: users/models.py:206 +msgid "Stock Items" +msgstr "" + +#: company/templates/company/supplier_part_sidebar.html:9 +msgid "Supplier Part Pricing" +msgstr "" + +#: company/views.py:32 +msgid "New Supplier" +msgstr "" + +#: company/views.py:38 +msgid "New Manufacturer" +msgstr "" + +#: company/views.py:43 templates/InvenTree/search.html:210 +#: templates/navbar.html:60 +msgid "Customers" +msgstr "" + +#: company/views.py:44 +msgid "New Customer" +msgstr "" + +#: company/views.py:52 +msgid "New Company" +msgstr "" + +#: generic/states/tests.py:18 order/status_codes.py:13 +msgid "Placed" +msgstr "" + +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3913 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:215 +msgid "Copies" +msgstr "" + +#: machine/machine_types/label_printer.py:216 +msgid "Number of copies to print for each label" +msgstr "" + +#: machine/machine_types/label_printer.py:231 +msgid "Connected" +msgstr "" + +#: machine/machine_types/label_printer.py:232 order/api.py:1388 +#: templates/js/translated/sales_order.js:1078 +msgid "Unknown" +msgstr "" + +#: machine/machine_types/label_printer.py:233 +msgid "Printing" +msgstr "" + +#: machine/machine_types/label_printer.py:234 +msgid "No media" +msgstr "" + +#: machine/machine_types/label_printer.py:235 +msgid "Paper jam" +msgstr "" + +#: machine/machine_types/label_printer.py:236 +msgid "Disconnected" +msgstr "" + +#: machine/machine_types/label_printer.py:243 +msgid "Label Printer" +msgstr "" + +#: machine/machine_types/label_printer.py:244 +msgid "Directly print labels for various items." +msgstr "" + +#: machine/machine_types/label_printer.py:250 +msgid "Printer Location" +msgstr "" + +#: machine/machine_types/label_printer.py:251 +msgid "Scope the printer to a specific location" +msgstr "" + +#: machine/models.py:25 +msgid "Name of machine" +msgstr "" + +#: machine/models.py:29 +msgid "Machine Type" +msgstr "" + +#: machine/models.py:29 +msgid "Type of machine" +msgstr "" + +#: machine/models.py:34 machine/models.py:146 +msgid "Driver" +msgstr "" + +#: machine/models.py:35 +msgid "Driver used for the machine" +msgstr "" + +#: machine/models.py:39 +msgid "Machines can be disabled" +msgstr "" + +#: machine/models.py:95 +msgid "Driver available" +msgstr "" + +#: machine/models.py:100 +msgid "No errors" +msgstr "" + +#: machine/models.py:105 +msgid "Initialized" +msgstr "" + +#: machine/models.py:117 +msgid "Machine status" +msgstr "" + +#: machine/models.py:145 +msgid "Machine" +msgstr "" + +#: machine/models.py:151 +msgid "Machine Config" +msgstr "" + +#: machine/models.py:156 +msgid "Config type" +msgstr "" + +#: order/admin.py:30 order/models.py:90 +#: report/templates/report/inventree_purchase_order_report.html:31 +#: report/templates/report/inventree_sales_order_report.html:31 +#: templates/js/translated/order.js:327 +#: templates/js/translated/purchase_order.js:2125 +#: templates/js/translated/sales_order.js:1883 +msgid "Total Price" +msgstr "" + +#: order/api.py:149 order/serializers.py:94 +#: order/templates/order/order_base.html:118 +#: order/templates/order/return_order_base.html:113 +#: order/templates/order/sales_order_base.html:122 +msgid "Order Status" +msgstr "" + +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 +msgid "Has Pricing" +msgstr "" + +#: order/api.py:228 +msgid "No matching purchase order found" +msgstr "" + +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 +#: templates/js/translated/sales_order.js:1524 +msgid "Order" +msgstr "" + +#: order/api.py:421 order/api.py:776 +msgid "Order Complete" +msgstr "" + +#: order/api.py:444 +msgid "Order Pending" +msgstr "" + +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 +#: order/templates/order/order_base.html:18 +#: report/templates/report/inventree_purchase_order_report.html:14 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 +#: templates/email/overdue_purchase_order.html:15 +#: templates/js/translated/part.js:1751 templates/js/translated/pricing.js:804 +#: templates/js/translated/purchase_order.js:168 +#: templates/js/translated/purchase_order.js:753 +#: templates/js/translated/purchase_order.js:1673 +#: templates/js/translated/stock.js:2260 templates/js/translated/stock.js:2907 +msgid "Purchase Order" +msgstr "" + +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 +#: order/templates/order/return_order_base.html:28 +#: report/templates/report/inventree_return_order_report.html:13 +#: templates/js/translated/return_order.js:280 +#: templates/js/translated/stock.js:2941 +msgid "Return Order" +msgstr "" + +#: order/models.py:91 +msgid "Total price for this order" +msgstr "" + +#: order/models.py:96 order/serializers.py:72 +msgid "Order Currency" +msgstr "" + +#: order/models.py:99 order/serializers.py:73 +msgid "Currency for this order (leave blank to use company default)" +msgstr "" + +#: order/models.py:247 +msgid "Contact does not match selected company" +msgstr "" + +#: order/models.py:290 +msgid "Order description (optional)" +msgstr "" + +#: order/models.py:299 +msgid "Select project code for this order" +msgstr "" + +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +msgid "Link to external page" +msgstr "" + +#: order/models.py:311 +msgid "Expected date for order delivery. Order will be overdue after this date." +msgstr "" + +#: order/models.py:325 +msgid "Created By" +msgstr "" + +#: order/models.py:333 +msgid "User or group responsible for this order" +msgstr "" + +#: order/models.py:344 +msgid "Point of contact for this order" +msgstr "" + +#: order/models.py:354 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:464 order/models.py:927 +msgid "Order reference" +msgstr "" + +#: order/models.py:472 order/models.py:951 +msgid "Purchase order status" +msgstr "" + +#: order/models.py:487 +msgid "Company from which the items are being ordered" +msgstr "" + +#: order/models.py:498 order/templates/order/order_base.html:148 +#: templates/js/translated/purchase_order.js:1702 +msgid "Supplier Reference" +msgstr "" + +#: order/models.py:499 +msgid "Supplier order reference code" +msgstr "" + +#: order/models.py:508 +msgid "received by" +msgstr "" + +#: order/models.py:514 order/models.py:2084 +msgid "Issue Date" +msgstr "" + +#: order/models.py:515 order/models.py:2085 +msgid "Date order was issued" +msgstr "" + +#: order/models.py:522 order/models.py:2092 +msgid "Date order was completed" +msgstr "" + +#: order/models.py:566 +msgid "Part supplier must match PO supplier" +msgstr "" + +#: order/models.py:760 +msgid "Quantity must be a positive number" +msgstr "" + +#: order/models.py:939 +msgid "Company to which the items are being sold" +msgstr "" + +#: order/models.py:962 order/models.py:2077 +msgid "Customer Reference " +msgstr "" + +#: order/models.py:963 order/models.py:2078 +msgid "Customer order reference code" +msgstr "" + +#: order/models.py:967 order/models.py:1687 +#: templates/js/translated/sales_order.js:879 +#: templates/js/translated/sales_order.js:1060 +msgid "Shipment Date" +msgstr "" + +#: order/models.py:976 +msgid "shipped by" +msgstr "" + +#: order/models.py:1025 +msgid "Order is already complete" +msgstr "" + +#: order/models.py:1028 +msgid "Order is already cancelled" +msgstr "" + +#: order/models.py:1032 +msgid "Only an open order can be marked as complete" +msgstr "" + +#: order/models.py:1036 +msgid "Order cannot be completed as there are incomplete shipments" +msgstr "" + +#: order/models.py:1041 +msgid "Order cannot be completed as there are incomplete line items" +msgstr "" + +#: order/models.py:1273 +msgid "Item quantity" +msgstr "" + +#: order/models.py:1290 +msgid "Line item reference" +msgstr "" + +#: order/models.py:1297 +msgid "Line item notes" +msgstr "" + +#: order/models.py:1309 +msgid "Target date for this line item (leave blank to use the target date from the order)" +msgstr "" + +#: order/models.py:1330 +msgid "Line item description (optional)" +msgstr "" + +#: order/models.py:1336 +msgid "Context" +msgstr "" + +#: order/models.py:1337 +msgid "Additional context for this line" +msgstr "" + +#: order/models.py:1347 +msgid "Unit price" +msgstr "" + +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 +msgid "Supplier part must match supplier" +msgstr "" + +#: order/models.py:1392 +msgid "deleted" +msgstr "" + +#: order/models.py:1420 +msgid "Supplier part" +msgstr "" + +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1875 templates/js/translated/part.js:1907 +#: templates/js/translated/purchase_order.js:1306 +#: templates/js/translated/purchase_order.js:2169 +#: templates/js/translated/return_order.js:763 +#: templates/js/translated/table_filters.js:120 +#: templates/js/translated/table_filters.js:602 +msgid "Received" +msgstr "" + +#: order/models.py:1428 +msgid "Number of items received" +msgstr "" + +#: order/models.py:1436 stock/models.py:937 stock/serializers.py:606 +#: stock/templates/stock/item_base.html:183 +#: templates/js/translated/stock.js:2311 +msgid "Purchase Price" +msgstr "" + +#: order/models.py:1437 +msgid "Unit purchase price" +msgstr "" + +#: order/models.py:1452 +msgid "Where does the Purchaser want this item to be stored?" +msgstr "" + +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 +msgid "Virtual part cannot be assigned to a sales order" +msgstr "" + +#: order/models.py:1558 +msgid "Only salable parts can be assigned to a sales order" +msgstr "" + +#: order/models.py:1584 part/templates/part/part_pricing.html:107 +#: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 +msgid "Sale Price" +msgstr "" + +#: order/models.py:1585 +msgid "Unit sale price" +msgstr "" + +#: order/models.py:1594 order/status_codes.py:43 +#: templates/js/translated/sales_order.js:1559 +#: templates/js/translated/sales_order.js:1680 +#: templates/js/translated/sales_order.js:1993 +msgid "Shipped" +msgstr "" + +#: order/models.py:1595 +msgid "Shipped quantity" +msgstr "" + +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 +msgid "Date of shipment" +msgstr "" + +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" +msgstr "" + +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" +msgstr "" + +#: order/models.py:1704 +msgid "User who checked this shipment" +msgstr "" + +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1399 +#: order/serializers.py:1509 templates/js/translated/model_renderers.js:454 +msgid "Shipment" +msgstr "" + +#: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 +msgid "Invoice Number" +msgstr "" + +#: order/models.py:1729 +msgid "Reference number for associated invoice" +msgstr "" + +#: order/models.py:1749 +msgid "Shipment has already been sent" +msgstr "" + +#: order/models.py:1752 +msgid "Shipment has no allocated stock items" +msgstr "" + +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 +msgid "Stock item has not been assigned" +msgstr "" + +#: order/models.py:1889 +msgid "Cannot allocate stock item to a line with a different part" +msgstr "" + +#: order/models.py:1892 +msgid "Cannot allocate stock to a line without a part" +msgstr "" + +#: order/models.py:1895 +msgid "Allocation quantity cannot exceed stock quantity" +msgstr "" + +#: order/models.py:1914 order/serializers.py:1276 +msgid "Quantity must be 1 for serialized stock item" +msgstr "" + +#: order/models.py:1917 +msgid "Sales order does not match shipment" +msgstr "" + +#: order/models.py:1918 plugin/base/barcodes/api.py:481 +msgid "Shipment does not match sales order" +msgstr "" + +#: order/models.py:1926 +msgid "Line" +msgstr "" + +#: order/models.py:1935 +msgid "Sales order shipment reference" +msgstr "" + +#: order/models.py:1948 order/models.py:2266 +#: templates/js/translated/return_order.js:721 +msgid "Item" +msgstr "" + +#: order/models.py:1949 +msgid "Select stock item to allocate" +msgstr "" + +#: order/models.py:1958 +msgid "Enter stock allocation quantity" +msgstr "" + +#: order/models.py:2047 +msgid "Return Order reference" +msgstr "" + +#: order/models.py:2059 +msgid "Company from which items are being returned" +msgstr "" + +#: order/models.py:2071 +msgid "Return order status" +msgstr "" + +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 +msgid "Only serialized items can be assigned to a Return Order" +msgstr "" + +#: order/models.py:2267 +msgid "Select item to return from customer" +msgstr "" + +#: order/models.py:2273 +msgid "Received Date" +msgstr "" + +#: order/models.py:2274 +msgid "The date this this return item was received" +msgstr "" + +#: order/models.py:2285 templates/js/translated/return_order.js:732 +#: templates/js/translated/table_filters.js:123 +msgid "Outcome" +msgstr "" + +#: order/models.py:2286 +msgid "Outcome for this line item" +msgstr "" + +#: order/models.py:2293 +msgid "Cost associated with return or repair for this line item" +msgstr "" + +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:87 +msgid "Completed Lines" +msgstr "" + +#: order/serializers.py:306 +msgid "Order cannot be cancelled" +msgstr "" + +#: order/serializers.py:321 order/serializers.py:1292 +msgid "Allow order to be closed with incomplete line items" +msgstr "" + +#: order/serializers.py:331 order/serializers.py:1302 +msgid "Order has incomplete line items" +msgstr "" + +#: order/serializers.py:469 +msgid "Order is not open" +msgstr "" + +#: order/serializers.py:490 +msgid "Auto Pricing" +msgstr "" + +#: order/serializers.py:492 +msgid "Automatically calculate purchase price based on supplier part data" +msgstr "" + +#: order/serializers.py:502 +msgid "Purchase price currency" +msgstr "" + +#: order/serializers.py:508 +msgid "Merge Items" +msgstr "" + +#: order/serializers.py:510 +msgid "Merge items with the same part, destination and target date into one line item" +msgstr "" + +#: order/serializers.py:523 part/models.py:1001 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:531 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:547 +msgid "Supplier part must be specified" +msgstr "" + +#: order/serializers.py:550 +msgid "Purchase order must be specified" +msgstr "" + +#: order/serializers.py:558 +msgid "Supplier must match purchase order" +msgstr "" + +#: order/serializers.py:559 +msgid "Purchase order must match supplier" +msgstr "" + +#: order/serializers.py:599 order/serializers.py:1370 +msgid "Line Item" +msgstr "" + +#: order/serializers.py:605 +msgid "Line item does not match purchase order" +msgstr "" + +#: order/serializers.py:615 order/serializers.py:723 order/serializers.py:1716 +msgid "Select destination location for received items" +msgstr "" + +#: order/serializers.py:631 templates/js/translated/purchase_order.js:1130 +msgid "Enter batch code for incoming stock items" +msgstr "" + +#: order/serializers.py:639 templates/js/translated/purchase_order.js:1154 +msgid "Enter serial numbers for incoming stock items" +msgstr "" + +#: order/serializers.py:650 templates/js/translated/barcode.js:52 +msgid "Barcode" +msgstr "" + +#: order/serializers.py:651 +msgid "Scanned barcode" +msgstr "" + +#: order/serializers.py:667 +msgid "Barcode is already in use" +msgstr "" + +#: order/serializers.py:691 +msgid "An integer quantity must be provided for trackable parts" +msgstr "" + +#: order/serializers.py:739 order/serializers.py:1732 +msgid "Line items must be provided" +msgstr "" + +#: order/serializers.py:755 +msgid "Destination location must be specified" +msgstr "" + +#: order/serializers.py:766 +msgid "Supplied barcode values must be unique" +msgstr "" + +#: order/serializers.py:1118 +msgid "Sale price currency" +msgstr "" + +#: order/serializers.py:1179 +msgid "No shipment details provided" +msgstr "" + +#: order/serializers.py:1240 order/serializers.py:1379 +msgid "Line item is not associated with this order" +msgstr "" + +#: order/serializers.py:1259 +msgid "Quantity must be positive" +msgstr "" + +#: order/serializers.py:1389 +msgid "Enter serial numbers to allocate" +msgstr "" + +#: order/serializers.py:1411 order/serializers.py:1517 +msgid "Shipment has already been shipped" +msgstr "" + +#: order/serializers.py:1414 order/serializers.py:1520 +msgid "Shipment is not associated with this order" +msgstr "" + +#: order/serializers.py:1461 +msgid "No match found for the following serial numbers" +msgstr "" + +#: order/serializers.py:1468 +msgid "The following serial numbers are already allocated" +msgstr "" + +#: order/serializers.py:1686 +msgid "Return order line item" +msgstr "" + +#: order/serializers.py:1692 +msgid "Line item does not match return order" +msgstr "" + +#: order/serializers.py:1695 +msgid "Line item has already been received" +msgstr "" + +#: order/serializers.py:1724 +msgid "Items can only be received against orders which are in progress" +msgstr "" + +#: order/serializers.py:1807 +msgid "Line price currency" +msgstr "" + +#: order/status_codes.py:16 order/status_codes.py:46 stock/status_codes.py:16 +msgid "Lost" +msgstr "" + +#: order/status_codes.py:17 order/status_codes.py:47 stock/status_codes.py:22 +msgid "Returned" +msgstr "" + +#: order/status_codes.py:40 order/status_codes.py:67 +msgid "In Progress" +msgstr "" + +#: order/status_codes.py:85 +msgid "Return" +msgstr "" + +#: order/status_codes.py:88 +msgid "Repair" +msgstr "" + +#: order/status_codes.py:91 +msgid "Replace" +msgstr "" + +#: order/status_codes.py:94 +msgid "Refund" +msgstr "" + +#: order/status_codes.py:97 +msgid "Reject" +msgstr "" + +#: order/tasks.py:25 +msgid "Overdue Purchase Order" +msgstr "" + +#: order/tasks.py:30 +#, python-brace-format +msgid "Purchase order {po} is now overdue" +msgstr "" + +#: order/tasks.py:75 +msgid "Overdue Sales Order" +msgstr "" + +#: order/tasks.py:80 +#, python-brace-format +msgid "Sales order {so} is now overdue" +msgstr "" + +#: order/templates/order/order_base.html:51 +msgid "Print purchase order report" +msgstr "" + +#: order/templates/order/order_base.html:53 +#: order/templates/order/return_order_base.html:62 +#: order/templates/order/sales_order_base.html:62 +msgid "Export order to file" +msgstr "" + +#: order/templates/order/order_base.html:59 +#: order/templates/order/return_order_base.html:72 +#: order/templates/order/sales_order_base.html:71 +msgid "Order actions" +msgstr "" + +#: order/templates/order/order_base.html:64 +#: order/templates/order/return_order_base.html:76 +#: order/templates/order/sales_order_base.html:75 +msgid "Edit order" +msgstr "" + +#: order/templates/order/order_base.html:68 +#: order/templates/order/return_order_base.html:78 +#: order/templates/order/sales_order_base.html:77 +msgid "Cancel order" +msgstr "" + +#: order/templates/order/order_base.html:73 +msgid "Duplicate order" +msgstr "" + +#: order/templates/order/order_base.html:79 +#: order/templates/order/order_base.html:80 +#: order/templates/order/return_order_base.html:82 +#: order/templates/order/return_order_base.html:83 +#: order/templates/order/sales_order_base.html:83 +#: order/templates/order/sales_order_base.html:84 +msgid "Issue Order" +msgstr "" + +#: order/templates/order/order_base.html:83 +#: order/templates/order/return_order_base.html:86 +msgid "Mark order as complete" +msgstr "" + +#: order/templates/order/order_base.html:84 +#: order/templates/order/return_order_base.html:87 +#: order/templates/order/sales_order_base.html:97 +msgid "Complete Order" +msgstr "" + +#: order/templates/order/order_base.html:91 +msgid "Supplier part thumbnail" +msgstr "" + +#: order/templates/order/order_base.html:106 +#: order/templates/order/return_order_base.html:101 +#: order/templates/order/sales_order_base.html:110 +msgid "Order Reference" +msgstr "" + +#: order/templates/order/order_base.html:111 +#: order/templates/order/return_order_base.html:106 +#: order/templates/order/sales_order_base.html:115 +msgid "Order Description" +msgstr "" + +#: order/templates/order/order_base.html:141 +msgid "No suppplier information available" +msgstr "" + +#: order/templates/order/order_base.html:154 +#: order/templates/order/sales_order_base.html:161 +msgid "Completed Line Items" +msgstr "" + +#: order/templates/order/order_base.html:160 +#: order/templates/order/sales_order_base.html:167 +#: order/templates/order/sales_order_base.html:177 +msgid "Incomplete" +msgstr "" + +#: order/templates/order/order_base.html:179 +#: order/templates/order/return_order_base.html:157 +#: report/templates/report/inventree_build_order_report.html:121 +msgid "Issued" +msgstr "" + +#: order/templates/order/order_base.html:224 +msgid "Total cost" +msgstr "" + +#: order/templates/order/order_base.html:228 +#: order/templates/order/return_order_base.html:199 +#: order/templates/order/sales_order_base.html:243 +msgid "Total cost could not be calculated" +msgstr "" + +#: order/templates/order/order_base.html:314 +msgid "Purchase Order QR Code" +msgstr "" + +#: order/templates/order/order_base.html:326 +msgid "Link Barcode to Purchase Order" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:9 +#: part/templates/part/import_wizard/ajax_match_fields.html:9 +#: part/templates/part/import_wizard/match_fields.html:9 +#: templates/patterns/wizard/match_fields.html:8 +msgid "Missing selections for the following required columns" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:20 +#: part/templates/part/import_wizard/ajax_match_fields.html:20 +#: part/templates/part/import_wizard/match_fields.html:20 +#: templates/patterns/wizard/match_fields.html:19 +msgid "Duplicate selections found, see below. Fix them then retry submitting." +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:29 +#: order/templates/order/order_wizard/match_parts.html:21 +#: part/templates/part/import_wizard/match_fields.html:29 +#: part/templates/part/import_wizard/match_references.html:21 +#: templates/patterns/wizard/match_fields.html:28 +msgid "Submit Selections" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:35 +#: part/templates/part/import_wizard/ajax_match_fields.html:28 +#: part/templates/part/import_wizard/match_fields.html:35 +#: templates/patterns/wizard/match_fields.html:34 +msgid "File Fields" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:42 +#: part/templates/part/import_wizard/ajax_match_fields.html:35 +#: part/templates/part/import_wizard/match_fields.html:42 +#: templates/patterns/wizard/match_fields.html:41 +msgid "Remove column" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:60 +#: part/templates/part/import_wizard/ajax_match_fields.html:53 +#: part/templates/part/import_wizard/match_fields.html:60 +#: templates/patterns/wizard/match_fields.html:59 +msgid "Duplicate selection" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:71 +#: order/templates/order/order_wizard/match_parts.html:52 +#: part/templates/part/import_wizard/ajax_match_fields.html:64 +#: part/templates/part/import_wizard/ajax_match_references.html:42 +#: part/templates/part/import_wizard/match_fields.html:71 +#: part/templates/part/import_wizard/match_references.html:49 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:530 +#: templates/js/translated/build.js:1804 +#: templates/js/translated/purchase_order.js:696 +#: templates/js/translated/purchase_order.js:1236 +#: templates/js/translated/return_order.js:505 +#: templates/js/translated/sales_order.js:1145 +#: templates/js/translated/stock.js:714 templates/js/translated/stock.js:883 +#: templates/patterns/wizard/match_fields.html:70 +msgid "Remove row" +msgstr "" + +#: order/templates/order/order_wizard/match_parts.html:12 +#: part/templates/part/import_wizard/ajax_match_references.html:12 +#: part/templates/part/import_wizard/match_references.html:12 +msgid "Errors exist in the submitted data" +msgstr "" + +#: order/templates/order/order_wizard/match_parts.html:28 +#: part/templates/part/import_wizard/ajax_match_references.html:21 +#: part/templates/part/import_wizard/match_references.html:28 +msgid "Row" +msgstr "" + +#: order/templates/order/order_wizard/match_parts.html:29 +msgid "Select Supplier Part" +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:8 +msgid "Return to Orders" +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:13 +msgid "Upload File for Purchase Order" +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:14 +msgid "Order is already processed. Files cannot be uploaded." +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:27 +#: part/templates/part/import_wizard/ajax_part_upload.html:10 +#: part/templates/part/import_wizard/part_upload.html:26 +#: templates/patterns/wizard/upload.html:13 +#, python-format +msgid "Step %(step)s of %(count)s" +msgstr "" + +#: order/templates/order/po_sidebar.html:7 +msgid "Received Stock" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:18 +msgid "Purchase Order Items" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:27 +#: order/templates/order/return_order_detail.html:24 +#: order/templates/order/sales_order_detail.html:24 +#: templates/js/translated/purchase_order.js:414 +#: templates/js/translated/return_order.js:458 +#: templates/js/translated/sales_order.js:237 +msgid "Add Line Item" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:31 +#: order/templates/order/purchase_order_detail.html:32 +#: order/templates/order/return_order_detail.html:28 +#: order/templates/order/return_order_detail.html:29 +msgid "Receive Line Items" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:50 +#: order/templates/order/return_order_detail.html:45 +#: order/templates/order/sales_order_detail.html:41 +msgid "Extra Lines" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:56 +#: order/templates/order/return_order_detail.html:51 +#: order/templates/order/sales_order_detail.html:47 +msgid "Add Extra Line" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:74 +msgid "Received Items" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:99 +#: order/templates/order/return_order_detail.html:85 +#: order/templates/order/sales_order_detail.html:139 +msgid "Order Notes" +msgstr "" + +#: order/templates/order/return_order_base.html:18 +#: order/templates/order/sales_order_base.html:18 +msgid "Customer logo thumbnail" +msgstr "" + +#: order/templates/order/return_order_base.html:60 +msgid "Print return order report" +msgstr "" + +#: order/templates/order/return_order_base.html:64 +#: order/templates/order/sales_order_base.html:64 +msgid "Print packing list" +msgstr "" + +#: order/templates/order/return_order_base.html:138 +#: order/templates/order/sales_order_base.html:155 +#: templates/js/translated/return_order.js:308 +#: templates/js/translated/sales_order.js:833 +msgid "Customer Reference" +msgstr "" + +#: order/templates/order/return_order_base.html:195 +#: order/templates/order/sales_order_base.html:239 +#: part/templates/part/part_pricing.html:32 +#: part/templates/part/part_pricing.html:58 +#: part/templates/part/part_pricing.html:99 +#: part/templates/part/part_pricing.html:114 +#: templates/js/translated/part.js:1078 +#: templates/js/translated/purchase_order.js:1752 +#: templates/js/translated/return_order.js:380 +#: templates/js/translated/sales_order.js:891 +msgid "Total Cost" +msgstr "" + +#: order/templates/order/return_order_base.html:259 +msgid "Return Order QR Code" +msgstr "" + +#: order/templates/order/return_order_base.html:271 +msgid "Link Barcode to Return Order" +msgstr "" + +#: order/templates/order/return_order_sidebar.html:5 +msgid "Order Details" +msgstr "" + +#: order/templates/order/sales_order_base.html:60 +msgid "Print sales order report" +msgstr "" + +#: order/templates/order/sales_order_base.html:88 +#: order/templates/order/sales_order_base.html:89 +msgid "Ship Items" +msgstr "" + +#: order/templates/order/sales_order_base.html:92 +#: order/templates/order/sales_order_base.html:93 +msgid "Mark As Shipped" +msgstr "" + +#: order/templates/order/sales_order_base.html:96 +#: templates/js/translated/sales_order.js:536 +msgid "Complete Sales Order" +msgstr "" + +#: order/templates/order/sales_order_base.html:135 +msgid "This Sales Order has not been fully allocated" +msgstr "" + +#: order/templates/order/sales_order_base.html:173 +#: order/templates/order/sales_order_detail.html:99 +#: order/templates/order/so_sidebar.html:11 +msgid "Completed Shipments" +msgstr "" + +#: order/templates/order/sales_order_base.html:321 +msgid "Sales Order QR Code" +msgstr "" + +#: order/templates/order/sales_order_base.html:333 +msgid "Link Barcode to Sales Order" +msgstr "" + +#: order/templates/order/sales_order_detail.html:18 +msgid "Sales Order Items" +msgstr "" + +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 +msgid "Pending Shipments" +msgstr "" + +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1277 templates/js/translated/build.js:1065 +#: templates/js/translated/filters.js:296 +msgid "Actions" +msgstr "" + +#: order/templates/order/sales_order_detail.html:80 +msgid "New Shipment" +msgstr "" + +#: order/views.py:120 +msgid "Match Supplier Parts" +msgstr "" + +#: order/views.py:406 +msgid "Sales order not found" +msgstr "" + +#: order/views.py:412 +msgid "Price not found" +msgstr "" + +#: order/views.py:415 +#, python-brace-format +msgid "Updated {part} unit-price to {price}" +msgstr "" + +#: order/views.py:421 +#, python-brace-format +msgid "Updated {part} unit-price to {price} and quantity to {qty}" +msgstr "" + +#: part/admin.py:48 part/models.py:1000 part/templates/part/part_base.html:269 +#: report/templates/report/inventree_stock_location_report.html:103 +#: templates/js/translated/part.js:1232 templates/js/translated/part.js:2347 +#: templates/js/translated/stock.js:2036 +msgid "IPN" +msgstr "" + +#: part/admin.py:50 part/models.py:1009 part/templates/part/part_base.html:286 +#: report/models.py:162 templates/js/translated/part.js:1237 +#: templates/js/translated/part.js:2353 +msgid "Revision" +msgstr "" + +#: part/admin.py:53 part/admin.py:319 part/models.py:982 +#: part/templates/part/category.html:94 part/templates/part/part_base.html:307 +msgid "Keywords" +msgstr "" + +#: part/admin.py:60 +msgid "Part Image" +msgstr "" + +#: part/admin.py:63 part/admin.py:302 part/stocktake.py:222 +msgid "Category ID" +msgstr "" + +#: part/admin.py:67 part/admin.py:304 part/serializers.py:868 +#: part/stocktake.py:223 +msgid "Category Name" +msgstr "" + +#: part/admin.py:71 part/admin.py:316 +msgid "Default Location ID" +msgstr "" + +#: part/admin.py:76 +msgid "Default Supplier ID" +msgstr "" + +#: part/admin.py:81 part/models.py:968 part/templates/part/part_base.html:177 +msgid "Variant Of" +msgstr "" + +#: part/admin.py:84 part/models.py:1106 part/templates/part/part_base.html:203 +msgid "Minimum Stock" +msgstr "" + +#: part/admin.py:138 part/templates/part/part_sidebar.html:27 +msgid "Used In" +msgstr "" + +#: part/admin.py:150 part/serializers.py:885 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:716 templates/js/translated/part.js:2158 +msgid "Building" +msgstr "" + +#: part/admin.py:155 part/models.py:3164 part/models.py:3178 +#: templates/js/translated/part.js:975 +msgid "Minimum Cost" +msgstr "" + +#: part/admin.py:158 part/models.py:3171 part/models.py:3185 +#: templates/js/translated/part.js:985 +msgid "Maximum Cost" +msgstr "" + +#: part/admin.py:308 part/admin.py:387 stock/admin.py:57 stock/admin.py:215 +msgid "Parent ID" +msgstr "" + +#: part/admin.py:312 part/admin.py:394 stock/admin.py:61 +msgid "Parent Name" +msgstr "" + +#: part/admin.py:320 part/templates/part/category.html:88 +#: part/templates/part/category.html:101 +msgid "Category Path" +msgstr "" + +#: part/admin.py:325 part/models.py:398 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 +#: part/templates/part/category.html:141 part/templates/part/category.html:161 +#: part/templates/part/category_sidebar.html:9 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 +#: templates/InvenTree/settings/sidebar.html:47 +#: templates/js/translated/part.js:2823 templates/js/translated/search.js:130 +#: templates/navbar.html:24 users/models.py:203 +msgid "Parts" +msgstr "" + +#: part/admin.py:378 +msgid "BOM Level" +msgstr "" + +#: part/admin.py:381 +msgid "BOM Item ID" +msgstr "" + +#: part/admin.py:391 +msgid "Parent IPN" +msgstr "" + +#: part/admin.py:415 part/serializers.py:1334 +#: templates/js/translated/pricing.js:358 +#: templates/js/translated/pricing.js:1024 +msgid "Minimum Price" +msgstr "" + +#: part/admin.py:420 part/serializers.py:1349 +#: templates/js/translated/pricing.js:353 +#: templates/js/translated/pricing.js:1032 +msgid "Maximum Price" +msgstr "" + +#: part/api.py:105 +msgid "Starred" +msgstr "" + +#: part/api.py:107 +msgid "Filter by starred categories" +msgstr "" + +#: part/api.py:124 stock/api.py:312 +msgid "Depth" +msgstr "" + +#: part/api.py:124 +msgid "Filter by category depth" +msgstr "" + +#: part/api.py:142 stock/api.py:330 +msgid "Top Level" +msgstr "" + +#: part/api.py:144 +msgid "Filter by top-level categories" +msgstr "" + +#: part/api.py:157 stock/api.py:345 +msgid "Cascade" +msgstr "" + +#: part/api.py:159 +msgid "Include sub-categories in filtered results" +msgstr "" + +#: part/api.py:180 templates/js/translated/part.js:309 +msgid "Parent" +msgstr "" + +#: part/api.py:182 +msgid "Filter by parent category" +msgstr "" + +#: part/api.py:215 +msgid "Exclude Tree" +msgstr "" + +#: part/api.py:217 +msgid "Exclude sub-categories under the specified category" +msgstr "" + +#: part/api.py:442 +msgid "Has Results" +msgstr "" + +#: part/api.py:609 +msgid "Incoming Purchase Order" +msgstr "" + +#: part/api.py:627 +msgid "Outgoing Sales Order" +msgstr "" + +#: part/api.py:643 +msgid "Stock produced by Build Order" +msgstr "" + +#: part/api.py:727 +msgid "Stock required for Build Order" +msgstr "" + +#: part/api.py:875 +msgid "Validate entire Bill of Materials" +msgstr "" + +#: part/api.py:881 +msgid "This option must be selected" +msgstr "" + +#: part/api.py:917 +msgid "Is Revision" +msgstr "" + +#: part/api.py:927 +msgid "Has Revisions" +msgstr "" + +#: part/api.py:1118 +msgid "BOM Valid" +msgstr "" + +#: part/api.py:1518 part/models.py:992 part/models.py:3451 part/models.py:4008 +#: part/serializers.py:419 part/serializers.py:1190 +#: part/templates/part/part_base.html:260 stock/api.py:783 +#: templates/InvenTree/settings/settings_staff_js.html:300 +#: templates/js/translated/notification.js:60 +#: templates/js/translated/part.js:2383 +msgid "Category" +msgstr "" + +#: part/api.py:1808 +msgid "Uses" +msgstr "" + +#: part/bom.py:170 part/models.py:105 part/models.py:1045 +#: part/templates/part/category.html:116 part/templates/part/part_base.html:376 +#: templates/js/translated/part.js:2397 +msgid "Default Location" +msgstr "" + +#: part/bom.py:171 part/serializers.py:893 +#: templates/email/low_stock_notification.html:16 +msgid "Total Stock" +msgstr "" + +#: part/forms.py:49 +msgid "Input quantity for price calculation" +msgstr "" + +#: part/models.py:86 part/models.py:4009 part/templates/part/category.html:16 +#: part/templates/part/part_app_base.html:10 +msgid "Part Category" +msgstr "" + +#: part/models.py:87 part/templates/part/category.html:136 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 +#: users/models.py:202 +msgid "Part Categories" +msgstr "" + +#: part/models.py:106 +msgid "Default location for parts in this category" +msgstr "" + +#: part/models.py:111 stock/models.py:175 templates/js/translated/part.js:2829 +#: templates/js/translated/stock.js:2772 +#: templates/js/translated/table_filters.js:239 +#: templates/js/translated/table_filters.js:283 +msgid "Structural" +msgstr "" + +#: part/models.py:113 +msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." +msgstr "" + +#: part/models.py:122 +msgid "Default keywords" +msgstr "" + +#: part/models.py:123 +msgid "Default keywords for parts in this category" +msgstr "" + +#: part/models.py:129 stock/models.py:87 stock/models.py:158 +#: templates/InvenTree/settings/settings_staff_js.html:456 +msgid "Icon" +msgstr "" + +#: part/models.py:130 stock/models.py:159 +msgid "Icon (optional)" +msgstr "" + +#: part/models.py:152 +msgid "You cannot make this part category structural because some parts are already assigned to it!" +msgstr "" + +#: part/models.py:487 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:490 +msgid "Cannot delete this part as it is still active" +msgstr "" + +#: part/models.py:495 +msgid "Cannot delete this part as it is used in an assembly" +msgstr "" + +#: part/models.py:533 +msgid "Invalid choice for parent part" +msgstr "" + +#: part/models.py:581 part/models.py:588 +#, python-brace-format +msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" +msgstr "" + +#: part/models.py:600 +#, python-brace-format +msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" +msgstr "" + +#: part/models.py:663 +#, python-brace-format +msgid "IPN must match regex pattern {pattern}" +msgstr "" + +#: part/models.py:671 +msgid "Part cannot be a revision of itself" +msgstr "" + +#: part/models.py:678 +msgid "Cannot make a revision of a part which is already a revision" +msgstr "" + +#: part/models.py:685 +msgid "Revision code must be specified" +msgstr "" + +#: part/models.py:692 +msgid "Revisions are only allowed for assembly parts" +msgstr "" + +#: part/models.py:699 +msgid "Cannot make a revision of a template part" +msgstr "" + +#: part/models.py:705 +msgid "Parent part must point to the same template" +msgstr "" + +#: part/models.py:784 +msgid "Stock item with this serial number already exists" +msgstr "" + +#: part/models.py:885 +msgid "Duplicate IPN not allowed in part settings" +msgstr "" + +#: part/models.py:894 +msgid "Duplicate part revision already exists." +msgstr "" + +#: part/models.py:904 +msgid "Part with this Name, IPN and Revision already exists." +msgstr "" + +#: part/models.py:919 +msgid "Parts cannot be assigned to structural part categories!" +msgstr "" + +#: part/models.py:951 part/models.py:4064 +msgid "Part name" +msgstr "" + +#: part/models.py:956 +msgid "Is Template" +msgstr "" + +#: part/models.py:957 +msgid "Is this part a template part?" +msgstr "" + +#: part/models.py:967 +msgid "Is this part a variant of another part?" +msgstr "" + +#: part/models.py:975 +msgid "Part description (optional)" +msgstr "" + +#: part/models.py:983 +msgid "Part keywords to improve visibility in search results" +msgstr "" + +#: part/models.py:993 +msgid "Part category" +msgstr "" + +#: part/models.py:1008 +msgid "Part revision or version number" +msgstr "" + +#: part/models.py:1018 +msgid "Is this part a revision of another part?" +msgstr "" + +#: part/models.py:1019 part/templates/part/part_base.html:277 +msgid "Revision Of" +msgstr "" + +#: part/models.py:1043 +msgid "Where is this item normally stored?" +msgstr "" + +#: part/models.py:1089 part/templates/part/part_base.html:385 +msgid "Default Supplier" +msgstr "" + +#: part/models.py:1090 +msgid "Default supplier part" +msgstr "" + +#: part/models.py:1097 +msgid "Default Expiry" +msgstr "" + +#: part/models.py:1098 +msgid "Expiry time (in days) for stock items of this part" +msgstr "" + +#: part/models.py:1107 +msgid "Minimum allowed stock level" +msgstr "" + +#: part/models.py:1116 +msgid "Units of measure for this part" +msgstr "" + +#: part/models.py:1123 +msgid "Can this part be built from other parts?" +msgstr "" + +#: part/models.py:1129 +msgid "Can this part be used to build other parts?" +msgstr "" + +#: part/models.py:1135 +msgid "Does this part have tracking for unique items?" +msgstr "" + +#: part/models.py:1141 +msgid "Can this part be purchased from external suppliers?" +msgstr "" + +#: part/models.py:1147 +msgid "Can this part be sold to customers?" +msgstr "" + +#: part/models.py:1151 +msgid "Is this part active?" +msgstr "" + +#: part/models.py:1156 templates/js/translated/part.js:820 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1157 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1163 +msgid "Is this a virtual part, such as a software product or license?" +msgstr "" + +#: part/models.py:1169 +msgid "BOM checksum" +msgstr "" + +#: part/models.py:1170 +msgid "Stored BOM checksum" +msgstr "" + +#: part/models.py:1178 +msgid "BOM checked by" +msgstr "" + +#: part/models.py:1183 +msgid "BOM checked date" +msgstr "" + +#: part/models.py:1199 +msgid "Creation User" +msgstr "" + +#: part/models.py:1209 +msgid "Owner responsible for this part" +msgstr "" + +#: part/models.py:1214 part/templates/part/part_base.html:348 +#: stock/templates/stock/item_base.html:451 +#: templates/js/translated/part.js:2490 +msgid "Last Stocktake" +msgstr "" + +#: part/models.py:2087 +msgid "Sell multiple" +msgstr "" + +#: part/models.py:3078 +msgid "Currency used to cache pricing calculations" +msgstr "" + +#: part/models.py:3094 +msgid "Minimum BOM Cost" +msgstr "" + +#: part/models.py:3095 +msgid "Minimum cost of component parts" +msgstr "" + +#: part/models.py:3101 +msgid "Maximum BOM Cost" +msgstr "" + +#: part/models.py:3102 +msgid "Maximum cost of component parts" +msgstr "" + +#: part/models.py:3108 +msgid "Minimum Purchase Cost" +msgstr "" + +#: part/models.py:3109 +msgid "Minimum historical purchase cost" +msgstr "" + +#: part/models.py:3115 +msgid "Maximum Purchase Cost" +msgstr "" + +#: part/models.py:3116 +msgid "Maximum historical purchase cost" +msgstr "" + +#: part/models.py:3122 +msgid "Minimum Internal Price" +msgstr "" + +#: part/models.py:3123 +msgid "Minimum cost based on internal price breaks" +msgstr "" + +#: part/models.py:3129 +msgid "Maximum Internal Price" +msgstr "" + +#: part/models.py:3130 +msgid "Maximum cost based on internal price breaks" +msgstr "" + +#: part/models.py:3136 +msgid "Minimum Supplier Price" +msgstr "" + +#: part/models.py:3137 +msgid "Minimum price of part from external suppliers" +msgstr "" + +#: part/models.py:3143 +msgid "Maximum Supplier Price" +msgstr "" + +#: part/models.py:3144 +msgid "Maximum price of part from external suppliers" +msgstr "" + +#: part/models.py:3150 +msgid "Minimum Variant Cost" +msgstr "" + +#: part/models.py:3151 +msgid "Calculated minimum cost of variant parts" +msgstr "" + +#: part/models.py:3157 +msgid "Maximum Variant Cost" +msgstr "" + +#: part/models.py:3158 +msgid "Calculated maximum cost of variant parts" +msgstr "" + +#: part/models.py:3165 +msgid "Override minimum cost" +msgstr "" + +#: part/models.py:3172 +msgid "Override maximum cost" +msgstr "" + +#: part/models.py:3179 +msgid "Calculated overall minimum cost" +msgstr "" + +#: part/models.py:3186 +msgid "Calculated overall maximum cost" +msgstr "" + +#: part/models.py:3192 +msgid "Minimum Sale Price" +msgstr "" + +#: part/models.py:3193 +msgid "Minimum sale price based on price breaks" +msgstr "" + +#: part/models.py:3199 +msgid "Maximum Sale Price" +msgstr "" + +#: part/models.py:3200 +msgid "Maximum sale price based on price breaks" +msgstr "" + +#: part/models.py:3206 +msgid "Minimum Sale Cost" +msgstr "" + +#: part/models.py:3207 +msgid "Minimum historical sale price" +msgstr "" + +#: part/models.py:3213 +msgid "Maximum Sale Cost" +msgstr "" + +#: part/models.py:3214 +msgid "Maximum historical sale price" +msgstr "" + +#: part/models.py:3233 +msgid "Part for stocktake" +msgstr "" + +#: part/models.py:3238 +msgid "Item Count" +msgstr "" + +#: part/models.py:3239 +msgid "Number of individual stock entries at time of stocktake" +msgstr "" + +#: part/models.py:3247 +msgid "Total available stock at time of stocktake" +msgstr "" + +#: part/models.py:3251 part/models.py:3334 +#: part/templates/part/part_scheduling.html:13 +#: report/templates/report/inventree_test_report.html:106 +#: templates/InvenTree/settings/plugin_settings.html:37 +#: templates/InvenTree/settings/settings_staff_js.html:540 +#: templates/js/translated/part.js:1091 templates/js/translated/pricing.js:826 +#: templates/js/translated/pricing.js:950 +#: templates/js/translated/purchase_order.js:1731 +#: templates/js/translated/stock.js:2821 +msgid "Date" +msgstr "" + +#: part/models.py:3252 +msgid "Date stocktake was performed" +msgstr "" + +#: part/models.py:3260 +msgid "Additional notes" +msgstr "" + +#: part/models.py:3270 +msgid "User who performed this stocktake" +msgstr "" + +#: part/models.py:3276 +msgid "Minimum Stock Cost" +msgstr "" + +#: part/models.py:3277 +msgid "Estimated minimum cost of stock on hand" +msgstr "" + +#: part/models.py:3283 +msgid "Maximum Stock Cost" +msgstr "" + +#: part/models.py:3284 +msgid "Estimated maximum cost of stock on hand" +msgstr "" + +#: part/models.py:3340 templates/InvenTree/settings/settings_staff_js.html:529 +msgid "Report" +msgstr "" + +#: part/models.py:3341 +msgid "Stocktake report file (generated internally)" +msgstr "" + +#: part/models.py:3346 templates/InvenTree/settings/settings_staff_js.html:536 +msgid "Part Count" +msgstr "" + +#: part/models.py:3347 +msgid "Number of parts covered by stocktake" +msgstr "" + +#: part/models.py:3357 +msgid "User who requested this stocktake report" +msgstr "" + +#: part/models.py:3367 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3479 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3505 +msgid "Invalid template name - must include at least one alphanumeric character" +msgstr "" + +#: part/models.py:3526 part/models.py:3695 +msgid "Choices must be unique" +msgstr "" + +#: part/models.py:3537 +msgid "Test templates can only be created for trackable parts" +msgstr "" + +#: part/models.py:3548 +msgid "Test template with the same key already exists for part" +msgstr "" + +#: part/models.py:3565 templates/js/translated/part.js:2899 +msgid "Test Name" +msgstr "" + +#: part/models.py:3566 +msgid "Enter a name for the test" +msgstr "" + +#: part/models.py:3572 +msgid "Test Key" +msgstr "" + +#: part/models.py:3573 +msgid "Simplified key for the test" +msgstr "" + +#: part/models.py:3580 +msgid "Test Description" +msgstr "" + +#: part/models.py:3581 +msgid "Enter description for this test" +msgstr "" + +#: part/models.py:3585 report/models.py:209 +#: templates/js/translated/part.js:2920 +#: templates/js/translated/table_filters.js:481 +msgid "Enabled" +msgstr "" + +#: part/models.py:3585 +msgid "Is this test enabled?" +msgstr "" + +#: part/models.py:3590 templates/js/translated/part.js:2928 +#: templates/js/translated/table_filters.js:477 +msgid "Required" +msgstr "" + +#: part/models.py:3591 +msgid "Is this test required to pass?" +msgstr "" + +#: part/models.py:3596 templates/js/translated/part.js:2936 +msgid "Requires Value" +msgstr "" + +#: part/models.py:3597 +msgid "Does this test require a value when adding a test result?" +msgstr "" + +#: part/models.py:3602 templates/js/translated/part.js:2943 +msgid "Requires Attachment" +msgstr "" + +#: part/models.py:3604 +msgid "Does this test require a file attachment when adding a test result?" +msgstr "" + +#: part/models.py:3610 part/models.py:3754 templates/js/translated/part.js:1642 +msgid "Choices" +msgstr "" + +#: part/models.py:3611 +msgid "Valid choices for this test (comma-separated)" +msgstr "" + +#: part/models.py:3643 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3670 +msgid "Checkbox parameters cannot have units" +msgstr "" + +#: part/models.py:3675 +msgid "Checkbox parameters cannot have choices" +msgstr "" + +#: part/models.py:3712 +msgid "Parameter template name must be unique" +msgstr "" + +#: part/models.py:3727 +msgid "Parameter Name" +msgstr "" + +#: part/models.py:3734 +msgid "Physical units for this parameter" +msgstr "" + +#: part/models.py:3742 +msgid "Parameter description" +msgstr "" + +#: part/models.py:3748 templates/js/translated/part.js:1633 +#: templates/js/translated/table_filters.js:830 +msgid "Checkbox" +msgstr "" + +#: part/models.py:3749 +msgid "Is this parameter a checkbox?" +msgstr "" + +#: part/models.py:3755 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "" + +#: part/models.py:3789 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3815 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3851 +msgid "Invalid choice for parameter value" +msgstr "" + +#: part/models.py:3900 +msgid "Parent Part" +msgstr "" + +#: part/models.py:3908 part/models.py:4016 part/models.py:4017 +#: templates/InvenTree/settings/settings_staff_js.html:295 +msgid "Parameter Template" +msgstr "" + +#: part/models.py:3914 +msgid "Parameter Value" +msgstr "" + +#: part/models.py:3964 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:4023 templates/InvenTree/settings/settings_staff_js.html:304 +msgid "Default Value" +msgstr "" + +#: part/models.py:4024 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:4062 +msgid "Part ID or part name" +msgstr "" + +#: part/models.py:4063 +msgid "Unique part ID value" +msgstr "" + +#: part/models.py:4065 +msgid "Part IPN value" +msgstr "" + +#: part/models.py:4066 +msgid "Level" +msgstr "" + +#: part/models.py:4066 +msgid "BOM level" +msgstr "" + +#: part/models.py:4177 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4184 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4194 +msgid "Select parent part" +msgstr "" + +#: part/models.py:4204 +msgid "Sub part" +msgstr "" + +#: part/models.py:4205 +msgid "Select part to be used in BOM" +msgstr "" + +#: part/models.py:4216 +msgid "BOM quantity for this BOM item" +msgstr "" + +#: part/models.py:4222 +msgid "This BOM item is optional" +msgstr "" + +#: part/models.py:4228 +msgid "This BOM item is consumable (it is not tracked in build orders)" +msgstr "" + +#: part/models.py:4235 part/templates/part/upload_bom.html:55 +msgid "Overage" +msgstr "" + +#: part/models.py:4236 +msgid "Estimated build wastage quantity (absolute or percentage)" +msgstr "" + +#: part/models.py:4243 +msgid "BOM item reference" +msgstr "" + +#: part/models.py:4251 +msgid "BOM item notes" +msgstr "" + +#: part/models.py:4257 +msgid "Checksum" +msgstr "" + +#: part/models.py:4258 +msgid "BOM line checksum" +msgstr "" + +#: part/models.py:4263 templates/js/translated/table_filters.js:174 +msgid "Validated" +msgstr "" + +#: part/models.py:4264 +msgid "This BOM item has been validated" +msgstr "" + +#: part/models.py:4269 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1054 +#: templates/js/translated/table_filters.js:178 +#: templates/js/translated/table_filters.js:211 +msgid "Gets inherited" +msgstr "" + +#: part/models.py:4270 +msgid "This BOM item is inherited by BOMs for variant parts" +msgstr "" + +#: part/models.py:4276 +msgid "Stock items for variant parts can be used for this BOM item" +msgstr "" + +#: part/models.py:4361 stock/models.py:663 +msgid "Quantity must be integer value for trackable parts" +msgstr "" + +#: part/models.py:4371 part/models.py:4373 +msgid "Sub part must be specified" +msgstr "" + +#: part/models.py:4511 +msgid "BOM Item Substitute" +msgstr "" + +#: part/models.py:4532 +msgid "Substitute part cannot be the same as the master part" +msgstr "" + +#: part/models.py:4545 +msgid "Parent BOM item" +msgstr "" + +#: part/models.py:4553 +msgid "Substitute part" +msgstr "" + +#: part/models.py:4569 +msgid "Part 1" +msgstr "" + +#: part/models.py:4577 +msgid "Part 2" +msgstr "" + +#: part/models.py:4578 +msgid "Select Related Part" +msgstr "" + +#: part/models.py:4597 +msgid "Part relationship cannot be created between a part and itself" +msgstr "" + +#: part/models.py:4602 +msgid "Duplicate relationship already exists" +msgstr "" + +#: part/serializers.py:124 +msgid "Parent Category" +msgstr "" + +#: part/serializers.py:125 templates/js/translated/part.js:310 +msgid "Parent part category" +msgstr "" + +#: part/serializers.py:132 part/serializers.py:154 +#: part/templates/part/category.html:122 part/templates/part/category.html:207 +#: part/templates/part/category_sidebar.html:7 +msgid "Subcategories" +msgstr "" + +#: part/serializers.py:189 +msgid "Results" +msgstr "" + +#: part/serializers.py:190 +msgid "Number of results recorded against this template" +msgstr "" + +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:612 +msgid "Purchase currency of this stock item" +msgstr "" + +#: part/serializers.py:283 +msgid "Number of parts using this template" +msgstr "" + +#: part/serializers.py:410 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:420 +msgid "Select category" +msgstr "" + +#: part/serializers.py:455 +msgid "Original Part" +msgstr "" + +#: part/serializers.py:456 +msgid "Select original part to duplicate" +msgstr "" + +#: part/serializers.py:461 +msgid "Copy Image" +msgstr "" + +#: part/serializers.py:462 +msgid "Copy image from original part" +msgstr "" + +#: part/serializers.py:468 part/templates/part/detail.html:277 +msgid "Copy BOM" +msgstr "" + +#: part/serializers.py:469 +msgid "Copy bill of materials from original part" +msgstr "" + +#: part/serializers.py:475 +msgid "Copy Parameters" +msgstr "" + +#: part/serializers.py:476 +msgid "Copy parameter data from original part" +msgstr "" + +#: part/serializers.py:482 +msgid "Copy Notes" +msgstr "" + +#: part/serializers.py:483 +msgid "Copy notes from original part" +msgstr "" + +#: part/serializers.py:501 +msgid "Initial Stock Quantity" +msgstr "" + +#: part/serializers.py:503 +msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." +msgstr "" + +#: part/serializers.py:510 +msgid "Initial Stock Location" +msgstr "" + +#: part/serializers.py:511 +msgid "Specify initial stock location for this Part" +msgstr "" + +#: part/serializers.py:528 +msgid "Select supplier (or leave blank to skip)" +msgstr "" + +#: part/serializers.py:544 +msgid "Select manufacturer (or leave blank to skip)" +msgstr "" + +#: part/serializers.py:554 +msgid "Manufacturer part number" +msgstr "" + +#: part/serializers.py:561 +msgid "Selected company is not a valid supplier" +msgstr "" + +#: part/serializers.py:570 +msgid "Selected company is not a valid manufacturer" +msgstr "" + +#: part/serializers.py:581 +msgid "Manufacturer part matching this MPN already exists" +msgstr "" + +#: part/serializers.py:588 +msgid "Supplier part matching this SKU already exists" +msgstr "" + +#: part/serializers.py:891 +msgid "Revisions" +msgstr "" + +#: part/serializers.py:896 +msgid "Unallocated Stock" +msgstr "" + +#: part/serializers.py:899 +msgid "Variant Stock" +msgstr "" + +#: part/serializers.py:929 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:473 +msgid "Duplicate Part" +msgstr "" + +#: part/serializers.py:930 +msgid "Copy initial data from another Part" +msgstr "" + +#: part/serializers.py:936 templates/js/translated/part.js:102 +msgid "Initial Stock" +msgstr "" + +#: part/serializers.py:937 +msgid "Create Part with initial stock quantity" +msgstr "" + +#: part/serializers.py:943 +msgid "Supplier Information" +msgstr "" + +#: part/serializers.py:944 +msgid "Add initial supplier information for this part" +msgstr "" + +#: part/serializers.py:952 +msgid "Copy Category Parameters" +msgstr "" + +#: part/serializers.py:953 +msgid "Copy parameter templates from selected part category" +msgstr "" + +#: part/serializers.py:958 +msgid "Existing Image" +msgstr "" + +#: part/serializers.py:959 +msgid "Filename of an existing part image" +msgstr "" + +#: part/serializers.py:976 +msgid "Image file does not exist" +msgstr "" + +#: part/serializers.py:1182 +msgid "Limit stocktake report to a particular part, and any variant parts" +msgstr "" + +#: part/serializers.py:1192 +msgid "Limit stocktake report to a particular part category, and any child categories" +msgstr "" + +#: part/serializers.py:1202 +msgid "Limit stocktake report to a particular stock location, and any child locations" +msgstr "" + +#: part/serializers.py:1208 +msgid "Exclude External Stock" +msgstr "" + +#: part/serializers.py:1209 +msgid "Exclude stock items in external locations" +msgstr "" + +#: part/serializers.py:1214 +msgid "Generate Report" +msgstr "" + +#: part/serializers.py:1215 +msgid "Generate report file containing calculated stocktake data" +msgstr "" + +#: part/serializers.py:1220 +msgid "Update Parts" +msgstr "" + +#: part/serializers.py:1221 +msgid "Update specified parts with calculated stocktake data" +msgstr "" + +#: part/serializers.py:1229 +msgid "Stocktake functionality is not enabled" +msgstr "" + +#: part/serializers.py:1335 +msgid "Override calculated value for minimum price" +msgstr "" + +#: part/serializers.py:1342 +msgid "Minimum price currency" +msgstr "" + +#: part/serializers.py:1350 +msgid "Override calculated value for maximum price" +msgstr "" + +#: part/serializers.py:1357 +msgid "Maximum price currency" +msgstr "" + +#: part/serializers.py:1386 +msgid "Update" +msgstr "" + +#: part/serializers.py:1387 +msgid "Update pricing for this part" +msgstr "" + +#: part/serializers.py:1410 +#, python-brace-format +msgid "Could not convert from provided currencies to {default_currency}" +msgstr "" + +#: part/serializers.py:1417 +msgid "Minimum price must not be greater than maximum price" +msgstr "" + +#: part/serializers.py:1420 +msgid "Maximum price must not be less than minimum price" +msgstr "" + +#: part/serializers.py:1571 part/templates/part/part_base.html:235 +#: templates/js/translated/bom.js:1219 +msgid "Can Build" +msgstr "" + +#: part/serializers.py:1809 +msgid "Select part to copy BOM from" +msgstr "" + +#: part/serializers.py:1817 +msgid "Remove Existing Data" +msgstr "" + +#: part/serializers.py:1818 +msgid "Remove existing BOM items before copying" +msgstr "" + +#: part/serializers.py:1823 +msgid "Include Inherited" +msgstr "" + +#: part/serializers.py:1824 +msgid "Include BOM items which are inherited from templated parts" +msgstr "" + +#: part/serializers.py:1829 +msgid "Skip Invalid Rows" +msgstr "" + +#: part/serializers.py:1830 +msgid "Enable this option to skip invalid rows" +msgstr "" + +#: part/serializers.py:1835 +msgid "Copy Substitute Parts" +msgstr "" + +#: part/serializers.py:1836 +msgid "Copy substitute parts when duplicate BOM items" +msgstr "" + +#: part/serializers.py:1873 +msgid "Clear Existing BOM" +msgstr "" + +#: part/serializers.py:1874 +msgid "Delete existing BOM items before uploading" +msgstr "" + +#: part/serializers.py:1906 +msgid "No part column specified" +msgstr "" + +#: part/serializers.py:1950 +msgid "Multiple matching parts found" +msgstr "" + +#: part/serializers.py:1953 +msgid "No matching part found" +msgstr "" + +#: part/serializers.py:1956 +msgid "Part is not designated as a component" +msgstr "" + +#: part/serializers.py:1965 +msgid "Quantity not provided" +msgstr "" + +#: part/serializers.py:1973 +msgid "Invalid quantity" +msgstr "" + +#: part/serializers.py:1996 +msgid "At least one BOM item is required" +msgstr "" + +#: part/stocktake.py:225 templates/js/translated/part.js:1072 +#: templates/js/translated/part.js:1827 templates/js/translated/part.js:1883 +#: templates/js/translated/purchase_order.js:2084 +msgid "Total Quantity" +msgstr "" + +#: part/stocktake.py:226 +msgid "Total Cost Min" +msgstr "" + +#: part/stocktake.py:227 +msgid "Total Cost Max" +msgstr "" + +#: part/stocktake.py:285 +msgid "Stocktake Report Available" +msgstr "" + +#: part/stocktake.py:286 +msgid "A new stocktake report is available for download" +msgstr "" + +#: part/tasks.py:37 +msgid "Low stock notification" +msgstr "" + +#: part/tasks.py:39 +#, python-brace-format +msgid "The available stock for {part.name} has fallen below the configured minimum level" +msgstr "" + +#: part/templates/part/bom.html:6 +msgid "You do not have permission to edit the BOM." +msgstr "" + +#: part/templates/part/bom.html:15 +msgid "The BOM this part has been changed, and must be validated" +msgstr "" + +#: part/templates/part/bom.html:17 +#, python-format +msgid "This BOM was last checked by %(checker)s on %(check_date)s" +msgstr "" + +#: part/templates/part/bom.html:21 +msgid "This BOM has not been validated." +msgstr "" + +#: part/templates/part/category.html:35 +msgid "Perform stocktake for this part category" +msgstr "" + +#: part/templates/part/category.html:41 part/templates/part/category.html:45 +msgid "You are subscribed to notifications for this category" +msgstr "" + +#: part/templates/part/category.html:49 +msgid "Subscribe to notifications for this category" +msgstr "" + +#: part/templates/part/category.html:55 +msgid "Category Actions" +msgstr "" + +#: part/templates/part/category.html:60 +msgid "Edit category" +msgstr "" + +#: part/templates/part/category.html:61 +msgid "Edit Category" +msgstr "" + +#: part/templates/part/category.html:65 +msgid "Delete category" +msgstr "" + +#: part/templates/part/category.html:66 +msgid "Delete Category" +msgstr "" + +#: part/templates/part/category.html:102 +msgid "Top level part category" +msgstr "" + +#: part/templates/part/category.html:127 +msgid "Parts (Including subcategories)" +msgstr "" + +#: part/templates/part/category.html:165 +msgid "Create new part" +msgstr "" + +#: part/templates/part/category.html:166 templates/js/translated/bom.js:444 +msgid "New Part" +msgstr "" + +#: part/templates/part/category.html:192 +#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/sidebar.html:49 +msgid "Part Parameters" +msgstr "" + +#: part/templates/part/category.html:211 +msgid "Create new part category" +msgstr "" + +#: part/templates/part/category.html:212 +msgid "New Category" +msgstr "" + +#: part/templates/part/category_sidebar.html:13 +msgid "Import Parts" +msgstr "" + +#: part/templates/part/copy_part.html:10 +#, python-format +msgid "Make a copy of part '%(full_name)s'." +msgstr "" + +#: part/templates/part/copy_part.html:14 +#: part/templates/part/create_part.html:11 +msgid "Possible Matching Parts" +msgstr "" + +#: part/templates/part/copy_part.html:15 +#: part/templates/part/create_part.html:12 +msgid "The new part may be a duplicate of these existing parts" +msgstr "" + +#: part/templates/part/create_part.html:17 +#, python-format +msgid "%(full_name)s - %(desc)s (%(match_per)s%% match)" +msgstr "" + +#: part/templates/part/detail.html:20 +msgid "Part Stock" +msgstr "" + +#: part/templates/part/detail.html:44 +msgid "Refresh scheduling data" +msgstr "" + +#: part/templates/part/detail.html:45 part/templates/part/prices.html:15 +#: templates/js/translated/tables.js:552 +msgid "Refresh" +msgstr "" + +#: part/templates/part/detail.html:66 +msgid "Add stocktake information" +msgstr "" + +#: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 +#: stock/admin.py:255 templates/InvenTree/settings/part_stocktake.html:30 +#: templates/InvenTree/settings/sidebar.html:53 +#: templates/js/translated/stock.js:2216 users/models.py:204 +msgid "Stocktake" +msgstr "" + +#: part/templates/part/detail.html:83 +msgid "Part Test Templates" +msgstr "" + +#: part/templates/part/detail.html:88 +msgid "Add Test Template" +msgstr "" + +#: part/templates/part/detail.html:139 stock/templates/stock/item.html:49 +msgid "Sales Order Allocations" +msgstr "" + +#: part/templates/part/detail.html:156 +msgid "Part Notes" +msgstr "" + +#: part/templates/part/detail.html:171 +msgid "Part Variants" +msgstr "" + +#: part/templates/part/detail.html:175 +msgid "Create new variant" +msgstr "" + +#: part/templates/part/detail.html:176 +msgid "New Variant" +msgstr "" + +#: part/templates/part/detail.html:199 +msgid "Add new parameter" +msgstr "" + +#: part/templates/part/detail.html:232 part/templates/part/part_sidebar.html:58 +msgid "Related Parts" +msgstr "" + +#: part/templates/part/detail.html:236 part/templates/part/detail.html:237 +msgid "Add Related" +msgstr "" + +#: part/templates/part/detail.html:255 part/templates/part/part_sidebar.html:17 +#: report/templates/report/inventree_bill_of_materials_report.html:100 +msgid "Bill of Materials" +msgstr "" + +#: part/templates/part/detail.html:260 +msgid "Export actions" +msgstr "" + +#: part/templates/part/detail.html:264 templates/js/translated/bom.js:340 +msgid "Export BOM" +msgstr "" + +#: part/templates/part/detail.html:266 +msgid "Print BOM Report" +msgstr "" + +#: part/templates/part/detail.html:272 +msgid "BOM actions" +msgstr "" + +#: part/templates/part/detail.html:276 +msgid "Upload BOM" +msgstr "" + +#: part/templates/part/detail.html:278 +msgid "Validate BOM" +msgstr "" + +#: part/templates/part/detail.html:283 part/templates/part/detail.html:284 +#: templates/js/translated/bom.js:1320 templates/js/translated/bom.js:1321 +msgid "Add BOM Item" +msgstr "" + +#: part/templates/part/detail.html:297 +msgid "Assemblies" +msgstr "" + +#: part/templates/part/detail.html:313 +msgid "Part Builds" +msgstr "" + +#: part/templates/part/detail.html:338 stock/templates/stock/item.html:36 +msgid "Build Order Allocations" +msgstr "" + +#: part/templates/part/detail.html:352 +msgid "Part Suppliers" +msgstr "" + +#: part/templates/part/detail.html:372 +msgid "Part Manufacturers" +msgstr "" + +#: part/templates/part/detail.html:657 +msgid "Related Part" +msgstr "" + +#: part/templates/part/detail.html:665 +msgid "Add Related Part" +msgstr "" + +#: part/templates/part/detail.html:750 +msgid "Add Test Result Template" +msgstr "" + +#: part/templates/part/import_wizard/ajax_part_upload.html:29 +#: part/templates/part/import_wizard/part_upload.html:14 +msgid "Insufficient privileges." +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:8 +msgid "Return to Parts" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:13 +msgid "Import Parts from File" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:31 +msgid "Requirements for part import" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:33 +msgid "The part import file must contain the required named columns as provided in the " +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:33 +msgid "Part Import Template" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:89 +msgid "Download Part Import Template" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:92 +#: templates/js/translated/bom.js:309 templates/js/translated/bom.js:343 +#: templates/js/translated/order.js:129 templates/js/translated/tables.js:189 +msgid "Format" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:93 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 +#: templates/js/translated/order.js:130 +msgid "Select file format" +msgstr "" + +#: part/templates/part/part_app_base.html:12 +msgid "Part List" +msgstr "" + +#: part/templates/part/part_base.html:25 part/templates/part/part_base.html:29 +msgid "You are subscribed to notifications for this part" +msgstr "" + +#: part/templates/part/part_base.html:33 +msgid "Subscribe to notifications for this part" +msgstr "" + +#: part/templates/part/part_base.html:52 +#: stock/templates/stock/item_base.html:62 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 +msgid "Print Label" +msgstr "" + +#: part/templates/part/part_base.html:58 +msgid "Show pricing information" +msgstr "" + +#: part/templates/part/part_base.html:63 +#: stock/templates/stock/item_base.html:110 +#: stock/templates/stock/location.html:83 +msgid "Stock actions" +msgstr "" + +#: part/templates/part/part_base.html:70 +msgid "Count part stock" +msgstr "" + +#: part/templates/part/part_base.html:76 +msgid "Transfer part stock" +msgstr "" + +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2299 +msgid "Part actions" +msgstr "" + +#: part/templates/part/part_base.html:94 +msgid "Duplicate part" +msgstr "" + +#: part/templates/part/part_base.html:97 +msgid "Edit part" +msgstr "" + +#: part/templates/part/part_base.html:100 +msgid "Delete part" +msgstr "" + +#: part/templates/part/part_base.html:119 +msgid "Part is a template part (variants can be made from this part)" +msgstr "" + +#: part/templates/part/part_base.html:123 +msgid "Part can be assembled from other parts" +msgstr "" + +#: part/templates/part/part_base.html:127 +msgid "Part can be used in assemblies" +msgstr "" + +#: part/templates/part/part_base.html:131 +msgid "Part stock is tracked by serial number" +msgstr "" + +#: part/templates/part/part_base.html:135 +msgid "Part can be purchased from external suppliers" +msgstr "" + +#: part/templates/part/part_base.html:139 +msgid "Part can be sold to customers" +msgstr "" + +#: part/templates/part/part_base.html:145 +msgid "Part is not active" +msgstr "" + +#: part/templates/part/part_base.html:153 +msgid "Part is virtual (not a physical part)" +msgstr "" + +#: part/templates/part/part_base.html:163 +#: part/templates/part/part_base.html:690 +msgid "Show Part Details" +msgstr "" + +#: part/templates/part/part_base.html:218 +#: stock/templates/stock/item_base.html:388 +msgid "Allocated to Build Orders" +msgstr "" + +#: part/templates/part/part_base.html:227 +#: stock/templates/stock/item_base.html:381 +msgid "Allocated to Sales Orders" +msgstr "" + +#: part/templates/part/part_base.html:300 +msgid "Minimum stock level" +msgstr "" + +#: part/templates/part/part_base.html:331 templates/js/translated/bom.js:1071 +#: templates/js/translated/part.js:1270 templates/js/translated/part.js:2463 +#: templates/js/translated/pricing.js:391 +#: templates/js/translated/pricing.js:1054 +msgid "Price Range" +msgstr "" + +#: part/templates/part/part_base.html:361 +msgid "Latest Serial Number" +msgstr "" + +#: part/templates/part/part_base.html:365 +#: stock/templates/stock/item_base.html:322 +msgid "Search for serial number" +msgstr "" + +#: part/templates/part/part_base.html:453 +msgid "Part QR Code" +msgstr "" + +#: part/templates/part/part_base.html:470 +msgid "Link Barcode to Part" +msgstr "" + +#: part/templates/part/part_base.html:520 +msgid "Calculate" +msgstr "" + +#: part/templates/part/part_base.html:537 +msgid "Remove associated image from this part" +msgstr "" + +#: part/templates/part/part_base.html:588 +msgid "No matching images found" +msgstr "" + +#: part/templates/part/part_base.html:684 +msgid "Hide Part Details" +msgstr "" + +#: part/templates/part/part_pricing.html:22 part/templates/part/prices.html:76 +#: part/templates/part/prices.html:227 templates/js/translated/pricing.js:485 +msgid "Supplier Pricing" +msgstr "" + +#: part/templates/part/part_pricing.html:26 +#: part/templates/part/part_pricing.html:52 +#: part/templates/part/part_pricing.html:95 +#: part/templates/part/part_pricing.html:110 +msgid "Unit Cost" +msgstr "" + +#: part/templates/part/part_pricing.html:40 +msgid "No supplier pricing available" +msgstr "" + +#: part/templates/part/part_pricing.html:48 part/templates/part/prices.html:90 +#: part/templates/part/prices.html:250 +msgid "BOM Pricing" +msgstr "" + +#: part/templates/part/part_pricing.html:66 +msgid "Unit Purchase Price" +msgstr "" + +#: part/templates/part/part_pricing.html:72 +msgid "Total Purchase Price" +msgstr "" + +#: part/templates/part/part_pricing.html:83 +msgid "No BOM pricing available" +msgstr "" + +#: part/templates/part/part_pricing.html:92 +msgid "Internal Price" +msgstr "" + +#: part/templates/part/part_pricing.html:123 +msgid "No pricing information is available for this part." +msgstr "" + +#: part/templates/part/part_scheduling.html:14 +msgid "Scheduled Quantity" +msgstr "" + +#: part/templates/part/part_sidebar.html:11 +msgid "Variants" +msgstr "" + +#: part/templates/part/part_sidebar.html:14 +#: stock/templates/stock/loc_link.html:3 stock/templates/stock/location.html:24 +#: stock/templates/stock/stock_app_base.html:10 +#: templates/InvenTree/search.html:153 +#: templates/InvenTree/settings/sidebar.html:51 +#: templates/js/translated/part.js:1248 templates/js/translated/part.js:2151 +#: templates/js/translated/part.js:2411 templates/js/translated/stock.js:1059 +#: templates/js/translated/stock.js:2070 templates/navbar.html:31 +msgid "Stock" +msgstr "" + +#: part/templates/part/part_sidebar.html:30 +#: templates/InvenTree/settings/sidebar.html:39 +msgid "Pricing" +msgstr "" + +#: part/templates/part/part_sidebar.html:44 +msgid "Scheduling" +msgstr "" + +#: part/templates/part/part_sidebar.html:54 +msgid "Test Templates" +msgstr "" + +#: part/templates/part/part_thumb.html:11 +msgid "Select from existing images" +msgstr "" + +#: part/templates/part/prices.html:11 +msgid "Pricing Overview" +msgstr "" + +#: part/templates/part/prices.html:14 +msgid "Refresh Part Pricing" +msgstr "" + +#: part/templates/part/prices.html:17 +msgid "Override Part Pricing" +msgstr "" + +#: part/templates/part/prices.html:18 +#: templates/InvenTree/settings/settings_staff_js.html:80 +#: templates/InvenTree/settings/user.html:24 +#: templates/js/translated/helpers.js:100 +#: templates/js/translated/pricing.js:628 templates/notes_buttons.html:3 +#: templates/notes_buttons.html:4 +msgid "Edit" +msgstr "" + +#: part/templates/part/prices.html:28 stock/admin.py:251 +#: stock/templates/stock/item_base.html:446 +#: templates/js/translated/company.js:1703 +#: templates/js/translated/company.js:1713 +#: templates/js/translated/stock.js:2246 +msgid "Last Updated" +msgstr "" + +#: part/templates/part/prices.html:37 part/templates/part/prices.html:127 +msgid "Price Category" +msgstr "" + +#: part/templates/part/prices.html:38 part/templates/part/prices.html:128 +msgid "Minimum" +msgstr "" + +#: part/templates/part/prices.html:39 part/templates/part/prices.html:129 +msgid "Maximum" +msgstr "" + +#: part/templates/part/prices.html:51 part/templates/part/prices.html:174 +msgid "Internal Pricing" +msgstr "" + +#: part/templates/part/prices.html:64 part/templates/part/prices.html:206 +msgid "Purchase History" +msgstr "" + +#: part/templates/part/prices.html:98 part/templates/part/prices.html:274 +msgid "Variant Pricing" +msgstr "" + +#: part/templates/part/prices.html:106 +msgid "Pricing Overrides" +msgstr "" + +#: part/templates/part/prices.html:113 +msgid "Overall Pricing" +msgstr "" + +#: part/templates/part/prices.html:149 part/templates/part/prices.html:326 +msgid "Sale History" +msgstr "" + +#: part/templates/part/prices.html:157 +msgid "Sale price data is not available for this part" +msgstr "" + +#: part/templates/part/prices.html:164 +msgid "Price range data is not available for this part." +msgstr "" + +#: part/templates/part/prices.html:175 part/templates/part/prices.html:207 +#: part/templates/part/prices.html:228 part/templates/part/prices.html:251 +#: part/templates/part/prices.html:275 part/templates/part/prices.html:298 +#: part/templates/part/prices.html:327 +msgid "Jump to overview" +msgstr "" + +#: part/templates/part/prices.html:180 +msgid "Add Internal Price Break" +msgstr "" + +#: part/templates/part/prices.html:297 +msgid "Sale Pricing" +msgstr "" + +#: part/templates/part/prices.html:303 +msgid "Add Sell Price Break" +msgstr "" + +#: part/templates/part/pricing_javascript.html:24 +msgid "Update Pricing" +msgstr "" + +#: part/templates/part/stock_count.html:7 +#: templates/js/translated/model_renderers.js:227 +#: templates/js/translated/part.js:706 templates/js/translated/part.js:2146 +#: templates/js/translated/part.js:2148 +msgid "No Stock" +msgstr "" + +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 +msgid "Low Stock" +msgstr "" + +#: part/templates/part/upload_bom.html:8 +msgid "Return to BOM" +msgstr "" + +#: part/templates/part/upload_bom.html:13 +msgid "Upload Bill of Materials" +msgstr "" + +#: part/templates/part/upload_bom.html:19 +msgid "BOM upload requirements" +msgstr "" + +#: part/templates/part/upload_bom.html:23 +#: part/templates/part/upload_bom.html:90 +msgid "Upload BOM File" +msgstr "" + +#: part/templates/part/upload_bom.html:29 +msgid "Submit BOM Data" +msgstr "" + +#: part/templates/part/upload_bom.html:37 +msgid "Requirements for BOM upload" +msgstr "" + +#: part/templates/part/upload_bom.html:39 +msgid "The BOM file must contain the required named columns as provided in the " +msgstr "" + +#: part/templates/part/upload_bom.html:39 +msgid "BOM Upload Template" +msgstr "" + +#: part/templates/part/upload_bom.html:40 +msgid "Each part must already exist in the database" +msgstr "" + +#: part/templates/part/variant_part.html:9 +msgid "Create new part variant" +msgstr "" + +#: part/templates/part/variant_part.html:10 +msgid "Create a new variant part from this template" +msgstr "" + +#: part/views.py:111 +msgid "Match References" +msgstr "" + +#: part/views.py:275 +#, python-brace-format +msgid "Can't import part {new_part.name} because there is no category assigned" +msgstr "" + +#: part/views.py:425 +msgid "Select Part Image" +msgstr "" + +#: part/views.py:448 +msgid "Updated part image" +msgstr "" + +#: part/views.py:451 +msgid "Part image not found" +msgstr "" + +#: part/views.py:545 +msgid "Part Pricing" +msgstr "" + +#: plugin/api.py:170 +msgid "Plugin cannot be deleted as it is currently active" +msgstr "" + +#: plugin/base/action/api.py:32 +msgid "No action specified" +msgstr "" + +#: plugin/base/action/api.py:41 +msgid "No matching action found" +msgstr "" + +#: plugin/base/barcodes/api.py:124 plugin/base/barcodes/api.py:328 +#: plugin/base/barcodes/api.py:503 +msgid "No match found for barcode data" +msgstr "" + +#: plugin/base/barcodes/api.py:128 +msgid "Match found for barcode data" +msgstr "" + +#: plugin/base/barcodes/api.py:154 +#: templates/js/translated/purchase_order.js:1406 +msgid "Barcode matches existing item" +msgstr "" + +#: plugin/base/barcodes/api.py:293 +msgid "No matching part data found" +msgstr "" + +#: plugin/base/barcodes/api.py:310 +msgid "No matching supplier parts found" +msgstr "" + +#: plugin/base/barcodes/api.py:314 +msgid "Multiple matching supplier parts found" +msgstr "" + +#: plugin/base/barcodes/api.py:338 +msgid "Matched supplier part" +msgstr "" + +#: plugin/base/barcodes/api.py:387 +msgid "Item has already been received" +msgstr "" + +#: plugin/base/barcodes/api.py:424 +msgid "No match for supplier barcode" +msgstr "" + +#: plugin/base/barcodes/api.py:467 +msgid "Multiple matching line items found" +msgstr "" + +#: plugin/base/barcodes/api.py:470 +msgid "No matching line item found" +msgstr "" + +#: plugin/base/barcodes/api.py:508 plugin/base/barcodes/api.py:515 +msgid "Barcode does not match an existing stock item" +msgstr "" + +#: plugin/base/barcodes/api.py:526 +msgid "Stock item does not match line item" +msgstr "" + +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2783 +#: templates/js/translated/sales_order.js:1953 +msgid "Insufficient stock available" +msgstr "" + +#: plugin/base/barcodes/api.py:559 +msgid "Stock item allocated to sales order" +msgstr "" + +#: plugin/base/barcodes/api.py:563 +msgid "Not enough information" +msgstr "" + +#: plugin/base/barcodes/mixins.py:147 plugin/base/barcodes/mixins.py:179 +msgid "Found multiple matching supplier parts for barcode" +msgstr "" + +#: plugin/base/barcodes/mixins.py:197 +#, python-brace-format +msgid "Found multiple purchase orders matching '{order}'" +msgstr "" + +#: plugin/base/barcodes/mixins.py:201 +#, python-brace-format +msgid "No matching purchase order for '{order}'" +msgstr "" + +#: plugin/base/barcodes/mixins.py:206 +msgid "Purchase order does not match supplier" +msgstr "" + +#: plugin/base/barcodes/mixins.py:440 +msgid "Failed to find pending line item for supplier part" +msgstr "" + +#: plugin/base/barcodes/mixins.py:471 +msgid "Further information required to receive line item" +msgstr "" + +#: plugin/base/barcodes/mixins.py:479 +msgid "Received purchase order line item" +msgstr "" + +#: plugin/base/barcodes/serializers.py:21 +msgid "Scanned barcode data" +msgstr "" + +#: plugin/base/barcodes/serializers.py:81 +msgid "Purchase Order to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:87 +msgid "Purchase order is not pending" +msgstr "" + +#: plugin/base/barcodes/serializers.py:105 +msgid "PurchaseOrder to receive items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:111 +msgid "Purchase order has not been placed" +msgstr "" + +#: plugin/base/barcodes/serializers.py:119 +msgid "Location to receive items into" +msgstr "" + +#: plugin/base/barcodes/serializers.py:125 +msgid "Cannot select a structural location" +msgstr "" + +#: plugin/base/barcodes/serializers.py:139 +msgid "Sales Order to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:145 +msgid "Sales order is not pending" +msgstr "" + +#: plugin/base/barcodes/serializers.py:153 +msgid "Sales order line item to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:160 +msgid "Sales order shipment to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:166 +msgid "Shipment has already been delivered" +msgstr "" + +#: plugin/base/barcodes/serializers.py:171 +msgid "Quantity to allocate" +msgstr "" + +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 +msgid "Label printing failed" +msgstr "" + +#: plugin/base/label/mixins.py:56 +msgid "Error rendering label to PDF" +msgstr "" + +#: plugin/base/label/mixins.py:70 +msgid "Error rendering label to HTML" +msgstr "" + +#: plugin/base/label/mixins.py:151 +msgid "No items provided to print" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:25 +msgid "InvenTree Barcodes" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:26 +msgid "Provides native support for barcodes" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:28 +#: plugin/builtin/integration/core_notifications.py:35 +#: plugin/builtin/integration/currency_exchange.py:21 +#: plugin/builtin/labels/inventree_label.py:22 +#: plugin/builtin/labels/inventree_machine.py:64 +#: plugin/builtin/labels/label_sheet.py:64 +#: plugin/builtin/suppliers/digikey.py:19 plugin/builtin/suppliers/lcsc.py:21 +#: plugin/builtin/suppliers/mouser.py:19 plugin/builtin/suppliers/tme.py:21 +msgid "InvenTree contributors" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:34 +msgid "InvenTree Notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:36 +msgid "Integrated outgoing notification methods" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:41 +#: plugin/builtin/integration/core_notifications.py:80 +msgid "Enable email notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:42 +#: plugin/builtin/integration/core_notifications.py:81 +msgid "Allow sending of emails for event notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:47 +msgid "Enable slack notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:49 +msgid "Allow sending of slack channel messages for event notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:55 +msgid "Slack incoming webhook url" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:56 +msgid "URL that is used to send messages to a slack channel" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:164 +msgid "Open link" +msgstr "" + +#: plugin/builtin/integration/currency_exchange.py:22 +msgid "InvenTree Currency Exchange" +msgstr "" + +#: plugin/builtin/integration/currency_exchange.py:23 +msgid "Default currency exchange integration" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:19 +msgid "InvenTree PDF label printer" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:20 +msgid "Provides native support for printing PDF labels" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:28 +#: plugin/builtin/labels/label_sheet.py:70 +msgid "Debug mode" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:29 +#: plugin/builtin/labels/label_sheet.py:71 +msgid "Enable debug mode - returns raw HTML instead of PDF" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:61 +msgid "InvenTree machine label printer" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:62 +msgid "Provides support for printing using a machine" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:149 +msgid "last used" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:166 +msgid "Options" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:30 +msgid "Page size for the label sheet" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:35 +msgid "Skip Labels" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:36 +msgid "Skip this number of labels when printing label sheets" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:42 +msgid "Border" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:43 +msgid "Print a border around each label" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:48 report/models.py:308 +msgid "Landscape" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:49 +msgid "Print the label sheet in landscape mode" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:61 +msgid "InvenTree Label Sheet Printer" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:62 +msgid "Arrays multiple labels onto a single sheet" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:107 +msgid "Label is too large for page size" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:141 +msgid "No labels were generated" +msgstr "" + +#: plugin/builtin/suppliers/digikey.py:16 +msgid "Supplier Integration - DigiKey" +msgstr "" + +#: plugin/builtin/suppliers/digikey.py:17 +msgid "Provides support for scanning DigiKey barcodes" +msgstr "" + +#: plugin/builtin/suppliers/digikey.py:26 +msgid "The Supplier which acts as 'DigiKey'" +msgstr "" + +#: plugin/builtin/suppliers/lcsc.py:18 +msgid "Supplier Integration - LCSC" +msgstr "" + +#: plugin/builtin/suppliers/lcsc.py:19 +msgid "Provides support for scanning LCSC barcodes" +msgstr "" + +#: plugin/builtin/suppliers/lcsc.py:27 +msgid "The Supplier which acts as 'LCSC'" +msgstr "" + +#: plugin/builtin/suppliers/mouser.py:16 +msgid "Supplier Integration - Mouser" +msgstr "" + +#: plugin/builtin/suppliers/mouser.py:17 +msgid "Provides support for scanning Mouser barcodes" +msgstr "" + +#: plugin/builtin/suppliers/mouser.py:25 +msgid "The Supplier which acts as 'Mouser'" +msgstr "" + +#: plugin/builtin/suppliers/tme.py:18 +msgid "Supplier Integration - TME" +msgstr "" + +#: plugin/builtin/suppliers/tme.py:19 +msgid "Provides support for scanning TME barcodes" +msgstr "" + +#: plugin/builtin/suppliers/tme.py:27 +msgid "The Supplier which acts as 'TME'" +msgstr "" + +#: plugin/installer.py:194 plugin/installer.py:282 +msgid "Only staff users can administer plugins" +msgstr "" + +#: plugin/installer.py:197 +msgid "Plugin installation is disabled" +msgstr "" + +#: plugin/installer.py:248 +msgid "Installed plugin successfully" +msgstr "" + +#: plugin/installer.py:254 +#, python-brace-format +msgid "Installed plugin into {path}" +msgstr "" + +#: plugin/installer.py:273 +msgid "Plugin was not found in registry" +msgstr "" + +#: plugin/installer.py:276 +msgid "Plugin is not a packaged plugin" +msgstr "" + +#: plugin/installer.py:279 +msgid "Plugin package name not found" +msgstr "" + +#: plugin/installer.py:299 +msgid "Plugin uninstalling is disabled" +msgstr "" + +#: plugin/installer.py:303 +msgid "Plugin cannot be uninstalled as it is currently active" +msgstr "" + +#: plugin/installer.py:316 +msgid "Uninstalled plugin successfully" +msgstr "" + +#: plugin/models.py:36 +msgid "Plugin Configuration" +msgstr "" + +#: plugin/models.py:37 +msgid "Plugin Configurations" +msgstr "" + +#: plugin/models.py:43 users/models.py:100 +msgid "Key" +msgstr "" + +#: plugin/models.py:44 +msgid "Key of plugin" +msgstr "" + +#: plugin/models.py:52 +msgid "PluginName of the plugin" +msgstr "" + +#: plugin/models.py:59 plugin/serializers.py:90 +msgid "Package Name" +msgstr "" + +#: plugin/models.py:61 +msgid "Name of the installed package, if the plugin was installed via PIP" +msgstr "" + +#: plugin/models.py:66 +msgid "Is the plugin active" +msgstr "" + +#: plugin/models.py:157 templates/js/translated/table_filters.js:370 +#: templates/js/translated/table_filters.js:504 +msgid "Installed" +msgstr "" + +#: plugin/models.py:166 +msgid "Sample plugin" +msgstr "" + +#: plugin/models.py:174 +msgid "Builtin Plugin" +msgstr "" + +#: plugin/models.py:182 +msgid "Package Plugin" +msgstr "" + +#: plugin/models.py:220 report/models.py:475 +#: templates/InvenTree/settings/plugin_settings.html:9 +#: templates/js/translated/plugin.js:51 +msgid "Plugin" +msgstr "" + +#: plugin/models.py:267 +msgid "Method" +msgstr "" + +#: plugin/plugin.py:270 +msgid "No author found" +msgstr "" + +#: plugin/registry.py:534 +#, python-brace-format +msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" +msgstr "" + +#: plugin/registry.py:537 +#, python-brace-format +msgid "Plugin requires at least version {v}" +msgstr "" + +#: plugin/registry.py:539 +#, python-brace-format +msgid "Plugin requires at most version {v}" +msgstr "" + +#: plugin/samples/integration/sample.py:52 +msgid "Enable PO" +msgstr "" + +#: plugin/samples/integration/sample.py:53 +msgid "Enable PO functionality in InvenTree interface" +msgstr "" + +#: plugin/samples/integration/sample.py:58 +msgid "API Key" +msgstr "" + +#: plugin/samples/integration/sample.py:59 +msgid "Key required for accessing external API" +msgstr "" + +#: plugin/samples/integration/sample.py:63 +msgid "Numerical" +msgstr "" + +#: plugin/samples/integration/sample.py:64 +msgid "A numerical setting" +msgstr "" + +#: plugin/samples/integration/sample.py:69 +msgid "Choice Setting" +msgstr "" + +#: plugin/samples/integration/sample.py:70 +msgid "A setting with multiple choices" +msgstr "" + +#: plugin/samples/integration/sample_currency_exchange.py:15 +msgid "Sample currency exchange plugin" +msgstr "" + +#: plugin/samples/integration/sample_currency_exchange.py:18 +msgid "InvenTree Contributors" +msgstr "" + +#: plugin/serializers.py:81 +msgid "Source URL" +msgstr "" + +#: plugin/serializers.py:83 +msgid "Source for the package - this can be a custom registry or a VCS path" +msgstr "" + +#: plugin/serializers.py:92 +msgid "Name for the Plugin Package - can also contain a version indicator" +msgstr "" + +#: plugin/serializers.py:99 +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:86 +msgid "Version" +msgstr "" + +#: plugin/serializers.py:101 +msgid "Version specifier for the plugin. Leave blank for latest version." +msgstr "" + +#: plugin/serializers.py:106 +msgid "Confirm plugin installation" +msgstr "" + +#: plugin/serializers.py:108 +msgid "This will install this plugin now into the current instance. The instance will go into maintenance." +msgstr "" + +#: plugin/serializers.py:121 +msgid "Installation not confirmed" +msgstr "" + +#: plugin/serializers.py:123 +msgid "Either packagename of URL must be provided" +msgstr "" + +#: plugin/serializers.py:161 +msgid "Full reload" +msgstr "" + +#: plugin/serializers.py:162 +msgid "Perform a full reload of the plugin registry" +msgstr "" + +#: plugin/serializers.py:168 +msgid "Force reload" +msgstr "" + +#: plugin/serializers.py:170 +msgid "Force a reload of the plugin registry, even if it is already loaded" +msgstr "" + +#: plugin/serializers.py:177 +msgid "Collect plugins" +msgstr "" + +#: plugin/serializers.py:178 +msgid "Collect plugins and add them to the registry" +msgstr "" + +#: plugin/serializers.py:205 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:206 +msgid "Activate this plugin" +msgstr "" + +#: plugin/serializers.py:226 +msgid "Delete configuration" +msgstr "" + +#: plugin/serializers.py:227 +msgid "Delete the plugin configuration from the database" +msgstr "" + +#: report/api.py:88 +msgid "No valid objects provided to template" +msgstr "" + +#: report/api.py:103 report/models.py:439 report/serializers.py:98 +#: report/serializers.py:148 templates/js/translated/purchase_order.js:1747 +#: templates/js/translated/return_order.js:353 +#: templates/js/translated/sales_order.js:887 +#: templates/js/translated/sales_order.js:1047 +msgid "Items" +msgstr "" + +#: report/api.py:180 +msgid "Plugin not found" +msgstr "" + +#: report/api.py:182 +msgid "Plugin is not active" +msgstr "" + +#: report/api.py:184 +msgid "Plugin does not support label printing" +msgstr "" + +#: report/api.py:233 +msgid "Invalid label dimensions" +msgstr "" + +#: report/api.py:248 report/api.py:329 +msgid "No valid items provided to template" +msgstr "" + +#: report/api.py:283 +msgid "Error printing label" +msgstr "" + +#: report/api.py:375 report/api.py:411 +#, python-brace-format +msgid "Template file '{template}' is missing or does not exist" +msgstr "" + +#: report/helpers.py:43 +msgid "A4" +msgstr "" + +#: report/helpers.py:44 +msgid "A3" +msgstr "" + +#: report/helpers.py:45 +msgid "Legal" +msgstr "" + +#: report/helpers.py:46 +msgid "Letter" +msgstr "" + +#: report/models.py:119 +msgid "Template file with this name already exists" +msgstr "" + +#: report/models.py:151 +msgid "Template name" +msgstr "" + +#: report/models.py:157 +msgid "Template description" +msgstr "" + +#: report/models.py:163 +msgid "Revision number (auto-increments)" +msgstr "" + +#: report/models.py:203 +msgid "Filename Pattern" +msgstr "" + +#: report/models.py:204 +msgid "Pattern for generating filenames" +msgstr "" + +#: report/models.py:209 +msgid "Template is enabled" +msgstr "" + +#: report/models.py:215 +msgid "Target model type for template" +msgstr "" + +#: report/models.py:235 +msgid "Filters" +msgstr "" + +#: report/models.py:236 +msgid "Template query filters (comma-separated list of key=value pairs)" +msgstr "" + +#: report/models.py:295 report/models.py:362 +msgid "Template file" +msgstr "" + +#: report/models.py:303 +msgid "Page size for PDF reports" +msgstr "" + +#: report/models.py:309 +msgid "Render report in landscape orientation" +msgstr "" + +#: report/models.py:368 +msgid "Width [mm]" +msgstr "" + +#: report/models.py:369 +msgid "Label width, specified in mm" +msgstr "" + +#: report/models.py:375 +msgid "Height [mm]" +msgstr "" + +#: report/models.py:376 +msgid "Label height, specified in mm" +msgstr "" + +#: report/models.py:439 +msgid "Number of items to process" +msgstr "" + +#: report/models.py:445 +msgid "Report generation is complete" +msgstr "" + +#: report/models.py:449 templates/js/translated/build.js:2352 +msgid "Progress" +msgstr "" + +#: report/models.py:449 +msgid "Report generation progress" +msgstr "" + +#: report/models.py:457 +msgid "Report Template" +msgstr "" + +#: report/models.py:464 report/models.py:487 +msgid "Output File" +msgstr "" + +#: report/models.py:465 report/models.py:488 +msgid "Generated output file" +msgstr "" + +#: report/models.py:476 +msgid "Label output plugin" +msgstr "" + +#: report/models.py:480 +msgid "Label Template" +msgstr "" + +#: report/models.py:503 +msgid "Snippet" +msgstr "" + +#: report/models.py:504 +msgid "Report snippet file" +msgstr "" + +#: report/models.py:511 +msgid "Snippet file description" +msgstr "" + +#: report/models.py:529 +msgid "Asset" +msgstr "" + +#: report/models.py:530 +msgid "Report asset file" +msgstr "" + +#: report/models.py:537 +msgid "Asset file description" +msgstr "" + +#: report/serializers.py:91 +msgid "Select report template" +msgstr "" + +#: report/serializers.py:99 report/serializers.py:149 +msgid "List of item primary keys to include in the report" +msgstr "" + +#: report/serializers.py:132 +msgid "Select label template" +msgstr "" + +#: report/serializers.py:140 +msgid "Printing Plugin" +msgstr "" + +#: report/serializers.py:141 +msgid "Select plugin to use for label printing" +msgstr "" + +#: report/templates/label/part_label.html:31 +#: report/templates/label/stockitem_qr.html:21 +#: report/templates/label/stocklocation_qr.html:20 +#: templates/allauth_2fa/setup.html:18 +msgid "QR Code" +msgstr "" + +#: report/templates/label/part_label_code128.html:31 +#: report/templates/label/stocklocation_qr_and_text.html:31 +#: templates/qr_code.html:7 +msgid "QR code" +msgstr "" + +#: report/templates/report/inventree_bill_of_materials_report.html:133 +msgid "Materials needed" +msgstr "" + +#: report/templates/report/inventree_build_order_report.html:146 +msgid "Required For" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:15 +msgid "Supplier was deleted" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:30 +#: report/templates/report/inventree_sales_order_report.html:30 +#: templates/js/translated/order.js:316 templates/js/translated/pricing.js:527 +#: templates/js/translated/pricing.js:596 +#: templates/js/translated/pricing.js:834 +#: templates/js/translated/purchase_order.js:2115 +#: templates/js/translated/sales_order.js:1873 +msgid "Unit Price" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:55 +#: report/templates/report/inventree_return_order_report.html:48 +#: report/templates/report/inventree_sales_order_report.html:55 +msgid "Extra Line Items" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:72 +#: report/templates/report/inventree_sales_order_report.html:72 +#: templates/js/translated/purchase_order.js:2017 +#: templates/js/translated/sales_order.js:1842 +msgid "Total" +msgstr "" + +#: report/templates/report/inventree_return_order_report.html:25 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:823 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 +#: templates/js/translated/build.js:520 templates/js/translated/build.js:1542 +#: templates/js/translated/build.js:2530 +#: templates/js/translated/model_renderers.js:230 +#: templates/js/translated/return_order.js:539 +#: templates/js/translated/return_order.js:723 +#: templates/js/translated/sales_order.js:315 +#: templates/js/translated/sales_order.js:1647 +#: templates/js/translated/sales_order.js:1732 +#: templates/js/translated/stock.js:596 +msgid "Serial Number" +msgstr "" + +#: report/templates/report/inventree_stock_location_report.html:97 +msgid "Stock location items" +msgstr "" + +#: report/templates/report/inventree_test_report.html:21 +msgid "Stock Item Test Report" +msgstr "" + +#: report/templates/report/inventree_test_report.html:97 +msgid "Test Results" +msgstr "" + +#: report/templates/report/inventree_test_report.html:102 +#: templates/js/translated/stock.js:1495 +msgid "Test" +msgstr "" + +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2459 +msgid "Result" +msgstr "" + +#: report/templates/report/inventree_test_report.html:129 +msgid "Pass" +msgstr "" + +#: report/templates/report/inventree_test_report.html:131 +msgid "Fail" +msgstr "" + +#: report/templates/report/inventree_test_report.html:138 +msgid "No result (required)" +msgstr "" + +#: report/templates/report/inventree_test_report.html:140 +msgid "No result" +msgstr "" + +#: report/templates/report/inventree_test_report.html:153 +#: stock/serializers.py:595 stock/templates/stock/stock_sidebar.html:16 +msgid "Installed Items" +msgstr "" + +#: report/templates/report/inventree_test_report.html:167 stock/admin.py:161 +#: templates/js/translated/stock.js:700 templates/js/translated/stock.js:871 +#: templates/js/translated/stock.js:3110 +msgid "Serial" +msgstr "" + +#: report/templatetags/report.py:96 +msgid "Asset file does not exist" +msgstr "" + +#: report/templatetags/report.py:152 report/templatetags/report.py:217 +msgid "Image file not found" +msgstr "" + +#: report/templatetags/report.py:242 +msgid "part_image tag requires a Part instance" +msgstr "" + +#: report/templatetags/report.py:283 +msgid "company_image tag requires a Company instance" +msgstr "" + +#: stock/admin.py:51 stock/admin.py:171 +msgid "Location ID" +msgstr "" + +#: stock/admin.py:63 stock/templates/stock/location.html:131 +#: stock/templates/stock/location.html:137 +msgid "Location Path" +msgstr "" + +#: stock/admin.py:148 +msgid "Stock Item ID" +msgstr "" + +#: stock/admin.py:167 +msgid "Status Code" +msgstr "" + +#: stock/admin.py:179 +msgid "Supplier Part ID" +msgstr "" + +#: stock/admin.py:184 +msgid "Supplier Part SKU" +msgstr "" + +#: stock/admin.py:189 +msgid "Supplier ID" +msgstr "" + +#: stock/admin.py:195 +msgid "Supplier Name" +msgstr "" + +#: stock/admin.py:200 +msgid "Customer ID" +msgstr "" + +#: stock/admin.py:205 stock/models.py:803 +#: stock/templates/stock/item_base.html:354 +msgid "Installed In" +msgstr "" + +#: stock/admin.py:210 +msgid "Build ID" +msgstr "" + +#: stock/admin.py:220 +msgid "Sales Order ID" +msgstr "" + +#: stock/admin.py:225 +msgid "Purchase Order ID" +msgstr "" + +#: stock/admin.py:240 +msgid "Review Needed" +msgstr "" + +#: stock/admin.py:245 +msgid "Delete on Deplete" +msgstr "" + +#: stock/admin.py:260 stock/models.py:897 +#: stock/templates/stock/item_base.html:433 +#: templates/js/translated/stock.js:2230 users/models.py:124 +msgid "Expiry Date" +msgstr "" + +#: stock/api.py:312 +msgid "Filter by location depth" +msgstr "" + +#: stock/api.py:332 +msgid "Filter by top-level locations" +msgstr "" + +#: stock/api.py:347 +msgid "Include sub-locations in filtered results" +msgstr "" + +#: stock/api.py:369 stock/serializers.py:1152 +msgid "Parent Location" +msgstr "" + +#: stock/api.py:370 +msgid "Filter by parent location" +msgstr "" + +#: stock/api.py:617 templates/js/translated/table_filters.js:427 +msgid "External Location" +msgstr "" + +#: stock/api.py:805 +msgid "Part Tree" +msgstr "" + +#: stock/api.py:835 +msgid "Expiry date before" +msgstr "" + +#: stock/api.py:839 +msgid "Expiry date after" +msgstr "" + +#: stock/api.py:842 stock/serializers.py:600 +#: stock/templates/stock/item_base.html:439 +#: templates/js/translated/table_filters.js:441 +msgid "Stale" +msgstr "" + +#: stock/api.py:929 +msgid "Quantity is required" +msgstr "" + +#: stock/api.py:935 +msgid "Valid part must be supplied" +msgstr "" + +#: stock/api.py:966 +msgid "The given supplier part does not exist" +msgstr "" + +#: stock/api.py:976 +msgid "The supplier part has a pack size defined, but flag use_pack_size not set" +msgstr "" + +#: stock/api.py:1007 +msgid "Serial numbers cannot be supplied for a non-trackable part" +msgstr "" + +#: stock/models.py:61 +msgid "Stock Location type" +msgstr "" + +#: stock/models.py:62 +msgid "Stock Location types" +msgstr "" + +#: stock/models.py:88 +msgid "Default icon for all locations that have no icon set (optional)" +msgstr "" + +#: stock/models.py:125 stock/models.py:785 +#: stock/templates/stock/location.html:17 +#: stock/templates/stock/stock_app_base.html:8 +msgid "Stock Location" +msgstr "" + +#: stock/models.py:126 stock/templates/stock/location.html:186 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 +#: users/models.py:205 +msgid "Stock Locations" +msgstr "" + +#: stock/models.py:168 stock/models.py:946 +#: stock/templates/stock/item_base.html:247 +msgid "Owner" +msgstr "" + +#: stock/models.py:169 stock/models.py:947 +msgid "Select Owner" +msgstr "" + +#: stock/models.py:177 +msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." +msgstr "" + +#: stock/models.py:184 templates/js/translated/stock.js:2781 +#: templates/js/translated/table_filters.js:243 +msgid "External" +msgstr "" + +#: stock/models.py:185 +msgid "This is an external stock location" +msgstr "" + +#: stock/models.py:191 templates/js/translated/stock.js:2790 +#: templates/js/translated/table_filters.js:246 +msgid "Location type" +msgstr "" + +#: stock/models.py:195 +msgid "Stock location type of this location" +msgstr "" + +#: stock/models.py:262 +msgid "You cannot make this stock location structural because some stock items are already located into it!" +msgstr "" + +#: stock/models.py:642 +msgid "Stock items cannot be located into structural stock locations!" +msgstr "" + +#: stock/models.py:669 stock/serializers.py:479 +msgid "Stock item cannot be created for virtual parts" +msgstr "" + +#: stock/models.py:686 +#, python-brace-format +msgid "Part type ('{self.supplier_part.part}') must be {self.part}" +msgstr "" + +#: stock/models.py:696 stock/models.py:709 +msgid "Quantity must be 1 for item with a serial number" +msgstr "" + +#: stock/models.py:699 +msgid "Serial number cannot be set if quantity greater than 1" +msgstr "" + +#: stock/models.py:721 +msgid "Item cannot belong to itself" +msgstr "" + +#: stock/models.py:726 +msgid "Item must have a build reference if is_building=True" +msgstr "" + +#: stock/models.py:739 +msgid "Build reference does not point to the same part object" +msgstr "" + +#: stock/models.py:755 +msgid "Parent Stock Item" +msgstr "" + +#: stock/models.py:767 +msgid "Base part" +msgstr "" + +#: stock/models.py:777 +msgid "Select a matching supplier part for this stock item" +msgstr "" + +#: stock/models.py:789 +msgid "Where is this stock item located?" +msgstr "" + +#: stock/models.py:797 stock/serializers.py:1546 +msgid "Packaging this stock item is stored in" +msgstr "" + +#: stock/models.py:808 +msgid "Is this item installed in another item?" +msgstr "" + +#: stock/models.py:827 +msgid "Serial number for this item" +msgstr "" + +#: stock/models.py:841 stock/serializers.py:1529 +msgid "Batch code for this stock item" +msgstr "" + +#: stock/models.py:846 +msgid "Stock Quantity" +msgstr "" + +#: stock/models.py:856 +msgid "Source Build" +msgstr "" + +#: stock/models.py:859 +msgid "Build for this stock item" +msgstr "" + +#: stock/models.py:866 stock/templates/stock/item_base.html:363 +msgid "Consumed By" +msgstr "" + +#: stock/models.py:869 +msgid "Build order which consumed this stock item" +msgstr "" + +#: stock/models.py:878 +msgid "Source Purchase Order" +msgstr "" + +#: stock/models.py:882 +msgid "Purchase order for this stock item" +msgstr "" + +#: stock/models.py:888 +msgid "Destination Sales Order" +msgstr "" + +#: stock/models.py:899 +msgid "Expiry date for stock item. Stock will be considered expired after this date" +msgstr "" + +#: stock/models.py:917 +msgid "Delete on deplete" +msgstr "" + +#: stock/models.py:918 +msgid "Delete this Stock Item when stock is depleted" +msgstr "" + +#: stock/models.py:938 +msgid "Single unit purchase price at time of purchase" +msgstr "" + +#: stock/models.py:969 +msgid "Converted to part" +msgstr "" + +#: stock/models.py:1489 +msgid "Part is not set as trackable" +msgstr "" + +#: stock/models.py:1495 +msgid "Quantity must be integer" +msgstr "" + +#: stock/models.py:1503 +#, python-brace-format +msgid "Quantity must not exceed available stock quantity ({self.quantity})" +msgstr "" + +#: stock/models.py:1509 +msgid "Serial numbers must be a list of integers" +msgstr "" + +#: stock/models.py:1514 +msgid "Quantity does not match serial numbers" +msgstr "" + +#: stock/models.py:1522 stock/serializers.py:722 +msgid "Serial numbers already exist" +msgstr "" + +#: stock/models.py:1619 +msgid "Test template does not exist" +msgstr "" + +#: stock/models.py:1637 +msgid "Stock item has been assigned to a sales order" +msgstr "" + +#: stock/models.py:1641 +msgid "Stock item is installed in another item" +msgstr "" + +#: stock/models.py:1644 +msgid "Stock item contains other items" +msgstr "" + +#: stock/models.py:1647 +msgid "Stock item has been assigned to a customer" +msgstr "" + +#: stock/models.py:1650 +msgid "Stock item is currently in production" +msgstr "" + +#: stock/models.py:1653 +msgid "Serialized stock cannot be merged" +msgstr "" + +#: stock/models.py:1660 stock/serializers.py:1435 +msgid "Duplicate stock items" +msgstr "" + +#: stock/models.py:1664 +msgid "Stock items must refer to the same part" +msgstr "" + +#: stock/models.py:1672 +msgid "Stock items must refer to the same supplier part" +msgstr "" + +#: stock/models.py:1677 +msgid "Stock status codes must match" +msgstr "" + +#: stock/models.py:1938 +msgid "StockItem cannot be moved as it is not in stock" +msgstr "" + +#: stock/models.py:2319 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2352 +msgid "Entry notes" +msgstr "" + +#: stock/models.py:2392 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2425 +msgid "Value must be provided for this test" +msgstr "" + +#: stock/models.py:2430 +msgid "Attachment must be uploaded for this test" +msgstr "" + +#: stock/models.py:2435 +msgid "Invalid value for this test" +msgstr "" + +#: stock/models.py:2459 +msgid "Test result" +msgstr "" + +#: stock/models.py:2466 +msgid "Test output value" +msgstr "" + +#: stock/models.py:2474 +msgid "Test result attachment" +msgstr "" + +#: stock/models.py:2478 +msgid "Test notes" +msgstr "" + +#: stock/models.py:2486 templates/js/translated/stock.js:1548 +msgid "Test station" +msgstr "" + +#: stock/models.py:2487 +msgid "The identifier of the test station where the test was performed" +msgstr "" + +#: stock/models.py:2493 +msgid "Started" +msgstr "" + +#: stock/models.py:2494 +msgid "The timestamp of the test start" +msgstr "" + +#: stock/models.py:2500 +msgid "Finished" +msgstr "" + +#: stock/models.py:2501 +msgid "The timestamp of the test finish" +msgstr "" + +#: stock/serializers.py:76 +msgid "Generated batch code" +msgstr "" + +#: stock/serializers.py:85 +msgid "Select build order" +msgstr "" + +#: stock/serializers.py:94 +msgid "Select stock item to generate batch code for" +msgstr "" + +#: stock/serializers.py:103 +msgid "Select location to generate batch code for" +msgstr "" + +#: stock/serializers.py:112 +msgid "Select part to generate batch code for" +msgstr "" + +#: stock/serializers.py:121 +msgid "Select purchase order" +msgstr "" + +#: stock/serializers.py:128 +msgid "Enter quantity for batch code" +msgstr "" + +#: stock/serializers.py:151 +msgid "Generated serial number" +msgstr "" + +#: stock/serializers.py:160 +msgid "Select part to generate serial number for" +msgstr "" + +#: stock/serializers.py:168 +msgid "Quantity of serial numbers to generate" +msgstr "" + +#: stock/serializers.py:233 +msgid "Test template for this result" +msgstr "" + +#: stock/serializers.py:254 +msgid "Template ID or test name must be provided" +msgstr "" + +#: stock/serializers.py:286 +msgid "The test finished time cannot be earlier than the test started time" +msgstr "" + +#: stock/serializers.py:322 +msgid "Serial number is too large" +msgstr "" + +#: stock/serializers.py:451 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:452 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:471 +msgid "Use pack size when adding: the quantity defined is the number of packs" +msgstr "" + +#: stock/serializers.py:592 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:598 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:602 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:608 +msgid "Purchase price of this stock item, per unit or pack" +msgstr "" + +#: stock/serializers.py:627 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:633 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:657 +msgid "Enter number of stock items to serialize" +msgstr "" + +#: stock/serializers.py:670 +#, python-brace-format +msgid "Quantity must not exceed available stock quantity ({q})" +msgstr "" + +#: stock/serializers.py:677 +msgid "Enter serial numbers for new items" +msgstr "" + +#: stock/serializers.py:688 stock/serializers.py:1392 stock/serializers.py:1648 +msgid "Destination stock location" +msgstr "" + +#: stock/serializers.py:695 +msgid "Optional note field" +msgstr "" + +#: stock/serializers.py:705 +msgid "Serial numbers cannot be assigned to this part" +msgstr "" + +#: stock/serializers.py:760 +msgid "Select stock item to install" +msgstr "" + +#: stock/serializers.py:767 +msgid "Quantity to Install" +msgstr "" + +#: stock/serializers.py:768 +msgid "Enter the quantity of items to install" +msgstr "" + +#: stock/serializers.py:773 stock/serializers.py:853 stock/serializers.py:949 +#: stock/serializers.py:999 +msgid "Add transaction note (optional)" +msgstr "" + +#: stock/serializers.py:781 +msgid "Quantity to install must be at least 1" +msgstr "" + +#: stock/serializers.py:789 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:800 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:813 +msgid "Quantity to install must not exceed available quantity" +msgstr "" + +#: stock/serializers.py:848 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:883 +msgid "Select part to convert stock item into" +msgstr "" + +#: stock/serializers.py:896 +msgid "Selected part is not a valid option for conversion" +msgstr "" + +#: stock/serializers.py:913 +msgid "Cannot convert stock item with assigned SupplierPart" +msgstr "" + +#: stock/serializers.py:944 +msgid "Destination location for returned item" +msgstr "" + +#: stock/serializers.py:981 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:987 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:1083 stock/serializers.py:1160 +#: stock/templates/stock/location.html:165 +#: stock/templates/stock/location.html:222 +#: stock/templates/stock/location_sidebar.html:5 +msgid "Sublocations" +msgstr "" + +#: stock/serializers.py:1153 templates/js/translated/stock.js:152 +msgid "Parent stock location" +msgstr "" + +#: stock/serializers.py:1264 +msgid "Part must be salable" +msgstr "" + +#: stock/serializers.py:1268 +msgid "Item is allocated to a sales order" +msgstr "" + +#: stock/serializers.py:1272 +msgid "Item is allocated to a build order" +msgstr "" + +#: stock/serializers.py:1296 +msgid "Customer to assign stock items" +msgstr "" + +#: stock/serializers.py:1302 +msgid "Selected company is not a customer" +msgstr "" + +#: stock/serializers.py:1310 +msgid "Stock assignment notes" +msgstr "" + +#: stock/serializers.py:1320 stock/serializers.py:1574 +msgid "A list of stock items must be provided" +msgstr "" + +#: stock/serializers.py:1399 +msgid "Stock merging notes" +msgstr "" + +#: stock/serializers.py:1404 +msgid "Allow mismatched suppliers" +msgstr "" + +#: stock/serializers.py:1405 +msgid "Allow stock items with different supplier parts to be merged" +msgstr "" + +#: stock/serializers.py:1410 +msgid "Allow mismatched status" +msgstr "" + +#: stock/serializers.py:1411 +msgid "Allow stock items with different status codes to be merged" +msgstr "" + +#: stock/serializers.py:1421 +msgid "At least two stock items must be provided" +msgstr "" + +#: stock/serializers.py:1488 +msgid "No Change" +msgstr "" + +#: stock/serializers.py:1517 +msgid "StockItem primary key value" +msgstr "" + +#: stock/serializers.py:1536 +msgid "Stock item status code" +msgstr "" + +#: stock/serializers.py:1564 +msgid "Stock transaction notes" +msgstr "" + +#: stock/status_codes.py:11 +msgid "OK" +msgstr "" + +#: stock/status_codes.py:12 +msgid "Attention needed" +msgstr "" + +#: stock/status_codes.py:13 +msgid "Damaged" +msgstr "" + +#: stock/status_codes.py:14 +msgid "Destroyed" +msgstr "" + +#: stock/status_codes.py:15 +msgid "Rejected" +msgstr "" + +#: stock/status_codes.py:19 +msgid "Quarantined" +msgstr "" + +#: stock/status_codes.py:40 +msgid "Legacy stock tracking entry" +msgstr "" + +#: stock/status_codes.py:42 templates/js/translated/stock.js:544 +msgid "Stock item created" +msgstr "" + +#: stock/status_codes.py:45 +msgid "Edited stock item" +msgstr "" + +#: stock/status_codes.py:46 +msgid "Assigned serial number" +msgstr "" + +#: stock/status_codes.py:49 +msgid "Stock counted" +msgstr "" + +#: stock/status_codes.py:50 +msgid "Stock manually added" +msgstr "" + +#: stock/status_codes.py:51 +msgid "Stock manually removed" +msgstr "" + +#: stock/status_codes.py:54 +msgid "Location changed" +msgstr "" + +#: stock/status_codes.py:55 +msgid "Stock updated" +msgstr "" + +#: stock/status_codes.py:58 +msgid "Installed into assembly" +msgstr "" + +#: stock/status_codes.py:59 +msgid "Removed from assembly" +msgstr "" + +#: stock/status_codes.py:61 +msgid "Installed component item" +msgstr "" + +#: stock/status_codes.py:62 +msgid "Removed component item" +msgstr "" + +#: stock/status_codes.py:65 +msgid "Split from parent item" +msgstr "" + +#: stock/status_codes.py:66 +msgid "Split child item" +msgstr "" + +#: stock/status_codes.py:69 templates/js/translated/stock.js:1858 +msgid "Merged stock items" +msgstr "" + +#: stock/status_codes.py:72 +msgid "Converted to variant" +msgstr "" + +#: stock/status_codes.py:75 +msgid "Build order output created" +msgstr "" + +#: stock/status_codes.py:76 +msgid "Build order output completed" +msgstr "" + +#: stock/status_codes.py:77 +msgid "Build order output rejected" +msgstr "" + +#: stock/status_codes.py:78 templates/js/translated/stock.js:1764 +msgid "Consumed by build order" +msgstr "" + +#: stock/status_codes.py:81 +msgid "Shipped against Sales Order" +msgstr "" + +#: stock/status_codes.py:84 +msgid "Received against Purchase Order" +msgstr "" + +#: stock/status_codes.py:87 +msgid "Returned against Return Order" +msgstr "" + +#: stock/status_codes.py:90 templates/js/translated/table_filters.js:375 +msgid "Sent to customer" +msgstr "" + +#: stock/status_codes.py:91 +msgid "Returned from customer" +msgstr "" + +#: stock/templates/stock/item.html:17 +msgid "Stock Tracking Information" +msgstr "" + +#: stock/templates/stock/item.html:63 +msgid "Child Stock Items" +msgstr "" + +#: stock/templates/stock/item.html:72 +msgid "This stock item does not have any child items" +msgstr "" + +#: stock/templates/stock/item.html:81 +#: stock/templates/stock/stock_sidebar.html:12 +msgid "Test Data" +msgstr "" + +#: stock/templates/stock/item.html:85 stock/templates/stock/item_base.html:65 +msgid "Test Report" +msgstr "" + +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:276 +msgid "Delete Test Data" +msgstr "" + +#: stock/templates/stock/item.html:93 +msgid "Add Test Data" +msgstr "" + +#: stock/templates/stock/item.html:125 +msgid "Stock Item Notes" +msgstr "" + +#: stock/templates/stock/item.html:140 +msgid "Installed Stock Items" +msgstr "" + +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3271 +msgid "Install Stock Item" +msgstr "" + +#: stock/templates/stock/item.html:264 +msgid "Delete all test results for this stock item" +msgstr "" + +#: stock/templates/stock/item.html:294 templates/js/translated/stock.js:1701 +msgid "Add Test Result" +msgstr "" + +#: stock/templates/stock/item_base.html:33 +msgid "Locate stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:51 +msgid "Scan to Location" +msgstr "" + +#: stock/templates/stock/item_base.html:59 +#: stock/templates/stock/location.html:70 +#: templates/js/translated/filters.js:431 +msgid "Printing actions" +msgstr "" + +#: stock/templates/stock/item_base.html:75 +msgid "Stock adjustment actions" +msgstr "" + +#: stock/templates/stock/item_base.html:79 +#: stock/templates/stock/location.html:90 templates/js/translated/stock.js:1824 +msgid "Count stock" +msgstr "" + +#: stock/templates/stock/item_base.html:81 +#: templates/js/translated/stock.js:1806 +msgid "Add stock" +msgstr "" + +#: stock/templates/stock/item_base.html:82 +#: templates/js/translated/stock.js:1815 +msgid "Remove stock" +msgstr "" + +#: stock/templates/stock/item_base.html:85 +msgid "Serialize stock" +msgstr "" + +#: stock/templates/stock/item_base.html:88 +#: stock/templates/stock/location.html:96 templates/js/translated/stock.js:1833 +msgid "Transfer stock" +msgstr "" + +#: stock/templates/stock/item_base.html:91 +#: templates/js/translated/stock.js:1887 +msgid "Assign to customer" +msgstr "" + +#: stock/templates/stock/item_base.html:94 +msgid "Return to stock" +msgstr "" + +#: stock/templates/stock/item_base.html:97 +msgid "Uninstall stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:97 +msgid "Uninstall" +msgstr "" + +#: stock/templates/stock/item_base.html:101 +msgid "Install stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:101 +msgid "Install" +msgstr "" + +#: stock/templates/stock/item_base.html:115 +msgid "Convert to variant" +msgstr "" + +#: stock/templates/stock/item_base.html:118 +msgid "Duplicate stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:120 +msgid "Edit stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:123 +msgid "Delete stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:169 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2298 templates/navbar.html:38 +msgid "Build" +msgstr "" + +#: stock/templates/stock/item_base.html:211 +msgid "No manufacturer set" +msgstr "" + +#: stock/templates/stock/item_base.html:251 +msgid "You are not in the list of owners of this item. This stock item cannot be edited." +msgstr "" + +#: stock/templates/stock/item_base.html:252 +#: stock/templates/stock/location.html:149 +msgid "Read only" +msgstr "" + +#: stock/templates/stock/item_base.html:265 +msgid "This stock item is unavailable" +msgstr "" + +#: stock/templates/stock/item_base.html:271 +msgid "This stock item is in production and cannot be edited." +msgstr "" + +#: stock/templates/stock/item_base.html:272 +msgid "Edit the stock item from the build view." +msgstr "" + +#: stock/templates/stock/item_base.html:287 +msgid "This stock item is allocated to Sales Order" +msgstr "" + +#: stock/templates/stock/item_base.html:295 +msgid "This stock item is allocated to Build Order" +msgstr "" + +#: stock/templates/stock/item_base.html:311 +msgid "This stock item is serialized. It has a unique serial number and the quantity cannot be adjusted" +msgstr "" + +#: stock/templates/stock/item_base.html:317 +msgid "previous page" +msgstr "" + +#: stock/templates/stock/item_base.html:317 +msgid "Navigate to previous serial number" +msgstr "" + +#: stock/templates/stock/item_base.html:326 +msgid "next page" +msgstr "" + +#: stock/templates/stock/item_base.html:326 +msgid "Navigate to next serial number" +msgstr "" + +#: stock/templates/stock/item_base.html:398 +#: templates/js/translated/build.js:2555 +msgid "No location set" +msgstr "" + +#: stock/templates/stock/item_base.html:413 +msgid "Tests" +msgstr "" + +#: stock/templates/stock/item_base.html:419 +msgid "This stock item has not passed all required tests" +msgstr "" + +#: stock/templates/stock/item_base.html:437 +#, python-format +msgid "This StockItem expired on %(item.expiry_date)s" +msgstr "" + +#: stock/templates/stock/item_base.html:439 +#, python-format +msgid "This StockItem expires on %(item.expiry_date)s" +msgstr "" + +#: stock/templates/stock/item_base.html:455 +msgid "No stocktake performed" +msgstr "" + +#: stock/templates/stock/item_base.html:504 +#: templates/js/translated/stock.js:1952 +msgid "stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:527 +msgid "Edit Stock Status" +msgstr "" + +#: stock/templates/stock/item_base.html:536 +msgid "Stock Item QR Code" +msgstr "" + +#: stock/templates/stock/item_base.html:547 +msgid "Link Barcode to Stock Item" +msgstr "" + +#: stock/templates/stock/item_base.html:611 +msgid "Select one of the part variants listed below." +msgstr "" + +#: stock/templates/stock/item_base.html:614 +msgid "Warning" +msgstr "" + +#: stock/templates/stock/item_base.html:615 +msgid "This action cannot be easily undone" +msgstr "" + +#: stock/templates/stock/item_base.html:623 +msgid "Convert Stock Item" +msgstr "" + +#: stock/templates/stock/item_base.html:657 +msgid "Return to Stock" +msgstr "" + +#: stock/templates/stock/item_serialize.html:5 +msgid "Create serialized items from this stock item." +msgstr "" + +#: stock/templates/stock/item_serialize.html:7 +msgid "Select quantity to serialize, and unique serial numbers." +msgstr "" + +#: stock/templates/stock/location.html:38 +msgid "Perform stocktake for this stock location" +msgstr "" + +#: stock/templates/stock/location.html:45 +msgid "Locate stock location" +msgstr "" + +#: stock/templates/stock/location.html:63 +msgid "Scan stock items into this location" +msgstr "" + +#: stock/templates/stock/location.html:63 +msgid "Scan In Stock Items" +msgstr "" + +#: stock/templates/stock/location.html:64 +msgid "Scan stock container into this location" +msgstr "" + +#: stock/templates/stock/location.html:64 +msgid "Scan In Container" +msgstr "" + +#: stock/templates/stock/location.html:75 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:104 +msgid "Location actions" +msgstr "" + +#: stock/templates/stock/location.html:106 +msgid "Edit location" +msgstr "" + +#: stock/templates/stock/location.html:108 +msgid "Delete location" +msgstr "" + +#: stock/templates/stock/location.html:138 +msgid "Top level stock location" +msgstr "" + +#: stock/templates/stock/location.html:144 +msgid "Location Owner" +msgstr "" + +#: stock/templates/stock/location.html:148 +msgid "You are not in the list of owners of this location. This stock location cannot be edited." +msgstr "" + +#: stock/templates/stock/location.html:176 +msgid "Location Type" +msgstr "" + +#: stock/templates/stock/location.html:226 +msgid "Create new stock location" +msgstr "" + +#: stock/templates/stock/location.html:227 +msgid "New Location" +msgstr "" + +#: stock/templates/stock/location.html:299 +#: templates/js/translated/stock.js:2572 +msgid "stock location" +msgstr "" + +#: stock/templates/stock/location.html:321 +msgid "Scanned stock container into this location" +msgstr "" + +#: stock/templates/stock/location.html:394 +msgid "Stock Location QR Code" +msgstr "" + +#: stock/templates/stock/location.html:405 +msgid "Link Barcode to Stock Location" +msgstr "" + +#: stock/templates/stock/stock_app_base.html:16 +msgid "Loading..." +msgstr "" + +#: stock/templates/stock/stock_sidebar.html:5 +msgid "Stock Tracking" +msgstr "" + +#: stock/templates/stock/stock_sidebar.html:8 +msgid "Allocations" +msgstr "" + +#: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 +msgid "Permission Denied" +msgstr "" + +#: templates/403.html:15 +msgid "You do not have permission to view this page." +msgstr "" + +#: templates/403_csrf.html:11 +msgid "Authentication Failure" +msgstr "" + +#: templates/403_csrf.html:14 +msgid "You have been logged out from InvenTree." +msgstr "" + +#: templates/403_csrf.html:19 templates/InvenTree/settings/sidebar.html:29 +#: templates/navbar.html:150 +msgid "Login" +msgstr "" + +#: templates/404.html:6 templates/404.html:12 +msgid "Page Not Found" +msgstr "" + +#: templates/404.html:15 +msgid "The requested page does not exist" +msgstr "" + +#: templates/500.html:6 templates/500.html:12 +msgid "Internal Server Error" +msgstr "" + +#: templates/500.html:15 +#, python-format +msgid "The %(inventree_title)s server raised an internal error" +msgstr "" + +#: templates/500.html:16 +msgid "Refer to the error log in the admin interface for further details" +msgstr "" + +#: templates/503.html:11 templates/503.html:33 +msgid "Site is in Maintenance" +msgstr "" + +#: templates/503.html:39 +msgid "The site is currently in maintenance and should be up again soon!" +msgstr "" + +#: templates/InvenTree/index.html:7 +msgid "Index" +msgstr "" + +#: templates/InvenTree/index.html:39 +msgid "Subscribed Parts" +msgstr "" + +#: templates/InvenTree/index.html:52 +msgid "Subscribed Categories" +msgstr "" + +#: templates/InvenTree/index.html:62 +msgid "Latest Parts" +msgstr "" + +#: templates/InvenTree/index.html:77 +msgid "BOM Waiting Validation" +msgstr "" + +#: templates/InvenTree/index.html:106 +msgid "Recently Updated" +msgstr "" + +#: templates/InvenTree/index.html:134 +msgid "Depleted Stock" +msgstr "" + +#: templates/InvenTree/index.html:148 +msgid "Required for Build Orders" +msgstr "" + +#: templates/InvenTree/index.html:156 +msgid "Expired Stock" +msgstr "" + +#: templates/InvenTree/index.html:172 +msgid "Stale Stock" +msgstr "" + +#: templates/InvenTree/index.html:199 +msgid "Build Orders In Progress" +msgstr "" + +#: templates/InvenTree/index.html:210 +msgid "Overdue Build Orders" +msgstr "" + +#: templates/InvenTree/index.html:230 +msgid "Outstanding Purchase Orders" +msgstr "" + +#: templates/InvenTree/index.html:241 +msgid "Overdue Purchase Orders" +msgstr "" + +#: templates/InvenTree/index.html:262 +msgid "Outstanding Sales Orders" +msgstr "" + +#: templates/InvenTree/index.html:273 +msgid "Overdue Sales Orders" +msgstr "" + +#: templates/InvenTree/index.html:299 +msgid "InvenTree News" +msgstr "" + +#: templates/InvenTree/index.html:301 +msgid "Current News" +msgstr "" + +#: templates/InvenTree/notifications/history.html:9 +msgid "Notification History" +msgstr "" + +#: templates/InvenTree/notifications/history.html:13 +#: templates/InvenTree/notifications/history.html:14 +#: templates/InvenTree/notifications/notifications.html:75 +msgid "Delete Notifications" +msgstr "" + +#: templates/InvenTree/notifications/inbox.html:9 +msgid "Pending Notifications" +msgstr "" + +#: templates/InvenTree/notifications/inbox.html:13 +#: templates/InvenTree/notifications/inbox.html:14 +msgid "Mark all as read" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:10 +#: templates/InvenTree/notifications/sidebar.html:5 +#: templates/InvenTree/settings/sidebar.html:17 +#: templates/InvenTree/settings/sidebar.html:37 templates/notifications.html:5 +msgid "Notifications" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:38 +msgid "No unread notifications found" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:58 +msgid "No notification history found" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:65 +msgid "Delete all read notifications" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:89 +#: templates/js/translated/notification.js:85 +msgid "Delete Notification" +msgstr "" + +#: templates/InvenTree/notifications/sidebar.html:8 +msgid "Inbox" +msgstr "" + +#: templates/InvenTree/notifications/sidebar.html:10 +msgid "History" +msgstr "" + +#: templates/InvenTree/search.html:8 +msgid "Search Results" +msgstr "" + +#: templates/InvenTree/settings/barcode.html:8 +msgid "Barcode Settings" +msgstr "" + +#: templates/InvenTree/settings/build.html:8 +msgid "Build Order Settings" +msgstr "" + +#: templates/InvenTree/settings/category.html:7 +msgid "Category Settings" +msgstr "" + +#: templates/InvenTree/settings/global.html:8 +msgid "Server Settings" +msgstr "" + +#: templates/InvenTree/settings/label.html:8 +#: templates/InvenTree/settings/user_labels.html:9 +msgid "Label Settings" +msgstr "" + +#: templates/InvenTree/settings/login.html:8 +msgid "Login Settings" +msgstr "" + +#: templates/InvenTree/settings/login.html:15 +msgid "Outgoing email has not been configured. Some login and sign-up features may not work correctly!" +msgstr "" + +#: templates/InvenTree/settings/login.html:27 templates/account/signup.html:5 +#: templates/socialaccount/signup.html:5 +msgid "Signup" +msgstr "" + +#: templates/InvenTree/settings/login.html:36 +msgid "Single Sign On" +msgstr "" + +#: templates/InvenTree/settings/mixins/settings.html:5 +#: templates/InvenTree/settings/settings.html:12 templates/navbar.html:147 +msgid "Settings" +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:5 +msgid "URLs" +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:8 +#, python-format +msgid "The Base-URL for this plugin is %(base)s." +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:14 +msgid "URL" +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:23 +msgid "Open in new tab" +msgstr "" + +#: templates/InvenTree/settings/notifications.html:9 +#: templates/InvenTree/settings/user_notifications.html:9 +msgid "Notification Settings" +msgstr "" + +#: templates/InvenTree/settings/notifications.html:18 +msgid "Slug" +msgstr "" + +#: templates/InvenTree/settings/part.html:7 +msgid "Part Settings" +msgstr "" + +#: templates/InvenTree/settings/part.html:44 +msgid "Part Import" +msgstr "" + +#: templates/InvenTree/settings/part.html:48 +msgid "Import Part" +msgstr "" + +#: templates/InvenTree/settings/part_parameters.html:20 +msgid "Part Parameter Templates" +msgstr "" + +#: templates/InvenTree/settings/part_stocktake.html:7 +msgid "Stocktake Settings" +msgstr "" + +#: templates/InvenTree/settings/part_stocktake.html:25 +msgid "Stocktake Reports" +msgstr "" + +#: templates/InvenTree/settings/physical_units.html:8 +#: templates/InvenTree/settings/sidebar.html:35 +msgid "Physical Units" +msgstr "" + +#: templates/InvenTree/settings/physical_units.html:12 +msgid "Add Unit" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:9 +#: templates/InvenTree/settings/sidebar.html:64 +msgid "Plugin Settings" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:15 +msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." +msgstr "" + +#: templates/InvenTree/settings/plugin.html:38 +#: templates/InvenTree/settings/sidebar.html:66 +msgid "Plugins" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:44 +#: templates/InvenTree/settings/plugin.html:45 +#: templates/js/translated/plugin.js:151 +msgid "Install Plugin" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:47 +#: templates/InvenTree/settings/plugin.html:48 +#: templates/js/translated/plugin.js:224 +msgid "Reload Plugins" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:58 +msgid "External plugins are not enabled for this InvenTree installation" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:73 +msgid "Plugin Error Stack" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:82 +msgid "Stage" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:84 +#: templates/js/translated/notification.js:76 +msgid "Message" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:16 +msgid "Plugin information" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:47 +msgid "no version information supplied" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:61 +msgid "License" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:70 +msgid "The code information is pulled from the latest git commit for this plugin. It might not reflect official version numbers or information but the actual code running." +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:76 +msgid "Package information" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:82 +msgid "Installation method" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:85 +msgid "This plugin was installed as a package" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:87 +msgid "This plugin was found in a local server path" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:93 +msgid "Installation path" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:68 +#: templates/js/translated/table_filters.js:496 +msgid "Builtin" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:101 +msgid "This is a builtin plugin which cannot be disabled" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:107 +#: templates/js/translated/plugin.js:72 +#: templates/js/translated/table_filters.js:500 +msgid "Sample" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:108 +msgid "This is a sample plugin" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:113 +msgid "Commit Author" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:117 +#: templates/about.html:36 +msgid "Commit Date" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:121 +#: templates/about.html:29 +msgid "Commit Hash" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:125 +msgid "Commit Message" +msgstr "" + +#: templates/InvenTree/settings/po.html:7 +msgid "Purchase Order Settings" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:7 +msgid "Pricing Settings" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:35 +msgid "Exchange Rates" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:39 +msgid "Update Now" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:47 +#: templates/InvenTree/settings/pricing.html:51 +msgid "Last Update" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:51 +msgid "Never" +msgstr "" + +#: templates/InvenTree/settings/project_codes.html:8 +msgid "Project Code Settings" +msgstr "" + +#: templates/InvenTree/settings/project_codes.html:21 +#: templates/InvenTree/settings/sidebar.html:33 +msgid "Project Codes" +msgstr "" + +#: templates/InvenTree/settings/project_codes.html:25 +#: templates/InvenTree/settings/settings_staff_js.html:216 +msgid "New Project Code" +msgstr "" + +#: templates/InvenTree/settings/report.html:8 +#: templates/InvenTree/settings/user_reporting.html:9 +msgid "Report Settings" +msgstr "" + +#: templates/InvenTree/settings/returns.html:7 +msgid "Return Order Settings" +msgstr "" + +#: templates/InvenTree/settings/setting.html:31 +msgid "No value set" +msgstr "" + +#: templates/InvenTree/settings/setting.html:46 +msgid "Edit setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:58 +msgid "Edit Plugin Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:60 +msgid "Edit Notification Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:63 +msgid "Edit Global Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:65 +msgid "Edit User Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:49 +msgid "Rate" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:81 +#: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 +#: templates/js/translated/part.js:394 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 +msgid "Delete" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:95 +msgid "Edit Custom Unit" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:110 +msgid "Delete Custom Unit" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:124 +msgid "New Custom Unit" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:140 +msgid "No project codes found" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:158 +#: templates/js/translated/build.js:2403 +msgid "group" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:175 +#: templates/InvenTree/settings/settings_staff_js.html:189 +msgid "Edit Project Code" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:176 +#: templates/InvenTree/settings/settings_staff_js.html:203 +msgid "Delete Project Code" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:285 +msgid "No category parameter templates found" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:308 +#: templates/js/translated/part.js:1651 +msgid "Edit Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:309 +#: templates/js/translated/part.js:1652 +msgid "Delete Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:326 +msgid "Edit Category Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:353 +msgid "Delete Category Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:388 +msgid "Create Category Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:418 +msgid "Create Part Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:440 +msgid "No stock location types found" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:461 +msgid "Location count" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:466 +#: templates/InvenTree/settings/settings_staff_js.html:480 +msgid "Edit Location Type" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:467 +msgid "Delete Location type" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:490 +msgid "Delete Location Type" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:500 +#: templates/InvenTree/settings/stock.html:38 +msgid "New Location Type" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:6 +#: templates/InvenTree/settings/user_settings.html:9 +msgid "User Settings" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:9 +msgid "Account" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:11 +msgid "Display" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:13 +msgid "Home Page" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:15 +#: templates/js/translated/forms.js:2167 templates/js/translated/tables.js:543 +#: templates/navbar.html:107 templates/search.html:8 +#: templates/search_form.html:6 templates/search_form.html:7 +msgid "Search" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:19 +#: templates/InvenTree/settings/sidebar.html:43 +msgid "Reporting" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:24 +msgid "Global Settings" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:27 templates/stats.html:9 +msgid "Server" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:41 +msgid "Labels" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:45 +msgid "Categories" +msgstr "" + +#: templates/InvenTree/settings/so.html:7 +msgid "Sales Order Settings" +msgstr "" + +#: templates/InvenTree/settings/stock.html:7 +msgid "Stock Settings" +msgstr "" + +#: templates/InvenTree/settings/stock.html:34 +msgid "Stock Location Types" +msgstr "" + +#: templates/InvenTree/settings/user.html:13 +msgid "Account Settings" +msgstr "" + +#: templates/InvenTree/settings/user.html:19 +#: templates/account/password_reset_from_key.html:4 +#: templates/account/password_reset_from_key.html:7 +msgid "Change Password" +msgstr "" + +#: templates/InvenTree/settings/user.html:55 +msgid "The following email addresses are associated with your account:" +msgstr "" + +#: templates/InvenTree/settings/user.html:76 +msgid "Verified" +msgstr "" + +#: templates/InvenTree/settings/user.html:78 +msgid "Unverified" +msgstr "" + +#: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:957 +msgid "Primary" +msgstr "" + +#: templates/InvenTree/settings/user.html:86 +msgid "Make Primary" +msgstr "" + +#: templates/InvenTree/settings/user.html:87 +msgid "Re-send Verification" +msgstr "" + +#: templates/InvenTree/settings/user.html:96 +msgid "Warning:" +msgstr "" + +#: templates/InvenTree/settings/user.html:97 +msgid "You currently do not have any email address set up. You should really add an email address so you can receive notifications, reset your password, etc." +msgstr "" + +#: templates/InvenTree/settings/user.html:105 +msgid "Add Email Address" +msgstr "" + +#: templates/InvenTree/settings/user.html:110 +msgid "Add Email" +msgstr "" + +#: templates/InvenTree/settings/user.html:120 +msgid "Multifactor" +msgstr "" + +#: templates/InvenTree/settings/user.html:125 +msgid "You have these factors available:" +msgstr "" + +#: templates/InvenTree/settings/user.html:135 +msgid "TOTP" +msgstr "" + +#: templates/InvenTree/settings/user.html:141 +msgid "Static" +msgstr "" + +#: templates/InvenTree/settings/user.html:150 +msgid "Multifactor authentication is not configured for your account" +msgstr "" + +#: templates/InvenTree/settings/user.html:157 +msgid "Change factors" +msgstr "" + +#: templates/InvenTree/settings/user.html:158 +msgid "Setup multifactor" +msgstr "" + +#: templates/InvenTree/settings/user.html:160 +msgid "Remove multifactor" +msgstr "" + +#: templates/InvenTree/settings/user.html:171 +msgid "Active Sessions" +msgstr "" + +#: templates/InvenTree/settings/user.html:177 +msgid "Log out active sessions (except this one)" +msgstr "" + +#: templates/InvenTree/settings/user.html:178 +msgid "Log Out Active Sessions" +msgstr "" + +#: templates/InvenTree/settings/user.html:187 +msgid "unknown on unknown" +msgstr "" + +#: templates/InvenTree/settings/user.html:188 +msgid "unknown" +msgstr "" + +#: templates/InvenTree/settings/user.html:192 +msgid "IP Address" +msgstr "" + +#: templates/InvenTree/settings/user.html:193 +msgid "Device" +msgstr "" + +#: templates/InvenTree/settings/user.html:194 +msgid "Last Activity" +msgstr "" + +#: templates/InvenTree/settings/user.html:207 +#, python-format +msgid "%(time)s ago (this session)" +msgstr "" + +#: templates/InvenTree/settings/user.html:209 +#, python-format +msgid "%(time)s ago" +msgstr "" + +#: templates/InvenTree/settings/user.html:223 +msgid "Do you really want to remove the selected email address?" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:9 +msgid "Display Settings" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:29 +msgid "Theme Settings" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:39 +msgid "Select theme" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:50 +msgid "Set Theme" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:58 +msgid "Language Settings" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:67 +msgid "Select language" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:83 +#, python-format +msgid "%(lang_translated)s%% translated" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:85 +msgid "No translations available" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:92 +msgid "Set Language" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:95 +msgid "Some languages are not complete" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:97 +msgid "Show only sufficient" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:99 +msgid "and hidden." +msgstr "" + +#: templates/InvenTree/settings/user_display.html:99 +msgid "Show them too" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:106 +msgid "Help the translation efforts!" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:107 +msgid "Native language translation of the web application is community contributed via crowdin. Contributions are welcomed and encouraged." +msgstr "" + +#: templates/InvenTree/settings/user_display.html:108 +msgid "InvenTree Translation Project" +msgstr "" + +#: templates/InvenTree/settings/user_homepage.html:9 +msgid "Home Page Settings" +msgstr "" + +#: templates/InvenTree/settings/user_search.html:9 +msgid "Search Settings" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:9 +msgid "Single Sign On Accounts" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:16 +msgid "You can sign in to your account using any of the following third party accounts:" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:52 +msgid "There are no social network accounts connected to this account." +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:58 +msgid "Add SSO Account" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:67 +msgid "Single Sign On is not enabled for this server" +msgstr "" + +#: templates/about.html:9 +msgid "InvenTree Version" +msgstr "" + +#: templates/about.html:14 +msgid "Development Version" +msgstr "" + +#: templates/about.html:17 +msgid "Up to Date" +msgstr "" + +#: templates/about.html:19 +msgid "Update Available" +msgstr "" + +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 +msgid "InvenTree Documentation" +msgstr "" + +#: templates/about.html:54 +msgid "API Version" +msgstr "" + +#: templates/about.html:59 +msgid "Python Version" +msgstr "" + +#: templates/about.html:64 +msgid "Django Version" +msgstr "" + +#: templates/about.html:69 +msgid "View Code on GitHub" +msgstr "" + +#: templates/about.html:74 +msgid "Credits" +msgstr "" + +#: templates/about.html:79 +msgid "Mobile App" +msgstr "" + +#: templates/about.html:84 +msgid "Submit Bug Report" +msgstr "" + +#: templates/about.html:91 templates/clip.html:4 +#: templates/js/translated/helpers.js:589 +msgid "copy to clipboard" +msgstr "" + +#: templates/about.html:91 +msgid "copy version information" +msgstr "" + +#: templates/account/base.html:66 templates/navbar.html:17 +msgid "InvenTree logo" +msgstr "" + +#: templates/account/email_confirm.html:6 +#: templates/account/email_confirm.html:9 +msgid "Confirm Email Address" +msgstr "" + +#: templates/account/email_confirm.html:15 +#, python-format +msgid "Please confirm that %(email)s is an email address for user %(user_display)s." +msgstr "" + +#: templates/account/email_confirm.html:21 templates/js/translated/forms.js:774 +msgid "Confirm" +msgstr "" + +#: templates/account/email_confirm.html:29 +#, python-format +msgid "This email confirmation link expired or is invalid. Please issue a new email confirmation request." +msgstr "" + +#: templates/account/login.html:6 templates/account/login.html:19 +#: templates/account/login.html:40 templates/socialaccount/login.html:5 +msgid "Sign In" +msgstr "" + +#: templates/account/login.html:23 +msgid "Not a member?" +msgstr "" + +#: templates/account/login.html:25 templates/account/signup.html:11 +#: templates/account/signup.html:22 templates/socialaccount/signup.html:8 +#: templates/socialaccount/signup.html:23 +msgid "Sign Up" +msgstr "" + +#: templates/account/login.html:47 +msgid "Forgot Password?" +msgstr "" + +#: templates/account/login.html:55 +msgid "or log in with" +msgstr "" + +#: templates/account/logout.html:5 templates/account/logout.html:8 +#: templates/account/logout.html:20 +msgid "Sign Out" +msgstr "" + +#: templates/account/logout.html:10 +msgid "Are you sure you want to sign out?" +msgstr "" + +#: templates/account/logout.html:27 templates/allauth_2fa/backup_tokens.html:35 +#: templates/allauth_2fa/remove.html:24 templates/allauth_2fa/setup.html:45 +msgid "Return to Site" +msgstr "" + +#: templates/account/password_reset.html:5 +#: templates/account/password_reset.html:12 +msgid "Password Reset" +msgstr "" + +#: templates/account/password_reset.html:18 +msgid "Forgotten your password? Enter your email address below, and we'll send you an email allowing you to reset it." +msgstr "" + +#: templates/account/password_reset.html:23 +msgid "Reset My Password" +msgstr "" + +#: templates/account/password_reset.html:27 templates/account/signup.html:37 +msgid "This function is currently disabled. Please contact an administrator." +msgstr "" + +#: templates/account/password_reset_from_key.html:7 +msgid "Bad Token" +msgstr "" + +#: templates/account/password_reset_from_key.html:11 +#, python-format +msgid "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." +msgstr "" + +#: templates/account/password_reset_from_key.html:18 +msgid "Change password" +msgstr "" + +#: templates/account/password_reset_from_key.html:22 +msgid "Your password is now changed." +msgstr "" + +#: templates/account/signup.html:13 +#, python-format +msgid "Already have an account? Then please sign in." +msgstr "" + +#: templates/account/signup.html:28 +msgid "Use a SSO-provider for signup" +msgstr "" + +#: templates/account/signup_closed.html:5 +#: templates/account/signup_closed.html:8 +msgid "Sign Up Closed" +msgstr "" + +#: templates/account/signup_closed.html:10 +msgid "Sign up is currently closed." +msgstr "" + +#: templates/account/signup_closed.html:15 +#: templates/socialaccount/authentication_error.html:19 +#: templates/socialaccount/login.html:38 templates/socialaccount/signup.html:30 +msgid "Return to login page" +msgstr "" + +#: templates/admin_button.html:8 +msgid "View in administration panel" +msgstr "" + +#: templates/allauth_2fa/authenticate.html:5 +msgid "Two-Factor Authentication" +msgstr "" + +#: templates/allauth_2fa/authenticate.html:13 +msgid "Authenticate" +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:6 +msgid "Two-Factor Authentication Backup Tokens" +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:17 +msgid "Backup tokens have been generated, but are not revealed here for security reasons. Press the button below to generate new ones." +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:20 +msgid "No backup tokens are available. Press the button below to generate some." +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:28 +msgid "Generate Tokens" +msgstr "" + +#: templates/allauth_2fa/remove.html:6 +msgid "Disable Two-Factor Authentication" +msgstr "" + +#: templates/allauth_2fa/remove.html:9 +msgid "Are you sure?" +msgstr "" + +#: templates/allauth_2fa/remove.html:17 +msgid "Disable 2FA" +msgstr "" + +#: templates/allauth_2fa/setup.html:6 +msgid "Setup Two-Factor Authentication" +msgstr "" + +#: templates/allauth_2fa/setup.html:10 +msgid "Step 1" +msgstr "" + +#: templates/allauth_2fa/setup.html:14 +msgid "Scan the QR code below with a token generator of your choice (for instance Google Authenticator)." +msgstr "" + +#: templates/allauth_2fa/setup.html:20 +msgid "Secret: " +msgstr "" + +#: templates/allauth_2fa/setup.html:24 +msgid "Step 2" +msgstr "" + +#: templates/allauth_2fa/setup.html:28 +msgid "Input a token generated by the app:" +msgstr "" + +#: templates/allauth_2fa/setup.html:38 +msgid "Verify" +msgstr "" + +#: templates/attachment_button.html:4 templates/js/translated/attachment.js:70 +msgid "Add Link" +msgstr "" + +#: templates/attachment_button.html:7 templates/js/translated/attachment.js:48 +msgid "Add Attachment" +msgstr "" + +#: templates/barcode_data.html:5 +msgid "Barcode Identifier" +msgstr "" + +#: templates/base.html:103 +msgid "Server Restart Required" +msgstr "" + +#: templates/base.html:106 +msgid "A configuration option has been changed which requires a server restart" +msgstr "" + +#: templates/base.html:106 templates/base.html:116 +msgid "Contact your system administrator for further information" +msgstr "" + +#: templates/base.html:113 +msgid "Pending Database Migrations" +msgstr "" + +#: templates/base.html:116 +msgid "There are pending database migrations which require attention" +msgstr "" + +#: templates/email/build_order_completed.html:9 +#: templates/email/canceled_order_assigned.html:9 +#: templates/email/new_order_assigned.html:9 +#: templates/email/overdue_build_order.html:9 +#: templates/email/overdue_purchase_order.html:9 +#: templates/email/overdue_sales_order.html:9 +#: 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 "" + +#: templates/email/build_order_required_stock.html:7 +msgid "Stock is required for the following build order" +msgstr "" + +#: templates/email/build_order_required_stock.html:8 +#, python-format +msgid "Build order %(build)s - building %(quantity)s x %(part)s" +msgstr "" + +#: templates/email/build_order_required_stock.html:10 +msgid "Click on the following link to view this build order" +msgstr "" + +#: templates/email/build_order_required_stock.html:14 +msgid "The following parts are low on required stock" +msgstr "" + +#: templates/email/build_order_required_stock.html:18 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2750 +msgid "Required Quantity" +msgstr "" + +#: templates/email/build_order_required_stock.html:38 +#: templates/email/low_stock_notification.html:30 +msgid "You are receiving this email because you are subscribed to notifications for this part " +msgstr "" + +#: templates/email/low_stock_notification.html:9 +msgid "Click on the following link to view this part" +msgstr "" + +#: templates/email/low_stock_notification.html:18 +#: templates/js/translated/part.js:3238 +msgid "Minimum Quantity" +msgstr "" + +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 +msgid "No Response" +msgstr "" + +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 +msgid "No response from the InvenTree server" +msgstr "" + +#: templates/js/translated/api.js:232 +msgid "Error 400: Bad request" +msgstr "" + +#: templates/js/translated/api.js:233 +msgid "API request returned error code 400" +msgstr "" + +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 +msgid "Error 401: Not Authenticated" +msgstr "" + +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 +msgid "Authentication credentials not supplied" +msgstr "" + +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 +msgid "Error 403: Permission Denied" +msgstr "" + +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 +msgid "You do not have the required permissions to access this function" +msgstr "" + +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 +msgid "Error 404: Resource Not Found" +msgstr "" + +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 +msgid "The requested resource could not be located on the server" +msgstr "" + +#: templates/js/translated/api.js:252 +msgid "Error 405: Method Not Allowed" +msgstr "" + +#: templates/js/translated/api.js:253 +msgid "HTTP method not allowed at URL" +msgstr "" + +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 +msgid "Error 408: Timeout" +msgstr "" + +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 +msgid "Connection timeout while requesting data from server" +msgstr "" + +#: templates/js/translated/api.js:261 +msgid "Error 503: Service Unavailable" +msgstr "" + +#: templates/js/translated/api.js:262 +msgid "The server is currently unavailable" +msgstr "" + +#: templates/js/translated/api.js:265 +msgid "Unhandled Error Code" +msgstr "" + +#: templates/js/translated/api.js:266 +msgid "Error code" +msgstr "" + +#: templates/js/translated/attachment.js:114 +msgid "All selected attachments will be deleted" +msgstr "" + +#: templates/js/translated/attachment.js:129 +msgid "Delete Attachments" +msgstr "" + +#: templates/js/translated/attachment.js:205 +msgid "Delete attachments" +msgstr "" + +#: templates/js/translated/attachment.js:260 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:294 +msgid "No attachments found" +msgstr "" + +#: templates/js/translated/attachment.js:334 +msgid "Edit Attachment" +msgstr "" + +#: templates/js/translated/attachment.js:365 +msgid "Upload Date" +msgstr "" + +#: templates/js/translated/attachment.js:385 +msgid "Edit attachment" +msgstr "" + +#: templates/js/translated/attachment.js:393 +msgid "Delete attachment" +msgstr "" + +#: templates/js/translated/barcode.js:43 +msgid "Scan barcode data here using barcode scanner" +msgstr "" + +#: templates/js/translated/barcode.js:45 +msgid "Enter barcode data" +msgstr "" + +#: templates/js/translated/barcode.js:59 +msgid "Scan barcode using connected webcam" +msgstr "" + +#: templates/js/translated/barcode.js:138 +msgid "Enter optional notes for stock transfer" +msgstr "" + +#: templates/js/translated/barcode.js:139 +msgid "Enter notes" +msgstr "" + +#: templates/js/translated/barcode.js:188 +msgid "Server error" +msgstr "" + +#: templates/js/translated/barcode.js:217 +msgid "Unknown response from server" +msgstr "" + +#: templates/js/translated/barcode.js:252 +#: templates/js/translated/modals.js:1125 +msgid "Invalid server response" +msgstr "" + +#: templates/js/translated/barcode.js:403 +msgid "Scan barcode data" +msgstr "" + +#: templates/js/translated/barcode.js:451 templates/navbar.html:114 +msgid "Scan Barcode" +msgstr "" + +#: templates/js/translated/barcode.js:489 +msgid "No URL in response" +msgstr "" + +#: templates/js/translated/barcode.js:529 +msgid "This will remove the link to the associated barcode" +msgstr "" + +#: templates/js/translated/barcode.js:535 +msgid "Unlink" +msgstr "" + +#: templates/js/translated/barcode.js:598 templates/js/translated/stock.js:1158 +msgid "Remove stock item" +msgstr "" + +#: templates/js/translated/barcode.js:641 +msgid "Scan Stock Items Into Location" +msgstr "" + +#: templates/js/translated/barcode.js:643 +msgid "Scan stock item barcode to check in to this location" +msgstr "" + +#: templates/js/translated/barcode.js:646 +#: templates/js/translated/barcode.js:843 +msgid "Check In" +msgstr "" + +#: templates/js/translated/barcode.js:678 +msgid "No barcode provided" +msgstr "" + +#: templates/js/translated/barcode.js:718 +msgid "Stock Item already scanned" +msgstr "" + +#: templates/js/translated/barcode.js:722 +msgid "Stock Item already in this location" +msgstr "" + +#: templates/js/translated/barcode.js:729 +msgid "Added stock item" +msgstr "" + +#: templates/js/translated/barcode.js:738 +msgid "Barcode does not match valid stock item" +msgstr "" + +#: templates/js/translated/barcode.js:757 +msgid "Scan Stock Container Into Location" +msgstr "" + +#: templates/js/translated/barcode.js:759 +msgid "Scan stock container barcode to check in to this location" +msgstr "" + +#: templates/js/translated/barcode.js:793 +msgid "Barcode does not match valid stock location" +msgstr "" + +#: templates/js/translated/barcode.js:837 +msgid "Check Into Location" +msgstr "" + +#: templates/js/translated/barcode.js:906 +#: templates/js/translated/barcode.js:915 +msgid "Barcode does not match a valid location" +msgstr "" + +#: templates/js/translated/bom.js:78 +msgid "Create BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:132 +msgid "Display row data" +msgstr "" + +#: templates/js/translated/bom.js:188 +msgid "Row Data" +msgstr "" + +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 +#: templates/js/translated/purchase_order.js:797 templates/modals.html:15 +#: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 +msgid "Close" +msgstr "" + +#: templates/js/translated/bom.js:306 +msgid "Download BOM Template" +msgstr "" + +#: templates/js/translated/bom.js:351 +msgid "Multi Level BOM" +msgstr "" + +#: templates/js/translated/bom.js:352 +msgid "Include BOM data for subassemblies" +msgstr "" + +#: templates/js/translated/bom.js:357 +msgid "Levels" +msgstr "" + +#: templates/js/translated/bom.js:358 +msgid "Select maximum number of BOM levels to export (0 = all levels)" +msgstr "" + +#: templates/js/translated/bom.js:365 +msgid "Include Alternative Parts" +msgstr "" + +#: templates/js/translated/bom.js:366 +msgid "Include alternative parts in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:371 +msgid "Include Parameter Data" +msgstr "" + +#: templates/js/translated/bom.js:372 +msgid "Include part parameter data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:377 +msgid "Include Stock Data" +msgstr "" + +#: templates/js/translated/bom.js:378 +msgid "Include part stock data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:383 +msgid "Include Manufacturer Data" +msgstr "" + +#: templates/js/translated/bom.js:384 +msgid "Include part manufacturer data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:389 +msgid "Include Supplier Data" +msgstr "" + +#: templates/js/translated/bom.js:390 +msgid "Include part supplier data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:395 +msgid "Include Pricing Data" +msgstr "" + +#: templates/js/translated/bom.js:396 +msgid "Include part pricing data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:591 +msgid "Remove substitute part" +msgstr "" + +#: templates/js/translated/bom.js:645 +msgid "Select and add a new substitute part using the input below" +msgstr "" + +#: templates/js/translated/bom.js:656 +msgid "Are you sure you wish to remove this substitute part link?" +msgstr "" + +#: templates/js/translated/bom.js:662 +msgid "Remove Substitute Part" +msgstr "" + +#: templates/js/translated/bom.js:701 +msgid "Add Substitute" +msgstr "" + +#: templates/js/translated/bom.js:702 +msgid "Edit BOM Item Substitutes" +msgstr "" + +#: templates/js/translated/bom.js:764 +msgid "All selected BOM items will be deleted" +msgstr "" + +#: templates/js/translated/bom.js:780 +msgid "Delete selected BOM items?" +msgstr "" + +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:936 +msgid "Load BOM for subassembly" +msgstr "" + +#: templates/js/translated/bom.js:946 +msgid "Substitutes Available" +msgstr "" + +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2676 +msgid "Variant stock allowed" +msgstr "" + +#: templates/js/translated/bom.js:1014 +msgid "Substitutes" +msgstr "" + +#: templates/js/translated/bom.js:1139 +msgid "BOM pricing is complete" +msgstr "" + +#: templates/js/translated/bom.js:1144 +msgid "BOM pricing is incomplete" +msgstr "" + +#: templates/js/translated/bom.js:1151 +msgid "No pricing available" +msgstr "" + +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2815 +msgid "External stock" +msgstr "" + +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2789 +#: templates/js/translated/sales_order.js:1946 +msgid "No Stock Available" +msgstr "" + +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2793 +msgid "Includes variant and substitute stock" +msgstr "" + +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2795 +#: templates/js/translated/part.js:1262 +#: templates/js/translated/sales_order.js:1943 +msgid "Includes variant stock" +msgstr "" + +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2797 +msgid "Includes substitute stock" +msgstr "" + +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2780 +msgid "Consumable item" +msgstr "" + +#: templates/js/translated/bom.js:1285 +msgid "Validate BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:1287 +msgid "This line has been validated" +msgstr "" + +#: templates/js/translated/bom.js:1289 +msgid "Edit substitute parts" +msgstr "" + +#: templates/js/translated/bom.js:1291 templates/js/translated/bom.js:1486 +msgid "Edit BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:1293 +msgid "Delete BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:1313 +msgid "View BOM" +msgstr "" + +#: templates/js/translated/bom.js:1397 +msgid "No BOM items found" +msgstr "" + +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2661 +msgid "Required Part" +msgstr "" + +#: templates/js/translated/bom.js:1683 +msgid "Inherited from parent BOM" +msgstr "" + +#: templates/js/translated/build.js:143 +msgid "Edit Build Order" +msgstr "" + +#: templates/js/translated/build.js:191 +msgid "Create Build Order" +msgstr "" + +#: templates/js/translated/build.js:223 +msgid "Cancel Build Order" +msgstr "" + +#: templates/js/translated/build.js:232 +msgid "Are you sure you wish to cancel this build?" +msgstr "" + +#: templates/js/translated/build.js:238 +msgid "Stock items have been allocated to this build order" +msgstr "" + +#: templates/js/translated/build.js:245 +msgid "There are incomplete outputs remaining for this build order" +msgstr "" + +#: templates/js/translated/build.js:297 +msgid "Build order is ready to be completed" +msgstr "" + +#: templates/js/translated/build.js:305 +msgid "This build order cannot be completed as there are incomplete outputs" +msgstr "" + +#: templates/js/translated/build.js:310 +msgid "Build Order is incomplete" +msgstr "" + +#: templates/js/translated/build.js:328 +msgid "Complete Build Order" +msgstr "" + +#: templates/js/translated/build.js:369 templates/js/translated/stock.js:119 +#: templates/js/translated/stock.js:294 +msgid "Next available serial number" +msgstr "" + +#: templates/js/translated/build.js:371 templates/js/translated/stock.js:121 +#: templates/js/translated/stock.js:296 +msgid "Latest serial number" +msgstr "" + +#: templates/js/translated/build.js:380 +msgid "The Bill of Materials contains trackable parts" +msgstr "" + +#: templates/js/translated/build.js:381 +msgid "Build outputs must be generated individually" +msgstr "" + +#: templates/js/translated/build.js:389 +msgid "Trackable parts can have serial numbers specified" +msgstr "" + +#: templates/js/translated/build.js:390 +msgid "Enter serial numbers to generate multiple single build outputs" +msgstr "" + +#: templates/js/translated/build.js:397 +msgid "Create Build Output" +msgstr "" + +#: templates/js/translated/build.js:428 +msgid "Allocate stock items to this build output" +msgstr "" + +#: templates/js/translated/build.js:436 +msgid "Deallocate stock from build output" +msgstr "" + +#: templates/js/translated/build.js:445 +msgid "Complete build output" +msgstr "" + +#: templates/js/translated/build.js:453 +msgid "Scrap build output" +msgstr "" + +#: templates/js/translated/build.js:460 +msgid "Delete build output" +msgstr "" + +#: templates/js/translated/build.js:480 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" +msgstr "" + +#: templates/js/translated/build.js:498 +msgid "Deallocate Stock Items" +msgstr "" + +#: templates/js/translated/build.js:584 templates/js/translated/build.js:712 +#: templates/js/translated/build.js:838 +msgid "Select Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:585 templates/js/translated/build.js:713 +#: templates/js/translated/build.js:839 +msgid "At least one build output must be selected" +msgstr "" + +#: templates/js/translated/build.js:599 +msgid "Selected build outputs will be marked as complete" +msgstr "" + +#: templates/js/translated/build.js:603 templates/js/translated/build.js:737 +#: templates/js/translated/build.js:861 +msgid "Output" +msgstr "" + +#: templates/js/translated/build.js:631 +msgid "Complete Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:728 +msgid "Selected build outputs will be marked as scrapped" +msgstr "" + +#: templates/js/translated/build.js:730 +msgid "Scrapped output are marked as rejected" +msgstr "" + +#: templates/js/translated/build.js:731 +msgid "Allocated stock items will no longer be available" +msgstr "" + +#: templates/js/translated/build.js:732 +msgid "The completion status of the build order will not be adjusted" +msgstr "" + +#: templates/js/translated/build.js:763 +msgid "Scrap Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:853 +msgid "Selected build outputs will be deleted" +msgstr "" + +#: templates/js/translated/build.js:855 +msgid "Build output data will be permanently deleted" +msgstr "" + +#: templates/js/translated/build.js:856 +msgid "Allocated stock items will be returned to stock" +msgstr "" + +#: templates/js/translated/build.js:874 +msgid "Delete Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:961 +msgid "Delete allocations" +msgstr "" + +#: templates/js/translated/build.js:968 +msgid "Delete Stock Allocations" +msgstr "" + +#: templates/js/translated/build.js:991 +msgid "No allocated stock" +msgstr "" + +#: templates/js/translated/build.js:1047 +msgid "Stock item" +msgstr "" + +#: templates/js/translated/build.js:1072 +msgid "Edit build allocation" +msgstr "" + +#: templates/js/translated/build.js:1073 +msgid "Delete build allocation" +msgstr "" + +#: templates/js/translated/build.js:1091 +msgid "Edit Build Allocation" +msgstr "" + +#: templates/js/translated/build.js:1104 +msgid "Delete Build Allocation" +msgstr "" + +#: templates/js/translated/build.js:1135 +msgid "No build order allocations found" +msgstr "" + +#: templates/js/translated/build.js:1180 +msgid "Location not specified" +msgstr "" + +#: templates/js/translated/build.js:1202 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1220 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1238 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1291 +msgid "build output" +msgstr "" + +#: templates/js/translated/build.js:1292 +msgid "build outputs" +msgstr "" + +#: templates/js/translated/build.js:1296 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1472 +msgid "No active build outputs found" +msgstr "" + +#: templates/js/translated/build.js:1565 +msgid "Allocated Lines" +msgstr "" + +#: templates/js/translated/build.js:1579 +msgid "Required Tests" +msgstr "" + +#: templates/js/translated/build.js:1751 +#: templates/js/translated/purchase_order.js:611 +#: templates/js/translated/sales_order.js:1207 +msgid "Select Parts" +msgstr "" + +#: templates/js/translated/build.js:1752 +#: templates/js/translated/sales_order.js:1208 +msgid "You must select at least one part to allocate" +msgstr "" + +#: templates/js/translated/build.js:1815 +#: templates/js/translated/sales_order.js:1157 +msgid "Specify stock allocation quantity" +msgstr "" + +#: templates/js/translated/build.js:1892 +msgid "All Parts Allocated" +msgstr "" + +#: templates/js/translated/build.js:1893 +msgid "All selected parts have been fully allocated" +msgstr "" + +#: templates/js/translated/build.js:1907 +#: templates/js/translated/sales_order.js:1222 +msgid "Select source location (leave blank to take from all locations)" +msgstr "" + +#: templates/js/translated/build.js:1935 +msgid "Allocate Stock Items to Build Order" +msgstr "" + +#: templates/js/translated/build.js:1946 +#: templates/js/translated/sales_order.js:1319 +msgid "No matching stock locations" +msgstr "" + +#: templates/js/translated/build.js:2019 +#: templates/js/translated/sales_order.js:1398 +msgid "No matching stock items" +msgstr "" + +#: templates/js/translated/build.js:2116 +msgid "Automatic Stock Allocation" +msgstr "" + +#: templates/js/translated/build.js:2117 +msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" +msgstr "" + +#: templates/js/translated/build.js:2119 +msgid "If a location is specified, stock will only be allocated from that location" +msgstr "" + +#: templates/js/translated/build.js:2120 +msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" +msgstr "" + +#: templates/js/translated/build.js:2121 +msgid "If substitute stock is allowed, it will be used where stock of the primary part cannot be found" +msgstr "" + +#: templates/js/translated/build.js:2152 +msgid "Allocate Stock Items" +msgstr "" + +#: templates/js/translated/build.js:2257 +msgid "No builds matching query" +msgstr "" + +#: templates/js/translated/build.js:2292 templates/js/translated/build.js:2655 +#: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 +#: templates/js/translated/part.js:2322 templates/js/translated/part.js:2761 +#: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 +msgid "Select" +msgstr "" + +#: templates/js/translated/build.js:2306 +msgid "Build order is overdue" +msgstr "" + +#: templates/js/translated/build.js:2388 templates/js/translated/stock.js:3042 +msgid "No user information" +msgstr "" + +#: templates/js/translated/build.js:2564 +#: templates/js/translated/sales_order.js:1682 +msgid "Edit stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2565 +#: templates/js/translated/sales_order.js:1683 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2580 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2592 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2631 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2632 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2650 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2680 templates/js/translated/part.js:792 +#: templates/js/translated/part.js:1208 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2723 +msgid "Gets Inherited" +msgstr "" + +#: templates/js/translated/build.js:2733 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2785 +#: templates/js/translated/sales_order.js:1951 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2840 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2847 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2848 +msgid "Allocate tracked items against individual build outputs" +msgstr "" + +#: templates/js/translated/build.js:2856 +#: templates/js/translated/sales_order.js:2052 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2861 templates/js/translated/stock.js:1868 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2865 +#: templates/js/translated/sales_order.js:2046 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2869 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:98 +msgid "Add Manufacturer" +msgstr "" + +#: templates/js/translated/company.js:111 +#: templates/js/translated/company.js:213 +msgid "Add Manufacturer Part" +msgstr "" + +#: templates/js/translated/company.js:132 +msgid "Edit Manufacturer Part" +msgstr "" + +#: templates/js/translated/company.js:201 +#: templates/js/translated/purchase_order.js:93 +msgid "Add Supplier" +msgstr "" + +#: templates/js/translated/company.js:243 +#: templates/js/translated/purchase_order.js:318 +msgid "Add Supplier Part" +msgstr "" + +#: templates/js/translated/company.js:344 +msgid "All selected supplier parts will be deleted" +msgstr "" + +#: templates/js/translated/company.js:360 +msgid "Delete Supplier Parts" +msgstr "" + +#: templates/js/translated/company.js:466 +msgid "Add new Company" +msgstr "" + +#: templates/js/translated/company.js:546 +msgid "Parts Supplied" +msgstr "" + +#: templates/js/translated/company.js:555 +msgid "Parts Manufactured" +msgstr "" + +#: templates/js/translated/company.js:570 +msgid "No company information found" +msgstr "" + +#: templates/js/translated/company.js:619 +msgid "Create New Contact" +msgstr "" + +#: templates/js/translated/company.js:635 +#: templates/js/translated/company.js:758 +msgid "Edit Contact" +msgstr "" + +#: templates/js/translated/company.js:672 +msgid "All selected contacts will be deleted" +msgstr "" + +#: templates/js/translated/company.js:678 +#: templates/js/translated/company.js:742 +msgid "Role" +msgstr "" + +#: templates/js/translated/company.js:686 +msgid "Delete Contacts" +msgstr "" + +#: templates/js/translated/company.js:717 +msgid "No contacts found" +msgstr "" + +#: templates/js/translated/company.js:730 +msgid "Phone Number" +msgstr "" + +#: templates/js/translated/company.js:736 +msgid "Email Address" +msgstr "" + +#: templates/js/translated/company.js:762 +msgid "Delete Contact" +msgstr "" + +#: templates/js/translated/company.js:859 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:874 +#: templates/js/translated/company.js:1035 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:909 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:923 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:989 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:995 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1007 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1013 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1039 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1112 +msgid "All selected manufacturer parts will be deleted" +msgstr "" + +#: templates/js/translated/company.js:1127 +msgid "Delete Manufacturer Parts" +msgstr "" + +#: templates/js/translated/company.js:1161 +msgid "All selected parameters will be deleted" +msgstr "" + +#: templates/js/translated/company.js:1175 +msgid "Delete Parameters" +msgstr "" + +#: templates/js/translated/company.js:1191 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2250 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1208 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1240 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1259 +msgid "No manufacturer parts found" +msgstr "" + +#: templates/js/translated/company.js:1279 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:800 +#: templates/js/translated/part.js:1216 +msgid "Template part" +msgstr "" + +#: templates/js/translated/company.js:1283 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:804 +#: templates/js/translated/part.js:1220 +msgid "Assembled part" +msgstr "" + +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1470 +msgid "No parameters found" +msgstr "" + +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1533 +msgid "Edit parameter" +msgstr "" + +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1534 +msgid "Delete parameter" +msgstr "" + +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1439 +msgid "Edit Parameter" +msgstr "" + +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1555 +msgid "Delete Parameter" +msgstr "" + +#: templates/js/translated/company.js:1496 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1546 +msgid "No supplier parts found" +msgstr "" + +#: templates/js/translated/company.js:1664 +msgid "Base Units" +msgstr "" + +#: templates/js/translated/company.js:1694 +msgid "Availability" +msgstr "" + +#: templates/js/translated/company.js:1725 +msgid "Edit supplier part" +msgstr "" + +#: templates/js/translated/company.js:1726 +msgid "Delete supplier part" +msgstr "" + +#: templates/js/translated/company.js:1779 +#: templates/js/translated/pricing.js:694 +msgid "Delete Price Break" +msgstr "" + +#: templates/js/translated/company.js:1789 +#: templates/js/translated/pricing.js:712 +msgid "Edit Price Break" +msgstr "" + +#: templates/js/translated/company.js:1804 +msgid "No price break information found" +msgstr "" + +#: templates/js/translated/company.js:1833 +msgid "Last updated" +msgstr "" + +#: templates/js/translated/company.js:1840 +msgid "Edit price break" +msgstr "" + +#: templates/js/translated/company.js:1841 +msgid "Delete price break" +msgstr "" + +#: templates/js/translated/filters.js:186 +#: templates/js/translated/filters.js:667 +msgid "true" +msgstr "" + +#: templates/js/translated/filters.js:190 +#: templates/js/translated/filters.js:668 +msgid "false" +msgstr "" + +#: templates/js/translated/filters.js:214 +msgid "Select filter" +msgstr "" + +#: templates/js/translated/filters.js:437 +msgid "Print Labels" +msgstr "" + +#: templates/js/translated/filters.js:441 +msgid "Print Reports" +msgstr "" + +#: templates/js/translated/filters.js:453 +msgid "Download table data" +msgstr "" + +#: templates/js/translated/filters.js:460 +msgid "Reload table data" +msgstr "" + +#: templates/js/translated/filters.js:469 +msgid "Add new filter" +msgstr "" + +#: templates/js/translated/filters.js:477 +msgid "Clear all filters" +msgstr "" + +#: templates/js/translated/filters.js:577 +msgid "Create filter" +msgstr "" + +#: templates/js/translated/forms.js:378 templates/js/translated/forms.js:393 +#: templates/js/translated/forms.js:407 templates/js/translated/forms.js:421 +msgid "Action Prohibited" +msgstr "" + +#: templates/js/translated/forms.js:380 +msgid "Create operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:395 +msgid "Update operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:409 +msgid "Delete operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:423 +msgid "View operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:800 +msgid "Keep this form open" +msgstr "" + +#: templates/js/translated/forms.js:903 +msgid "Enter a valid number" +msgstr "" + +#: templates/js/translated/forms.js:1477 templates/modals.html:19 +#: templates/modals.html:43 +msgid "Form errors exist" +msgstr "" + +#: templates/js/translated/forms.js:1975 +msgid "No results found" +msgstr "" + +#: templates/js/translated/forms.js:2286 templates/js/translated/search.js:239 +msgid "Searching" +msgstr "" + +#: templates/js/translated/forms.js:2500 +msgid "Clear input" +msgstr "" + +#: templates/js/translated/forms.js:3102 +msgid "File Column" +msgstr "" + +#: templates/js/translated/forms.js:3102 +msgid "Field Name" +msgstr "" + +#: templates/js/translated/forms.js:3114 +msgid "Select Columns" +msgstr "" + +#: templates/js/translated/helpers.js:77 +msgid "YES" +msgstr "" + +#: templates/js/translated/helpers.js:80 +msgid "NO" +msgstr "" + +#: templates/js/translated/helpers.js:93 +msgid "True" +msgstr "" + +#: templates/js/translated/helpers.js:94 +msgid "False" +msgstr "" + +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 +msgid "Select Items" +msgstr "" + +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 +msgid "No items selected for printing" +msgstr "" + +#: templates/js/translated/label.js:143 +msgid "Labels sent to printer" +msgstr "" + +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 +msgid "Cancel" +msgstr "" + +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 +#: templates/modals.html:28 templates/modals.html:51 +msgid "Submit" +msgstr "" + +#: templates/js/translated/modals.js:157 +msgid "Form Title" +msgstr "" + +#: templates/js/translated/modals.js:446 +msgid "Waiting for server..." +msgstr "" + +#: templates/js/translated/modals.js:597 +msgid "Show Error Information" +msgstr "" + +#: templates/js/translated/modals.js:687 +msgid "Accept" +msgstr "" + +#: templates/js/translated/modals.js:745 +msgid "Loading Data" +msgstr "" + +#: templates/js/translated/modals.js:1016 +msgid "Invalid response from server" +msgstr "" + +#: templates/js/translated/modals.js:1016 +msgid "Form data missing from server response" +msgstr "" + +#: templates/js/translated/modals.js:1028 +msgid "Error posting form data" +msgstr "" + +#: templates/js/translated/modals.js:1125 +msgid "JSON response missing form data" +msgstr "" + +#: templates/js/translated/modals.js:1140 +msgid "Error 400: Bad Request" +msgstr "" + +#: templates/js/translated/modals.js:1141 +msgid "Server returned error code 400" +msgstr "" + +#: templates/js/translated/modals.js:1164 +msgid "Error requesting form data" +msgstr "" + +#: templates/js/translated/news.js:33 +msgid "No news found" +msgstr "" + +#: templates/js/translated/news.js:38 +#: templates/js/translated/notification.js:46 +#: templates/js/translated/part.js:1610 +msgid "ID" +msgstr "" + +#: templates/js/translated/notification.js:52 +msgid "Age" +msgstr "" + +#: templates/js/translated/notification.js:65 +msgid "Notification" +msgstr "" + +#: templates/js/translated/notification.js:224 +msgid "Mark as unread" +msgstr "" + +#: templates/js/translated/notification.js:228 +msgid "Mark as read" +msgstr "" + +#: templates/js/translated/notification.js:254 +msgid "No unread notifications" +msgstr "" + +#: templates/js/translated/notification.js:296 templates/notifications.html:12 +msgid "Notifications will load here" +msgstr "" + +#: templates/js/translated/order.js:89 +msgid "Add Extra Line Item" +msgstr "" + +#: templates/js/translated/order.js:126 +msgid "Export Order" +msgstr "" + +#: templates/js/translated/order.js:241 +msgid "Duplicate Line" +msgstr "" + +#: templates/js/translated/order.js:255 +msgid "Edit Line" +msgstr "" + +#: templates/js/translated/order.js:268 +msgid "Delete Line" +msgstr "" + +#: templates/js/translated/order.js:281 +#: templates/js/translated/purchase_order.js:1990 +msgid "No line items found" +msgstr "" + +#: templates/js/translated/order.js:369 +msgid "Duplicate line" +msgstr "" + +#: templates/js/translated/order.js:370 +msgid "Edit line" +msgstr "" + +#: templates/js/translated/order.js:374 +msgid "Delete line" +msgstr "" + +#: templates/js/translated/part.js:90 +msgid "Part Attributes" +msgstr "" + +#: templates/js/translated/part.js:94 +msgid "Part Creation Options" +msgstr "" + +#: templates/js/translated/part.js:98 +msgid "Part Duplication Options" +msgstr "" + +#: templates/js/translated/part.js:121 +msgid "Add Part Category" +msgstr "" + +#: templates/js/translated/part.js:334 templates/js/translated/stock.js:175 +msgid "Icon (optional) - Explore all available icons on" +msgstr "" + +#: templates/js/translated/part.js:354 +msgid "Create Part Category" +msgstr "" + +#: templates/js/translated/part.js:357 +msgid "Create new category after this one" +msgstr "" + +#: templates/js/translated/part.js:358 +msgid "Part category created" +msgstr "" + +#: templates/js/translated/part.js:372 +msgid "Edit Part Category" +msgstr "" + +#: templates/js/translated/part.js:385 +msgid "Are you sure you want to delete this part category?" +msgstr "" + +#: templates/js/translated/part.js:390 +msgid "Move to parent category" +msgstr "" + +#: templates/js/translated/part.js:399 +msgid "Delete Part Category" +msgstr "" + +#: templates/js/translated/part.js:403 +msgid "Action for parts in this category" +msgstr "" + +#: templates/js/translated/part.js:408 +msgid "Action for child categories" +msgstr "" + +#: templates/js/translated/part.js:432 +msgid "Create Part" +msgstr "" + +#: templates/js/translated/part.js:434 +msgid "Create another part after this one" +msgstr "" + +#: templates/js/translated/part.js:435 +msgid "Part created successfully" +msgstr "" + +#: templates/js/translated/part.js:463 +msgid "Edit Part" +msgstr "" + +#: templates/js/translated/part.js:465 +msgid "Part edited" +msgstr "" + +#: templates/js/translated/part.js:476 +msgid "Create Part Variant" +msgstr "" + +#: templates/js/translated/part.js:533 +msgid "Active Part" +msgstr "" + +#: templates/js/translated/part.js:534 +msgid "Part cannot be deleted as it is currently active" +msgstr "" + +#: templates/js/translated/part.js:548 +msgid "Deleting this part cannot be reversed" +msgstr "" + +#: templates/js/translated/part.js:550 +msgid "Any stock items for this part will be deleted" +msgstr "" + +#: templates/js/translated/part.js:551 +msgid "This part will be removed from any Bills of Material" +msgstr "" + +#: templates/js/translated/part.js:552 +msgid "All manufacturer and supplier information for this part will be deleted" +msgstr "" + +#: templates/js/translated/part.js:559 +msgid "Delete Part" +msgstr "" + +#: templates/js/translated/part.js:595 +msgid "You are subscribed to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:597 +msgid "You have subscribed to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:602 +msgid "Subscribe to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:604 +msgid "You have unsubscribed to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:621 +msgid "Validating the BOM will mark each line item as valid" +msgstr "" + +#: templates/js/translated/part.js:631 +msgid "Validate Bill of Materials" +msgstr "" + +#: templates/js/translated/part.js:634 +msgid "Validated Bill of Materials" +msgstr "" + +#: templates/js/translated/part.js:659 +msgid "Copy Bill of Materials" +msgstr "" + +#: templates/js/translated/part.js:687 +#: templates/js/translated/table_filters.js:752 +msgid "Low stock" +msgstr "" + +#: templates/js/translated/part.js:690 +msgid "No stock available" +msgstr "" + +#: templates/js/translated/part.js:750 +msgid "Demand" +msgstr "" + +#: templates/js/translated/part.js:773 +msgid "Unit" +msgstr "" + +#: templates/js/translated/part.js:796 templates/js/translated/part.js:1212 +msgid "Virtual part" +msgstr "" + +#: templates/js/translated/part.js:808 +msgid "Subscribed part" +msgstr "" + +#: templates/js/translated/part.js:812 +msgid "Salable part" +msgstr "" + +#: templates/js/translated/part.js:895 +msgid "Schedule generation of a new stocktake report." +msgstr "" + +#: templates/js/translated/part.js:895 +msgid "Once complete, the stocktake report will be available for download." +msgstr "" + +#: templates/js/translated/part.js:903 +msgid "Generate Stocktake Report" +msgstr "" + +#: templates/js/translated/part.js:907 +msgid "Stocktake report scheduled" +msgstr "" + +#: templates/js/translated/part.js:1056 +msgid "No stocktake information available" +msgstr "" + +#: templates/js/translated/part.js:1114 templates/js/translated/part.js:1150 +msgid "Edit Stocktake Entry" +msgstr "" + +#: templates/js/translated/part.js:1118 templates/js/translated/part.js:1160 +msgid "Delete Stocktake Entry" +msgstr "" + +#: templates/js/translated/part.js:1287 +msgid "No variants found" +msgstr "" + +#: templates/js/translated/part.js:1605 +msgid "No part parameter templates found" +msgstr "" + +#: templates/js/translated/part.js:1668 +msgid "Edit Part Parameter Template" +msgstr "" + +#: templates/js/translated/part.js:1680 +msgid "Any parameters which reference this template will also be deleted" +msgstr "" + +#: templates/js/translated/part.js:1688 +msgid "Delete Part Parameter Template" +msgstr "" + +#: templates/js/translated/part.js:1722 +#: templates/js/translated/purchase_order.js:1654 +msgid "No purchase orders found" +msgstr "" + +#: templates/js/translated/part.js:1866 +#: templates/js/translated/purchase_order.js:2153 +#: templates/js/translated/return_order.js:755 +#: templates/js/translated/sales_order.js:1911 +msgid "This line item is overdue" +msgstr "" + +#: templates/js/translated/part.js:1912 +#: templates/js/translated/purchase_order.js:2220 +msgid "Receive line item" +msgstr "" + +#: templates/js/translated/part.js:1975 +msgid "Delete part relationship" +msgstr "" + +#: templates/js/translated/part.js:1997 +msgid "Delete Part Relationship" +msgstr "" + +#: templates/js/translated/part.js:2085 templates/js/translated/part.js:2525 +msgid "No parts found" +msgstr "" + +#: templates/js/translated/part.js:2206 +msgid "Set the part category for the selected parts" +msgstr "" + +#: templates/js/translated/part.js:2211 +msgid "Set Part Category" +msgstr "" + +#: templates/js/translated/part.js:2241 +msgid "Set category" +msgstr "" + +#: templates/js/translated/part.js:2293 +msgid "part" +msgstr "" + +#: templates/js/translated/part.js:2294 +msgid "parts" +msgstr "" + +#: templates/js/translated/part.js:2390 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2550 templates/js/translated/part.js:2680 +#: templates/js/translated/stock.js:2669 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2566 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2664 +msgid "No subcategories found" +msgstr "" + +#: templates/js/translated/part.js:2700 templates/js/translated/stock.js:2689 +msgid "Display as tree" +msgstr "" + +#: templates/js/translated/part.js:2780 +msgid "Load Subcategories" +msgstr "" + +#: templates/js/translated/part.js:2796 +msgid "Subscribed category" +msgstr "" + +#: templates/js/translated/part.js:2884 +msgid "No test templates matching query" +msgstr "" + +#: templates/js/translated/part.js:2906 templates/js/translated/search.js:342 +msgid "results" +msgstr "" + +#: templates/js/translated/part.js:2956 +msgid "Edit test template" +msgstr "" + +#: templates/js/translated/part.js:2957 +msgid "Delete test template" +msgstr "" + +#: templates/js/translated/part.js:2961 +msgid "This test is defined for a parent part" +msgstr "" + +#: templates/js/translated/part.js:2977 +msgid "Edit Test Result Template" +msgstr "" + +#: templates/js/translated/part.js:2991 +msgid "Delete Test Result Template" +msgstr "" + +#: templates/js/translated/part.js:3070 templates/js/translated/part.js:3071 +msgid "No date specified" +msgstr "" + +#: templates/js/translated/part.js:3073 +msgid "Specified date is in the past" +msgstr "" + +#: templates/js/translated/part.js:3079 +msgid "Speculative" +msgstr "" + +#: templates/js/translated/part.js:3129 +msgid "No scheduling information available for this part" +msgstr "" + +#: templates/js/translated/part.js:3135 +msgid "Error fetching scheduling information for this part" +msgstr "" + +#: templates/js/translated/part.js:3231 +msgid "Scheduled Stock Quantities" +msgstr "" + +#: templates/js/translated/part.js:3247 +msgid "Maximum Quantity" +msgstr "" + +#: templates/js/translated/part.js:3292 +msgid "Minimum Stock Level" +msgstr "" + +#: templates/js/translated/plugin.js:46 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:58 +msgid "This plugin is no longer installed" +msgstr "" + +#: templates/js/translated/plugin.js:60 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "This plugin is installed but not active" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:186 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:186 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 +msgid "The Plugin was installed" +msgstr "" + +#: templates/js/translated/plugin.js:177 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:181 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:189 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:189 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:203 +msgid "Plugin updated" +msgstr "" + +#: templates/js/translated/pricing.js:159 +msgid "Error fetching currency data" +msgstr "" + +#: templates/js/translated/pricing.js:321 +msgid "No BOM data available" +msgstr "" + +#: templates/js/translated/pricing.js:463 +msgid "No supplier pricing data available" +msgstr "" + +#: templates/js/translated/pricing.js:572 +msgid "No price break data available" +msgstr "" + +#: templates/js/translated/pricing.js:755 +msgid "No purchase history data available" +msgstr "" + +#: templates/js/translated/pricing.js:791 +msgid "Purchase Price History" +msgstr "" + +#: templates/js/translated/pricing.js:894 +msgid "No sales history data available" +msgstr "" + +#: templates/js/translated/pricing.js:916 +msgid "Sale Price History" +msgstr "" + +#: templates/js/translated/pricing.js:1005 +msgid "No variant data available" +msgstr "" + +#: templates/js/translated/pricing.js:1045 +msgid "Variant Part" +msgstr "" + +#: templates/js/translated/purchase_order.js:169 +msgid "Select purchase order to duplicate" +msgstr "" + +#: templates/js/translated/purchase_order.js:176 +msgid "Duplicate Line Items" +msgstr "" + +#: templates/js/translated/purchase_order.js:177 +msgid "Duplicate all line items from the selected order" +msgstr "" + +#: templates/js/translated/purchase_order.js:184 +msgid "Duplicate Extra Lines" +msgstr "" + +#: templates/js/translated/purchase_order.js:185 +msgid "Duplicate extra line items from the selected order" +msgstr "" + +#: templates/js/translated/purchase_order.js:206 +msgid "Edit Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:223 +msgid "Duplication Options" +msgstr "" + +#: templates/js/translated/purchase_order.js:431 +msgid "Complete Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:448 +#: templates/js/translated/return_order.js:210 +#: templates/js/translated/sales_order.js:552 +msgid "Mark this order as complete?" +msgstr "" + +#: templates/js/translated/purchase_order.js:454 +msgid "All line items have been received" +msgstr "" + +#: templates/js/translated/purchase_order.js:459 +msgid "This order has line items which have not been marked as received." +msgstr "" + +#: templates/js/translated/purchase_order.js:460 +msgid "Completing this order means that the order and line items will no longer be editable." +msgstr "" + +#: templates/js/translated/purchase_order.js:483 +msgid "Cancel Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:488 +msgid "Are you sure you wish to cancel this purchase order?" +msgstr "" + +#: templates/js/translated/purchase_order.js:494 +msgid "This purchase order can not be cancelled" +msgstr "" + +#: templates/js/translated/purchase_order.js:515 +#: templates/js/translated/return_order.js:164 +msgid "After placing this order, line items will no longer be editable." +msgstr "" + +#: templates/js/translated/purchase_order.js:520 +msgid "Issue Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:612 +msgid "At least one purchaseable part must be selected" +msgstr "" + +#: templates/js/translated/purchase_order.js:637 +msgid "Quantity to order" +msgstr "" + +#: templates/js/translated/purchase_order.js:646 +msgid "New supplier part" +msgstr "" + +#: templates/js/translated/purchase_order.js:664 +msgid "New purchase order" +msgstr "" + +#: templates/js/translated/purchase_order.js:705 +msgid "Add to purchase order" +msgstr "" + +#: templates/js/translated/purchase_order.js:755 +msgid "Merge" +msgstr "" + +#: templates/js/translated/purchase_order.js:859 +msgid "No matching supplier parts" +msgstr "" + +#: templates/js/translated/purchase_order.js:878 +msgid "No matching purchase orders" +msgstr "" + +#: templates/js/translated/purchase_order.js:1073 +#: templates/js/translated/return_order.js:490 +msgid "Select Line Items" +msgstr "" + +#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/return_order.js:491 +msgid "At least one line item must be selected" +msgstr "" + +#: templates/js/translated/purchase_order.js:1104 +msgid "Received Quantity" +msgstr "" + +#: templates/js/translated/purchase_order.js:1115 +msgid "Quantity to receive" +msgstr "" + +#: templates/js/translated/purchase_order.js:1191 +msgid "Stock Status" +msgstr "" + +#: templates/js/translated/purchase_order.js:1205 +msgid "Add barcode" +msgstr "" + +#: templates/js/translated/purchase_order.js:1206 +msgid "Remove barcode" +msgstr "" + +#: templates/js/translated/purchase_order.js:1209 +msgid "Specify location" +msgstr "" + +#: templates/js/translated/purchase_order.js:1217 +msgid "Add batch code" +msgstr "" + +#: templates/js/translated/purchase_order.js:1228 +msgid "Add serial numbers" +msgstr "" + +#: templates/js/translated/purchase_order.js:1280 +msgid "Serials" +msgstr "" + +#: templates/js/translated/purchase_order.js:1305 +msgid "Order Code" +msgstr "" + +#: templates/js/translated/purchase_order.js:1307 +msgid "Quantity to Receive" +msgstr "" + +#: templates/js/translated/purchase_order.js:1333 +#: templates/js/translated/return_order.js:560 +msgid "Confirm receipt of items" +msgstr "" + +#: templates/js/translated/purchase_order.js:1334 +msgid "Receive Purchase Order Items" +msgstr "" + +#: templates/js/translated/purchase_order.js:1402 +msgid "Scan Item Barcode" +msgstr "" + +#: templates/js/translated/purchase_order.js:1403 +msgid "Scan barcode on incoming item (must not match any existing stock items)" +msgstr "" + +#: templates/js/translated/purchase_order.js:1417 +msgid "Invalid barcode data" +msgstr "" + +#: templates/js/translated/purchase_order.js:1681 +#: templates/js/translated/return_order.js:285 +#: templates/js/translated/sales_order.js:810 +#: templates/js/translated/sales_order.js:1034 +msgid "Order is overdue" +msgstr "" + +#: templates/js/translated/purchase_order.js:1843 +msgid "All selected Line items will be deleted" +msgstr "" + +#: templates/js/translated/purchase_order.js:1861 +msgid "Delete selected Line items?" +msgstr "" + +#: templates/js/translated/purchase_order.js:1916 +#: templates/js/translated/sales_order.js:2106 +msgid "Duplicate Line Item" +msgstr "" + +#: templates/js/translated/purchase_order.js:1931 +#: templates/js/translated/return_order.js:475 +#: templates/js/translated/return_order.js:668 +#: templates/js/translated/sales_order.js:2119 +msgid "Edit Line Item" +msgstr "" + +#: templates/js/translated/purchase_order.js:1942 +#: templates/js/translated/return_order.js:681 +#: templates/js/translated/sales_order.js:2130 +msgid "Delete Line Item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2224 +#: templates/js/translated/sales_order.js:2060 +msgid "Duplicate line item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2225 +#: templates/js/translated/return_order.js:800 +#: templates/js/translated/sales_order.js:2061 +msgid "Edit line item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2226 +#: templates/js/translated/return_order.js:804 +#: templates/js/translated/sales_order.js:2067 +msgid "Delete line item" +msgstr "" + +#: templates/js/translated/report.js:49 +msgid "Print Report" +msgstr "" + +#: templates/js/translated/report.js:68 +msgid "Report print successful" +msgstr "" + +#: templates/js/translated/report.js:73 +msgid "Report printing failed" +msgstr "" + +#: templates/js/translated/return_order.js:60 +#: templates/js/translated/sales_order.js:86 +msgid "Add Customer" +msgstr "" + +#: templates/js/translated/return_order.js:134 +msgid "Create Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:149 +msgid "Edit Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:169 +msgid "Issue Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:186 +msgid "Are you sure you wish to cancel this Return Order?" +msgstr "" + +#: templates/js/translated/return_order.js:193 +msgid "Cancel Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:218 +msgid "Complete Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:265 +msgid "No return orders found" +msgstr "" + +#: templates/js/translated/return_order.js:299 +#: templates/js/translated/sales_order.js:824 +msgid "Invalid Customer" +msgstr "" + +#: templates/js/translated/return_order.js:561 +msgid "Receive Return Order Items" +msgstr "" + +#: templates/js/translated/return_order.js:692 +#: templates/js/translated/sales_order.js:2267 +msgid "No matching line items" +msgstr "" + +#: templates/js/translated/return_order.js:797 +msgid "Mark item as received" +msgstr "" + +#: templates/js/translated/sales_order.js:161 +msgid "Create Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:176 +msgid "Edit Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:291 +msgid "No stock items have been allocated to this shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:296 +msgid "The following stock items will be shipped" +msgstr "" + +#: templates/js/translated/sales_order.js:336 +msgid "Complete Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:360 +msgid "Confirm Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:416 +msgid "No pending shipments found" +msgstr "" + +#: templates/js/translated/sales_order.js:420 +msgid "No stock items have been allocated to pending shipments" +msgstr "" + +#: templates/js/translated/sales_order.js:430 +msgid "Complete Shipments" +msgstr "" + +#: templates/js/translated/sales_order.js:452 +msgid "Skip" +msgstr "" + +#: templates/js/translated/sales_order.js:484 +msgid "Ship Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:500 +msgid "Ship this order?" +msgstr "" + +#: templates/js/translated/sales_order.js:506 +msgid "Order cannot be shipped as there are incomplete shipments" +msgstr "" + +#: templates/js/translated/sales_order.js:513 +msgid "This order has line items which have not been completed." +msgstr "" + +#: templates/js/translated/sales_order.js:514 +msgid "Shipping this order means that the order and line items will no longer be editable." +msgstr "" + +#: templates/js/translated/sales_order.js:572 +msgid "Issue this Sales Order?" +msgstr "" + +#: templates/js/translated/sales_order.js:577 +msgid "Issue Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:596 +msgid "Cancel Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:601 +msgid "Cancelling this order means that the order will no longer be editable." +msgstr "" + +#: templates/js/translated/sales_order.js:655 +msgid "Create New Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:764 +msgid "No sales orders found" +msgstr "" + +#: templates/js/translated/sales_order.js:944 +msgid "Edit shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:947 +msgid "Complete shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:952 +msgid "Delete shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:969 +msgid "Edit Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:984 +msgid "Delete Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:1017 +msgid "No matching shipments found" +msgstr "" + +#: templates/js/translated/sales_order.js:1042 +msgid "Shipment Reference" +msgstr "" + +#: templates/js/translated/sales_order.js:1066 +#: templates/js/translated/sales_order.js:1565 +msgid "Not shipped" +msgstr "" + +#: templates/js/translated/sales_order.js:1084 +msgid "Tracking" +msgstr "" + +#: templates/js/translated/sales_order.js:1088 +msgid "Invoice" +msgstr "" + +#: templates/js/translated/sales_order.js:1255 +msgid "Add Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:1306 +msgid "Confirm stock allocation" +msgstr "" + +#: templates/js/translated/sales_order.js:1307 +msgid "Allocate Stock Items to Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:1513 +msgid "No sales order allocations found" +msgstr "" + +#: templates/js/translated/sales_order.js:1605 +msgid "Edit Stock Allocation" +msgstr "" + +#: templates/js/translated/sales_order.js:1619 +msgid "Confirm Delete Operation" +msgstr "" + +#: templates/js/translated/sales_order.js:1620 +msgid "Delete Stock Allocation" +msgstr "" + +#: templates/js/translated/sales_order.js:1659 +#: templates/js/translated/sales_order.js:1746 +#: templates/js/translated/stock.js:1776 +msgid "Shipped to customer" +msgstr "" + +#: templates/js/translated/sales_order.js:1667 +#: templates/js/translated/sales_order.js:1755 +msgid "Stock location not specified" +msgstr "" + +#: templates/js/translated/sales_order.js:2044 +msgid "Allocate serial numbers" +msgstr "" + +#: templates/js/translated/sales_order.js:2048 +msgid "Purchase stock" +msgstr "" + +#: templates/js/translated/sales_order.js:2057 +#: templates/js/translated/sales_order.js:2245 +msgid "Calculate price" +msgstr "" + +#: templates/js/translated/sales_order.js:2071 +msgid "Cannot be deleted as items have been shipped" +msgstr "" + +#: templates/js/translated/sales_order.js:2074 +msgid "Cannot be deleted as items have been allocated" +msgstr "" + +#: templates/js/translated/sales_order.js:2145 +msgid "Allocate Serial Numbers" +msgstr "" + +#: templates/js/translated/sales_order.js:2253 +msgid "Update Unit Price" +msgstr "" + +#: templates/js/translated/search.js:270 +msgid "No results" +msgstr "" + +#: templates/js/translated/search.js:292 templates/search.html:25 +msgid "Enter search query" +msgstr "" + +#: templates/js/translated/search.js:342 +msgid "result" +msgstr "" + +#: templates/js/translated/search.js:352 +msgid "Minimize results" +msgstr "" + +#: templates/js/translated/search.js:355 +msgid "Remove results" +msgstr "" + +#: templates/js/translated/stock.js:98 +msgid "Serialize Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:129 +msgid "Confirm Stock Serialization" +msgstr "" + +#: templates/js/translated/stock.js:139 +msgid "Default icon for all locations that have no icon set (optional) - Explore all available icons on" +msgstr "" + +#: templates/js/translated/stock.js:166 +msgid "Add Location type" +msgstr "" + +#: templates/js/translated/stock.js:202 +msgid "Edit Stock Location" +msgstr "" + +#: templates/js/translated/stock.js:217 +msgid "New Stock Location" +msgstr "" + +#: templates/js/translated/stock.js:219 +msgid "Create another location after this one" +msgstr "" + +#: templates/js/translated/stock.js:220 +msgid "Stock location created" +msgstr "" + +#: templates/js/translated/stock.js:234 +msgid "Are you sure you want to delete this stock location?" +msgstr "" + +#: templates/js/translated/stock.js:241 +msgid "Move to parent stock location" +msgstr "" + +#: templates/js/translated/stock.js:250 +msgid "Delete Stock Location" +msgstr "" + +#: templates/js/translated/stock.js:254 +msgid "Action for stock items in this stock location" +msgstr "" + +#: templates/js/translated/stock.js:259 +msgid "Action for sub-locations" +msgstr "" + +#: templates/js/translated/stock.js:313 +msgid "This part cannot be serialized" +msgstr "" + +#: templates/js/translated/stock.js:349 +msgid "Add given quantity as packs instead of individual items" +msgstr "" + +#: templates/js/translated/stock.js:362 +msgid "Enter initial quantity for this stock item" +msgstr "" + +#: templates/js/translated/stock.js:368 +msgid "Enter serial numbers for new stock (or leave blank)" +msgstr "" + +#: templates/js/translated/stock.js:439 +msgid "Stock item duplicated" +msgstr "" + +#: templates/js/translated/stock.js:459 +msgid "Duplicate Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:475 +msgid "Are you sure you want to delete this stock item?" +msgstr "" + +#: templates/js/translated/stock.js:480 +msgid "Delete Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:501 +msgid "Edit Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:543 +msgid "Create another item after this one" +msgstr "" + +#: templates/js/translated/stock.js:555 +msgid "Created new stock item" +msgstr "" + +#: templates/js/translated/stock.js:568 +msgid "Created multiple stock items" +msgstr "" + +#: templates/js/translated/stock.js:593 +msgid "Find Serial Number" +msgstr "" + +#: templates/js/translated/stock.js:597 templates/js/translated/stock.js:598 +msgid "Enter serial number" +msgstr "" + +#: templates/js/translated/stock.js:614 +msgid "Enter a serial number" +msgstr "" + +#: templates/js/translated/stock.js:634 +msgid "No matching serial number" +msgstr "" + +#: templates/js/translated/stock.js:643 +msgid "More than one matching result found" +msgstr "" + +#: templates/js/translated/stock.js:751 +msgid "Confirm stock assignment" +msgstr "" + +#: templates/js/translated/stock.js:752 +msgid "Assign Stock to Customer" +msgstr "" + +#: templates/js/translated/stock.js:829 +msgid "Warning: Merge operation cannot be reversed" +msgstr "" + +#: templates/js/translated/stock.js:830 +msgid "Some information will be lost when merging stock items" +msgstr "" + +#: templates/js/translated/stock.js:832 +msgid "Stock transaction history will be deleted for merged items" +msgstr "" + +#: templates/js/translated/stock.js:833 +msgid "Supplier part information will be deleted for merged items" +msgstr "" + +#: templates/js/translated/stock.js:928 +msgid "Confirm stock item merge" +msgstr "" + +#: templates/js/translated/stock.js:929 +msgid "Merge Stock Items" +msgstr "" + +#: templates/js/translated/stock.js:1024 +msgid "Transfer Stock" +msgstr "" + +#: templates/js/translated/stock.js:1025 +msgid "Move" +msgstr "" + +#: templates/js/translated/stock.js:1031 +msgid "Count Stock" +msgstr "" + +#: templates/js/translated/stock.js:1032 +msgid "Count" +msgstr "" + +#: templates/js/translated/stock.js:1036 +msgid "Remove Stock" +msgstr "" + +#: templates/js/translated/stock.js:1037 +msgid "Take" +msgstr "" + +#: templates/js/translated/stock.js:1041 +msgid "Add Stock" +msgstr "" + +#: templates/js/translated/stock.js:1042 users/models.py:396 +msgid "Add" +msgstr "" + +#: templates/js/translated/stock.js:1046 +msgid "Delete Stock" +msgstr "" + +#: templates/js/translated/stock.js:1146 +msgid "Quantity cannot be adjusted for serialized stock" +msgstr "" + +#: templates/js/translated/stock.js:1146 +msgid "Specify stock quantity" +msgstr "" + +#: templates/js/translated/stock.js:1180 templates/js/translated/stock.js:3299 +msgid "Select Stock Items" +msgstr "" + +#: templates/js/translated/stock.js:1181 +msgid "Select at least one available stock item" +msgstr "" + +#: templates/js/translated/stock.js:1227 +msgid "Confirm stock adjustment" +msgstr "" + +#: templates/js/translated/stock.js:1363 +msgid "PASS" +msgstr "" + +#: templates/js/translated/stock.js:1365 +msgid "FAIL" +msgstr "" + +#: templates/js/translated/stock.js:1370 +msgid "NO RESULT" +msgstr "" + +#: templates/js/translated/stock.js:1450 +msgid "Pass test" +msgstr "" + +#: templates/js/translated/stock.js:1453 +msgid "Add test result" +msgstr "" + +#: templates/js/translated/stock.js:1456 +msgid "Edit test result" +msgstr "" + +#: templates/js/translated/stock.js:1457 templates/js/translated/stock.js:1731 +msgid "Delete test result" +msgstr "" + +#: templates/js/translated/stock.js:1476 +msgid "No test results found" +msgstr "" + +#: templates/js/translated/stock.js:1540 +msgid "Test Date" +msgstr "" + +#: templates/js/translated/stock.js:1553 +msgid "Test started" +msgstr "" + +#: templates/js/translated/stock.js:1562 +msgid "Test finished" +msgstr "" + +#: templates/js/translated/stock.js:1716 +msgid "Edit Test Result" +msgstr "" + +#: templates/js/translated/stock.js:1736 +msgid "Delete Test Result" +msgstr "" + +#: templates/js/translated/stock.js:1768 +msgid "In production" +msgstr "" + +#: templates/js/translated/stock.js:1772 +msgid "Installed in Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:1780 +msgid "Assigned to Sales Order" +msgstr "" + +#: templates/js/translated/stock.js:1786 +msgid "No stock location set" +msgstr "" + +#: templates/js/translated/stock.js:1842 +msgid "Change stock status" +msgstr "" + +#: templates/js/translated/stock.js:1851 +msgid "Merge stock" +msgstr "" + +#: templates/js/translated/stock.js:1900 +msgid "Delete stock" +msgstr "" + +#: templates/js/translated/stock.js:1953 +msgid "stock items" +msgstr "" + +#: templates/js/translated/stock.js:1958 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:1969 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:2013 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2091 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2096 +msgid "Stock item assigned to sales order" +msgstr "" + +#: templates/js/translated/stock.js:2099 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2102 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2104 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2106 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2109 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2111 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2115 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2117 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2122 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2124 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2126 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2130 +#: templates/js/translated/table_filters.js:350 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2295 +msgid "Supplier part not specified" +msgstr "" + +#: templates/js/translated/stock.js:2342 +msgid "Stock Value" +msgstr "" + +#: templates/js/translated/stock.js:2470 +msgid "No stock items matching query" +msgstr "" + +#: templates/js/translated/stock.js:2573 +msgid "stock locations" +msgstr "" + +#: templates/js/translated/stock.js:2728 +msgid "Load Sublocations" +msgstr "" + +#: templates/js/translated/stock.js:2846 +msgid "Details" +msgstr "" + +#: templates/js/translated/stock.js:2850 +msgid "No changes" +msgstr "" + +#: templates/js/translated/stock.js:2862 +msgid "Part information unavailable" +msgstr "" + +#: templates/js/translated/stock.js:2884 +msgid "Location no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2901 +msgid "Build order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2916 +msgid "Purchase order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2933 +msgid "Sales Order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2950 +msgid "Return Order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2969 +msgid "Customer no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2987 +msgid "Stock item no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:3005 +msgid "Added" +msgstr "" + +#: templates/js/translated/stock.js:3013 +msgid "Removed" +msgstr "" + +#: templates/js/translated/stock.js:3085 +msgid "No installed items" +msgstr "" + +#: templates/js/translated/stock.js:3139 templates/js/translated/stock.js:3175 +msgid "Uninstall Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:3197 +msgid "Select stock item to uninstall" +msgstr "" + +#: templates/js/translated/stock.js:3218 +msgid "Install another stock item into this item" +msgstr "" + +#: templates/js/translated/stock.js:3219 +msgid "Stock items can only be installed if they meet the following criteria" +msgstr "" + +#: templates/js/translated/stock.js:3221 +msgid "The Stock Item links to a Part which is the BOM for this Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:3222 +msgid "The Stock Item is currently available in stock" +msgstr "" + +#: templates/js/translated/stock.js:3223 +msgid "The Stock Item is not already installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:3224 +msgid "The Stock Item is tracked by either a batch code or serial number" +msgstr "" + +#: templates/js/translated/stock.js:3237 +msgid "Select part to install" +msgstr "" + +#: templates/js/translated/stock.js:3300 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3313 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3317 +msgid "Change Stock Status" +msgstr "" + +#: templates/js/translated/table_filters.js:74 +msgid "Has project code" +msgstr "" + +#: templates/js/translated/table_filters.js:89 +#: templates/js/translated/table_filters.js:605 +#: templates/js/translated/table_filters.js:617 +#: templates/js/translated/table_filters.js:658 +msgid "Order status" +msgstr "" + +#: templates/js/translated/table_filters.js:94 +#: templates/js/translated/table_filters.js:622 +#: templates/js/translated/table_filters.js:648 +#: templates/js/translated/table_filters.js:663 +msgid "Outstanding" +msgstr "" + +#: templates/js/translated/table_filters.js:102 +#: templates/js/translated/table_filters.js:528 +#: templates/js/translated/table_filters.js:630 +#: templates/js/translated/table_filters.js:671 +msgid "Assigned to me" +msgstr "" + +#: templates/js/translated/table_filters.js:158 +msgid "Trackable Part" +msgstr "" + +#: templates/js/translated/table_filters.js:162 +msgid "Assembled Part" +msgstr "" + +#: templates/js/translated/table_filters.js:166 +msgid "Has Available Stock" +msgstr "" + +#: templates/js/translated/table_filters.js:182 +msgid "Allow Variant Stock" +msgstr "" + +#: templates/js/translated/table_filters.js:234 +#: templates/js/translated/table_filters.js:345 +msgid "Include sublocations" +msgstr "" + +#: templates/js/translated/table_filters.js:235 +msgid "Include locations" +msgstr "" + +#: templates/js/translated/table_filters.js:267 +msgid "Has location type" +msgstr "" + +#: templates/js/translated/table_filters.js:278 +#: templates/js/translated/table_filters.js:279 +#: templates/js/translated/table_filters.js:711 +msgid "Include subcategories" +msgstr "" + +#: templates/js/translated/table_filters.js:287 +#: templates/js/translated/table_filters.js:764 +msgid "Subscribed" +msgstr "" + +#: templates/js/translated/table_filters.js:298 +#: templates/js/translated/table_filters.js:380 +msgid "Is Serialized" +msgstr "" + +#: templates/js/translated/table_filters.js:301 +#: templates/js/translated/table_filters.js:387 +msgid "Serial number GTE" +msgstr "" + +#: templates/js/translated/table_filters.js:302 +#: templates/js/translated/table_filters.js:388 +msgid "Serial number greater than or equal to" +msgstr "" + +#: templates/js/translated/table_filters.js:305 +#: templates/js/translated/table_filters.js:391 +msgid "Serial number LTE" +msgstr "" + +#: templates/js/translated/table_filters.js:306 +#: templates/js/translated/table_filters.js:392 +msgid "Serial number less than or equal to" +msgstr "" + +#: templates/js/translated/table_filters.js:309 +#: templates/js/translated/table_filters.js:310 +#: templates/js/translated/table_filters.js:383 +#: templates/js/translated/table_filters.js:384 +msgid "Serial number" +msgstr "" + +#: templates/js/translated/table_filters.js:314 +#: templates/js/translated/table_filters.js:405 +msgid "Batch code" +msgstr "" + +#: templates/js/translated/table_filters.js:325 +#: templates/js/translated/table_filters.js:700 +msgid "Active parts" +msgstr "" + +#: templates/js/translated/table_filters.js:326 +msgid "Show stock for active parts" +msgstr "" + +#: templates/js/translated/table_filters.js:331 +msgid "Part is an assembly" +msgstr "" + +#: templates/js/translated/table_filters.js:335 +msgid "Is allocated" +msgstr "" + +#: templates/js/translated/table_filters.js:336 +msgid "Item has been allocated" +msgstr "" + +#: templates/js/translated/table_filters.js:341 +msgid "Stock is available for use" +msgstr "" + +#: templates/js/translated/table_filters.js:346 +msgid "Include stock in sublocations" +msgstr "" + +#: templates/js/translated/table_filters.js:351 +msgid "Show stock items which are depleted" +msgstr "" + +#: templates/js/translated/table_filters.js:356 +msgid "Show items which are in stock" +msgstr "" + +#: templates/js/translated/table_filters.js:361 +msgid "Show items which are in production" +msgstr "" + +#: templates/js/translated/table_filters.js:365 +msgid "Include Variants" +msgstr "" + +#: templates/js/translated/table_filters.js:366 +msgid "Include stock items for variant parts" +msgstr "" + +#: templates/js/translated/table_filters.js:371 +msgid "Show stock items which are installed in another item" +msgstr "" + +#: templates/js/translated/table_filters.js:376 +msgid "Show items which have been assigned to a customer" +msgstr "" + +#: templates/js/translated/table_filters.js:396 +#: templates/js/translated/table_filters.js:397 +msgid "Stock status" +msgstr "" + +#: templates/js/translated/table_filters.js:400 +msgid "Has batch code" +msgstr "" + +#: templates/js/translated/table_filters.js:409 +msgid "Stock item is tracked by either batch code or serial number" +msgstr "" + +#: templates/js/translated/table_filters.js:414 +msgid "Has purchase price" +msgstr "" + +#: templates/js/translated/table_filters.js:415 +msgid "Show stock items which have a purchase price set" +msgstr "" + +#: templates/js/translated/table_filters.js:419 +msgid "Expiry Date before" +msgstr "" + +#: templates/js/translated/table_filters.js:423 +msgid "Expiry Date after" +msgstr "" + +#: templates/js/translated/table_filters.js:436 +msgid "Show stock items which have expired" +msgstr "" + +#: templates/js/translated/table_filters.js:442 +msgid "Show stock which is close to expiring" +msgstr "" + +#: templates/js/translated/table_filters.js:456 +msgid "Test Passed" +msgstr "" + +#: templates/js/translated/table_filters.js:460 +msgid "Include Installed Items" +msgstr "" + +#: templates/js/translated/table_filters.js:515 +msgid "Build status" +msgstr "" + +#: templates/js/translated/table_filters.js:712 +msgid "Include parts in subcategories" +msgstr "" + +#: templates/js/translated/table_filters.js:717 +msgid "Show active parts" +msgstr "" + +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 +msgid "Available stock" +msgstr "" + +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 +msgid "Has Units" +msgstr "" + +#: templates/js/translated/table_filters.js:739 +msgid "Part has defined units" +msgstr "" + +#: templates/js/translated/table_filters.js:743 +msgid "Has IPN" +msgstr "" + +#: templates/js/translated/table_filters.js:744 +msgid "Part has internal part number" +msgstr "" + +#: templates/js/translated/table_filters.js:748 +msgid "In stock" +msgstr "" + +#: templates/js/translated/table_filters.js:756 +msgid "Purchasable" +msgstr "" + +#: templates/js/translated/table_filters.js:768 +msgid "Has stocktake entries" +msgstr "" + +#: templates/js/translated/table_filters.js:834 +msgid "Has Choices" +msgstr "" + +#: templates/js/translated/tables.js:92 +msgid "Display calendar view" +msgstr "" + +#: templates/js/translated/tables.js:102 +msgid "Display list view" +msgstr "" + +#: templates/js/translated/tables.js:112 +msgid "Display tree view" +msgstr "" + +#: templates/js/translated/tables.js:130 +msgid "Expand all rows" +msgstr "" + +#: templates/js/translated/tables.js:136 +msgid "Collapse all rows" +msgstr "" + +#: templates/js/translated/tables.js:186 +msgid "Export Table Data" +msgstr "" + +#: templates/js/translated/tables.js:190 +msgid "Select File Format" +msgstr "" + +#: templates/js/translated/tables.js:529 +msgid "Loading data" +msgstr "" + +#: templates/js/translated/tables.js:532 +msgid "rows per page" +msgstr "" + +#: templates/js/translated/tables.js:537 +msgid "Showing all rows" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "Showing" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "to" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "of" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "rows" +msgstr "" + +#: templates/js/translated/tables.js:546 +msgid "No matching results" +msgstr "" + +#: templates/js/translated/tables.js:549 +msgid "Hide/Show pagination" +msgstr "" + +#: templates/js/translated/tables.js:555 +msgid "Toggle" +msgstr "" + +#: templates/js/translated/tables.js:561 +msgid "All" +msgstr "" + +#: templates/navbar.html:45 +msgid "Buy" +msgstr "" + +#: templates/navbar.html:57 +msgid "Sell" +msgstr "" + +#: templates/navbar.html:121 +msgid "Show Notifications" +msgstr "" + +#: templates/navbar.html:124 +msgid "New Notifications" +msgstr "" + +#: templates/navbar.html:144 users/models.py:201 +msgid "Admin" +msgstr "" + +#: templates/navbar.html:148 +msgid "Logout" +msgstr "" + +#: templates/notes_buttons.html:6 templates/notes_buttons.html:7 +msgid "Save" +msgstr "" + +#: templates/notifications.html:9 +msgid "Show all notifications and history" +msgstr "" + +#: templates/pui_banner.html:9 +msgid "Platform UI - the new UI for InvenTree - provides more modern administration options." +msgstr "" + +#: templates/pui_banner.html:12 +msgid "Platform UI - the new UI for InvenTree - is ready to be tested." +msgstr "" + +#: templates/pui_banner.html:15 +msgid "Try it out now" +msgstr "" + +#: templates/pui_banner.html:15 +msgid "here" +msgstr "" + +#: templates/qr_code.html:11 +msgid "QR data not provided" +msgstr "" + +#: templates/registration/logged_out.html:7 +msgid "You were logged out successfully." +msgstr "" + +#: templates/registration/logged_out.html:9 +msgid "Log in again" +msgstr "" + +#: templates/search.html:9 +msgid "Show full search results" +msgstr "" + +#: templates/search.html:12 +msgid "Clear search" +msgstr "" + +#: templates/search.html:15 +msgid "Close search menu" +msgstr "" + +#: templates/socialaccount/authentication_error.html:5 +msgid "Social Network Login Failure" +msgstr "" + +#: templates/socialaccount/authentication_error.html:8 +msgid "Account Login Failure" +msgstr "" + +#: templates/socialaccount/authentication_error.html:11 +msgid "An error occurred while attempting to login via your social network account." +msgstr "" + +#: templates/socialaccount/authentication_error.html:13 +msgid "Contact your system administrator for further information." +msgstr "" + +#: templates/socialaccount/login.html:13 +#, python-format +msgid "Connect %(provider)s" +msgstr "" + +#: templates/socialaccount/login.html:15 +#, python-format +msgid "You are about to connect a new third party account from %(provider)s." +msgstr "" + +#: templates/socialaccount/login.html:17 +#, python-format +msgid "Sign In Via %(provider)s" +msgstr "" + +#: templates/socialaccount/login.html:19 +#, python-format +msgid "You are about to sign in using a third party account from %(provider)s." +msgstr "" + +#: templates/socialaccount/login.html:24 +msgid "Continue" +msgstr "" + +#: templates/socialaccount/login.html:29 +msgid "Invalid SSO Provider" +msgstr "" + +#: templates/socialaccount/login.html:31 +msgid "The selected SSO provider is invalid, or has not been correctly configured" +msgstr "" + +#: templates/socialaccount/signup.html:11 +#, python-format +msgid "You are about to use your %(provider_name)s account to login to %(site_name)s." +msgstr "" + +#: templates/socialaccount/signup.html:13 +msgid "As a final step, please complete the following form" +msgstr "" + +#: templates/socialaccount/snippets/provider_list.html:26 +msgid "Provider has not been configured" +msgstr "" + +#: templates/socialaccount/snippets/provider_list.html:35 +msgid "No SSO providers have been configured" +msgstr "" + +#: templates/stats.html:13 +msgid "Instance Name" +msgstr "" + +#: templates/stats.html:18 +msgid "Database" +msgstr "" + +#: templates/stats.html:26 +msgid "Server is running in debug mode" +msgstr "" + +#: templates/stats.html:33 +msgid "Docker Mode" +msgstr "" + +#: templates/stats.html:34 +msgid "Server is deployed using docker" +msgstr "" + +#: templates/stats.html:39 +msgid "Plugin Support" +msgstr "" + +#: templates/stats.html:43 +msgid "Plugin support enabled" +msgstr "" + +#: templates/stats.html:45 +msgid "Plugin support disabled" +msgstr "" + +#: templates/stats.html:52 +msgid "Server status" +msgstr "" + +#: templates/stats.html:55 +msgid "Healthy" +msgstr "" + +#: templates/stats.html:57 +msgid "Issues detected" +msgstr "" + +#: templates/stats.html:64 +msgid "Background Worker" +msgstr "" + +#: templates/stats.html:67 +msgid "Background worker not running" +msgstr "" + +#: templates/stats.html:75 +msgid "Email Settings" +msgstr "" + +#: templates/stats.html:78 +msgid "Email settings not configured" +msgstr "" + +#: templates/yesnolabel.html:4 +msgid "Yes" +msgstr "" + +#: templates/yesnolabel.html:6 +msgid "No" +msgstr "" + +#: users/admin.py:104 +msgid "Users" +msgstr "" + +#: users/admin.py:105 +msgid "Select which users are assigned to this group" +msgstr "" + +#: users/admin.py:249 +msgid "The following users are members of multiple groups" +msgstr "" + +#: users/admin.py:283 +msgid "Personal info" +msgstr "" + +#: users/admin.py:285 +msgid "Permissions" +msgstr "" + +#: users/admin.py:288 +msgid "Important dates" +msgstr "" + +#: users/authentication.py:29 users/models.py:138 +msgid "Token has been revoked" +msgstr "" + +#: users/authentication.py:32 +msgid "Token has expired" +msgstr "" + +#: users/models.py:81 +msgid "API Token" +msgstr "" + +#: users/models.py:82 +msgid "API Tokens" +msgstr "" + +#: users/models.py:118 +msgid "Token Name" +msgstr "" + +#: users/models.py:119 +msgid "Custom token name" +msgstr "" + +#: users/models.py:125 +msgid "Token expiry date" +msgstr "" + +#: users/models.py:133 +msgid "Last Seen" +msgstr "" + +#: users/models.py:134 +msgid "Last time the token was used" +msgstr "" + +#: users/models.py:138 +msgid "Revoked" +msgstr "" + +#: users/models.py:379 +msgid "Permission set" +msgstr "" + +#: users/models.py:388 +msgid "Group" +msgstr "" + +#: users/models.py:392 +msgid "View" +msgstr "" + +#: users/models.py:392 +msgid "Permission to view items" +msgstr "" + +#: users/models.py:396 +msgid "Permission to add items" +msgstr "" + +#: users/models.py:400 +msgid "Change" +msgstr "" + +#: users/models.py:402 +msgid "Permissions to edit items" +msgstr "" + +#: users/models.py:408 +msgid "Permission to delete items" +msgstr "" diff --git a/src/backend/InvenTree/locale/fa/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/fa/LC_MESSAGES/django.po index d552c5246b..96c62781be 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:05\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Persian\n" "Language: fa_IR\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "Address e API peida nashod" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "کاربر سطح دسترسی نمایش این مدل را ندارد" @@ -56,21 +56,21 @@ msgstr "جزئیات خطا را می توان در پنل مدیریت پیدا msgid "Enter date" msgstr "تاریخ را وارد کنید" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "آدرس ایمیل اصلی ارائه شده معتبر نیست." msgid "The provided email domain is not approved." msgstr "دامنه ایمیل ارائه شده تایید نشده است." -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "فایل‌های داده" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "فایل را برای بارگذاری انتخاب کنید" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "این نوع فایل پشتیبانی نمی‌شود" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "حجم فایل خیلی بزرگ است" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "هیچ ستونی در فایل یافت نشد" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "هیچ ردیف داده ای در فایل یافت نشد" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "هیچ ردیف داده ای ارائه نشده است" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "هیچ ستون داده ای ارائه نشده است" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "ستون مورد نیاز وجود ندارد: \"{name}\"" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "ستون تکراری: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "آدرس فایل تصویری از راه دور" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "مرجع سفارش فروش" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "منبع محل" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "مقصد" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/fi/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/fi/LC_MESSAGES/django.po index 9495f6c527..f6dbd23f35 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API-rajapintaa ei löydy" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Käyttäjän oikeudet eivät riitä kohteen tarkastelemiseen" @@ -56,21 +56,21 @@ msgstr "Virheen tiedot löytyvät hallintapaneelista" msgid "Enter date" msgstr "Anna päivämäärä" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Liitännäisen metadata" msgid "JSON metadata field, for use by external plugins" msgstr "JSON metadatakenttä, ulkoisten liitännäisten käyttöön" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Virheellisesti muotoiltu malli" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Viitekenttä ei voi olla tyhjä" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Viitenumero on liian suuri" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Virheellinen valinta" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Virheellinen valinta" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Nimi" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Nimi" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Nimi" msgid "Description" msgstr "Kuvaus" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Kuvaus (valinnainen)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Polku" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Viivakoodin Tiedot" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Palvelinvirhe" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Täytyy olla kelvollinen luku" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Valuutta" msgid "Select currency from available options" msgstr "Valitse valuutta käytettävissä olevista vaihtoehdoista" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "Käyttäjätunnus" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "Etunimi" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "Sukunimi" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Aktiivinen" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Virheellinen arvo" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Datatiedosto" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Valitse lähetettävä datatiedosto" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Tiedostotyyppiä ei tueta" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Tiedosto on liian suuri" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Datarivejä ei annettu" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Datasarakkeita ei annettu" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Vaadittu sarake puuttuu: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplikaatti sarake: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "Kuvatiedoston URL" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Kuvien lataaminen ei ole käytössä" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "Järjestelmän tiedot" msgid "About InvenTree" msgstr "Tietoja InvenTree:stä" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Saatavilla" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "Osa" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Ulkoinen linkki" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Linkki ulkoiseen URLiin" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "Määrä" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "Varastotuote" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Sarjanumerot" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "Sijainti" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "Tila" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Ei sallittu" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Valmistajan osanumero" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Seurattavissa" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "Peruttu" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "Viimeisimmän päivityksen aikaleima" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Ei ryhmää" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Uudelleenkäynnistys vaaditaan" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Yrityksen nimi" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Yrityksen sisäinen nimi" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Oletusvaluutta" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "päivää" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Automaattinen varmuuskopionti" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Ota käyttöön tietokannan ja mediatiedostojen automaattinen varmuuskopiointi" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Automaattisen varmuuskopioinnin aikaväli" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Viivakoodituki" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Komponentti" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Ostettavissa" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Seurattavissa" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Sisäiset hinnat" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "Sisäisen hinnan ohitus" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Sivun koko" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "Täytä sarjanumerot automaattisesti" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "Salli salasananpalautus" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Salli rekisteröinti" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "Salli SSO" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "Salli SSO kirjautumissivuilla" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "Salli SSO rekisteröinti" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" -msgstr "Sähköposti vaaditaan" - -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" -#: common/models.py:1927 -msgid "Mail twice" -msgstr "Sähköpostiosoite kahdesti" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "Salasana kahdesti" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "Sallitut verkkotunnukset" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" -msgstr "Pakota MFA" - #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" -msgstr "" +msgid "Email required" +msgstr "Sähköposti vaaditaan" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" -msgstr "" +msgid "Mail twice" +msgstr "Sähköpostiosoite kahdesti" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" msgstr "" +#: common/models.py:1996 +msgid "Password twice" +msgstr "Salasana kahdesti" + #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" -msgstr "" +#: common/models.py:2002 +msgid "Allowed domains" +msgstr "Sallitut verkkotunnukset" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" -msgstr "" +#: common/models.py:2018 +msgid "Enforce MFA" +msgstr "Pakota MFA" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" -msgstr "Näytä uutiset" +msgid "Show depleted stock items on the homepage" +msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" -msgstr "Näytä uutiset kotisivulla" +#: common/models.py:2227 +msgid "Show needed stock" +msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" -msgstr "" +#: common/models.py:2287 +msgid "Show News" +msgstr "Näytä uutiset" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" +msgstr "Näytä uutiset kotisivulla" + +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" -msgstr "" - -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Käyttäjä" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Hinta" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Aktiivinen" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "Salaisuus" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "Isäntä" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Otsikko" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "Otsikko" msgid "Link" msgstr "Linkki" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "Julkaistu" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Julkaisija" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "Yhteenveto" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "Kuva" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "Kuvatiedosto" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Liite" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Puuttuva tiedosto" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Puuttuva ulkoinen linkki" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Valitse liitettävä tiedosto" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Kommentti" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Tiedostonimi" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "Edellinen vaihe" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Yritys" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" -msgstr "on asiakas" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" -msgstr "on toimittaja" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" -msgstr "on valmistaja" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" -msgstr "" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Osoite" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Valmistaja" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Valitse valmistaja" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Valmistajan osanumero" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Arvo" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Toimittaja" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Valitse toimittaja" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "Toimittajan varastonimike" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "Valitse valmistajan osa" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Muistiinpano" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Asiakas" @@ -4278,13 +4448,6 @@ msgstr "Asiakas" msgid "Uses default currency" msgstr "Käyttää oletusvaluuttaa" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Osoite" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Puhelin" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Uusi yritys" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "Hinta yhteensä" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "Tilauksen valuutta" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "Asiakkaan viite " -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "Vastaanotettu" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Lähetetty" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" -msgstr "Seurantakoodi" +msgid "User who checked this shipment" +msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "Seurantakoodi" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "Laskunumero" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Viivakoodi" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Avainsanat" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "Kategoria" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "Oletus avainsanat" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "Kuvake" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "Kuvake (valinnainen)" @@ -6081,1002 +6422,1035 @@ msgstr "Kuvake (valinnainen)" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "Päivämäärä" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "Muut merkinnät" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "Raportti" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Käytössä" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "Valmistajan osanumero" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "Luo raportti" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Poista" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "Käyttäjätunnus" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "Etunimi" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "Sukunimi" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "Lähetä" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Ryhmä" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Näytä" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Oikeus tarkastella kohteita" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Oikeus lisätä kohteita" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Muuta" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Oikeus muokata kohteita" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Oikeus poistaa kohteita" diff --git a/src/backend/InvenTree/locale/fr/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/fr/LC_MESSAGES/django.po index d0fdc77415..b44f420bb0 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:55\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "Point de terminaison de l'API introuvable" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "L'utilisateur n'a pas la permission de voir ce modèle" @@ -56,21 +56,21 @@ msgstr "Les détails de l'erreur peuvent être trouvées dans le panneau d'admin msgid "Enter date" msgstr "Entrer la date" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "L'enregistrement est désactivé." @@ -297,7 +297,7 @@ msgstr "Portugais (Brésilien)" #: InvenTree/locales.py:41 msgid "Romanian" -msgstr "" +msgstr "Roumain" #: InvenTree/locales.py:42 msgid "Russian" @@ -348,8 +348,8 @@ msgstr "Chinois (Traditionnel)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Se connecter à l'application" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Métadonnées de l'Extension" msgid "JSON metadata field, for use by external plugins" msgstr "Champs metadata JSON, pour plugins tiers" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Modèle mal formaté" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Clé de format inconnu spécifiée" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Clé de format requise manquante" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Le champ de référence ne peut pas être vide" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "La référence doit correspondre au modèle requis" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Le numéro de référence est trop grand" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 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:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Choix invalide" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Choix invalide" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Nom" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Nom" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Nom" msgid "Description" msgstr "Description" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Description (facultative)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Chemin d'accès" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Notes Markdown (option)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Données du code-barres" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Données de code-barres tierces" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Hash du code-barre" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Hachage unique des données du code-barres" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Code-barres existant trouvé" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Erreur serveur" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Une erreur a été loguée par le serveur." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Doit être un nombre valide" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Devise" msgid "Select currency from available options" msgstr "Sélectionnez la devise à partir des options disponibles" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "Nom d'utilisateur" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "Prénom" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "Nom" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Actif" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Vous n'avez pas la permission de modifier ce rôle utilisateur." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Seuls les super-utilisateurs peuvent créer de nouveaux utilisateurs" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Votre compte a été créé." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Veuillez utiliser la fonction de réinitialisation du mot de passe pour vous connecter" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Bienvenue dans InvenTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Valeur non valide" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Fichier de données" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Sélectionnez le fichier de données à envoyer" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Format de fichier non supporté" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Fichier trop volumineux" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Pas de colonnes trouvées dans le fichier" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Par de lignes de données trouvées dans le fichier" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Pas de lignes de données fournies" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Pas de colonne de données fournie" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Colonne requise manquante : {name}" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Colonne duliquée : '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Images distantes" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URL du fichier image distant" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 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/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Échec de la vérification du processus d'arrière-plan" @@ -654,47 +711,48 @@ msgstr "Informations système" msgid "About InvenTree" msgstr "À propos d'InvenTree" -#: build/api.py:255 +#: build/api.py:248 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:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Consommable" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Facultatif" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Suivi" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Allouée" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Disponible" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Ordre de Fabrication" msgid "Build Orders" msgstr "Ordres de Fabrication" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Choix invalide pour la fabrication parente" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "Un utilisateur ou un groupe responsable doit être spécifié" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "La pièce de commande de construction ne peut pas être changée" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Référence de l' Ordre de Fabrication" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Référence de l' Ordre de Fabrication" msgid "Reference" msgstr "Référence" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Brève description de la fabrication (optionnel)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Fabrication parente" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "BuildOrder associé a cette fabrication" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "BuildOrder associé a cette fabrication" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "BuildOrder associé a cette fabrication" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "BuildOrder associé a cette fabrication" msgid "Part" msgstr "Pièce" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Sélectionnez la pièce à construire" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Bon de commande de référence" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Commande de vente à laquelle cette construction est allouée" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Emplacement d'origine" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Emplacement cible" -#: build/models.py:272 +#: build/models.py:294 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:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Quantité a fabriquer" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Nombre de stock items à construire" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Articles terminés" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Nombre d'articles de stock qui ont été terminés" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "État de la construction" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Code de statut de construction" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Code de lot" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Code de lot pour ce build output" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Date de création" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Date d'achèvement cible" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Date d'achèvement" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "achevé par" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Émis par" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Utilisateur ayant émis cette commande de construction" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Utilisateur ayant émis cette commande de construction" msgid "Responsible" msgstr "Responsable" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "Utilisateur ou groupe responsable de cet ordre de construction" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Lien Externe" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Lien vers une url externe" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Priorité de fabrication" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Priorité de cet ordre de fabrication" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Priorité de cet ordre de fabrication" msgid "Project Code" msgstr "Code du projet" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Code de projet pour cet ordre de construction" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 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:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "La commande de construction {build} a été effectuée" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "Une commande de construction a été effectuée" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Pas d'ordre de production défini" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "L'ordre de production a déjà été réalisé" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "L'ordre de production de correspond pas à l'ordre de commande" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "La quantité doit être supérieure à zéro" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 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:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, 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:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Création de l'objet" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Création de l'objet" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Création de l'objet" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Création de l'objet" msgid "Quantity" msgstr "Quantité" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Quantité requise pour la commande de construction" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "L'article de stock est suralloué" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "La quantité allouée doit être supérieure à zéro" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "La quantité doit être de 1 pour stock sérialisé" -#: build/models.py:1554 +#: build/models.py:1576 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:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "L'article de stock sélectionné ne correspond pas à la ligne BOM" msgid "Stock Item" msgstr "Article en stock" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Stock d'origine de l'article" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Quantité de stock à allouer à la construction" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Installer dans" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Stock de destination de l'article" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "Nom de l'article" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Sortie d'assemblage" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "L'ordre de production ne correspond pas à l'ordre parent" -#: build/serializers.py:172 +#: build/serializers.py:176 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:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Cet ordre de production a déjà été produit" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "Cet ordre de production n'est pas complètement attribué" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Entrer la quantité désiré pour la fabrication" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "Quantité entière requise pour les pièces à suivre" -#: build/serializers.py:278 +#: build/serializers.py:282 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:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Numéros de série" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Entrer les numéros de séries pour la fabrication" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Entrer les numéros de séries pour la fabrication" msgid "Location" msgstr "Emplacement" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Allouer automatiquement les numéros de série" -#: build/serializers.py:315 +#: build/serializers.py:319 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:330 +#: build/serializers.py:334 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/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 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:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "Une liste d'ordre de production doit être fourni" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "Emplacement du stock pour les sorties épuisées" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "Ignorer les allocations" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "Abandonner les allocations de stock pour les sorties abandonnées" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "Motif de l'élimination des produits de construction(s)" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "Emplacement des ordres de production achevés" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "Emplacement des ordres de production achevés" msgid "Status" msgstr "État" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Accepter l'allocation incomplète" -#: build/serializers.py:526 +#: build/serializers.py:530 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:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "Consommation du stock alloué" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "Retirer les sorties incomplètes" -#: build/serializers.py:619 +#: build/serializers.py:623 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:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Non permis" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Accepter comme consommé par cet ordre de construction" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "Désaffecter avant de terminer cette commande de fabrication" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Stock suralloué" -#: build/serializers.py:680 +#: build/serializers.py:684 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:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "Certains articles de stock ont été suralloués" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Accepter les non-alloués" -#: build/serializers.py:696 +#: build/serializers.py:700 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:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "Le stock requis n'a pas encore été totalement alloué" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Accepter les incomplèts" -#: build/serializers.py:712 +#: build/serializers.py:716 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:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "La quantité nécessaire n'a pas encore été complétée" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "L'ordre de production a des sorties incomplètes" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Chaîne d'assemblage" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Sortie d'assemblage" -#: build/serializers.py:787 +#: build/serializers.py:791 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:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "Élément de la ligne de construction" -#: build/serializers.py:837 +#: build/serializers.py:841 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:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "L'article doit être en stock" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Quantité disponible ({q}) dépassée" -#: build/serializers.py:906 +#: build/serializers.py:910 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:913 +#: build/serializers.py:917 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:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "Les articles d'allocation doivent être fournis" -#: build/serializers.py:1000 +#: build/serializers.py:1004 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:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Emplacements exclus" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "Exclure les articles de stock de cet emplacement sélectionné" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "Stock interchangeable" -#: build/serializers.py:1015 +#: build/serializers.py:1019 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:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Stock de substitution" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "Autoriser l'allocation de pièces de remplacement" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "Objets Optionnels" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "Affecter des éléments de nomenclature facultatifs à l'ordre de fabrication" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Traçable" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "Article du BOM" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "Stock alloué" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "En Commande" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "En Production" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "Stock disponible" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Fabrication" msgid "Cancelled" msgstr "Annulé" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "Le stock n'a pas été entièrement alloué à cet ordre de construction #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "Sorties de Construction terminées" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Stock d'origine" msgid "Stock can be taken from any available location." msgstr "Le stock peut être pris à partir de n'importe quel endroit disponible." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Destination" @@ -1827,31 +1956,31 @@ msgstr "Détails de la commande de construction" msgid "Incomplete Outputs" msgstr "Sorties incomplètes" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" -msgstr "" +msgstr "L'utilisateur n'a pas les permissions de supprimer cette pièce jointe" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "Code de devise invalide" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "Code de devise en double" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "Aucun code de devise valide fourni" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "Pas de plugin" @@ -1905,1591 +2034,1604 @@ msgstr "Date de la dernière mise à jour" msgid "Site URL is locked by configuration" msgstr "L'URL du site est verrouillée par configuration" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Code projet unique" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Description du projet" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "Utilisateur ou groupe responsable de ce projet" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "Clé du paramètre (doit être unique - insensible à la casse)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "Valeur du paramètre" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "La valeur choisie n'est pas une option valide" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "La valeur doit être une valeur booléenne" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "La valeur doit être un nombre entier" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "La chaîne de caractères constituant la clé doit être unique" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Pas de groupe" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Redémarrage nécessaire" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "Un paramètre a été modifié, ce qui nécessite un redémarrage du serveur" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "Migration en attente" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "Nombre de migrations de base de données en attente" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "Nom de l'instance du serveur" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "Chaîne de caractères descriptive pour l'instance serveur" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "Utiliser le nom de l'instance" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "Utiliser le nom de l’instance dans la barre de titre" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "Limiter l'affichage de `about`" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "Afficher la modale `about` uniquement aux super-utilisateurs" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Nom de la société" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Nom de société interne" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "URL de base" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "URL de base pour l'instance serveur" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Devise par défaut" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "Sélectionnez la devise de base pour les calculs de prix" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "Devises supportées" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "Liste des codes de devises supportés" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "Intervalle de mise à jour des devises" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "Fréquence de mise à jour des taux de change (définir à zéro pour désactiver)" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "jours" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "Plugin de mise à jour de devise" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "Plugin de mise à jour des devises à utiliser" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Télécharger depuis l'URL" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Autoriser le téléchargement d'images distantes et de fichiers à partir d'URLs externes" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "Limite du volume de téléchargement" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "Taille maximale autorisée pour le téléchargement de l'image distante" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "Agent utilisateur utilisé pour télécharger depuis l'URL" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "Permettre de remplacer l'agent utilisateur utilisé pour télécharger des images et des fichiers à partir d'URL externe (laisser vide pour la valeur par défaut)" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "Validation stricte d'URL" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "Spécification du schéma nécessaire lors de la validation des URL" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Confirmation requise" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Exiger une confirmation explicite de l’utilisateur pour certaines actions." -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "Profondeur de l'arborescence" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "Profondeur de l'arborescence par défaut. Les niveaux plus profonds peuvent être chargés au fur et à mesure qu'ils sont nécessaires." -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "Intervalle de vérification des mises à jour" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "À quelle fréquence vérifier les mises à jour (définir à zéro pour désactiver)" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Backup automatique" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Activer le backup automatique de la base de données et des fichiers médias" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Intervalle de sauvegarde automatique" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "Spécifiez le nombre de jours entre les sauvegardes automatique" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "Intervalle de suppression des tâches" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "Les résultats de la tâche en arrière-plan seront supprimés après le nombre de jours spécifié" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "Intervalle de suppression du journal d'erreur" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "Les logs d'erreur seront supprimés après le nombre de jours spécifié" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "Intervalle de suppression du journal de notification" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "Les notifications de l'utilisateur seront supprimées après le nombre de jours spécifié" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Support des code-barres" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "Activer le support du scanner de codes-barres dans l'interface web" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "Délai d'entrée du code-barres" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "Délai de traitement du code-barres" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "Prise en charge de la webcam code-barres" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "Autoriser la numérisation de codes-barres via la webcam dans le navigateur" -#: common/models.py:1395 +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 msgid "Part Revisions" msgstr "Modifications de la pièce" -#: common/models.py:1396 +#: common/models.py:1407 msgid "Enable revision field for Part" msgstr "Activer le champ de modification de la pièce" -#: common/models.py:1401 +#: common/models.py:1412 msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1402 +#: common/models.py:1413 msgid "Allow deletion of parts which are used in an assembly" msgstr "Permettre la suppression de pièces utilisées dans un assemblage" -#: common/models.py:1407 +#: common/models.py:1418 msgid "IPN Regex" msgstr "Regex IPN" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "Expression régulière pour la correspondance avec l'IPN de la Pièce" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Autoriser les IPN dupliqués" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "Permettre à plusieurs pièces de partager le même IPN" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "Autoriser l'édition de l'IPN" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "Permettre de modifier la valeur de l'IPN lors de l'édition d'une pièce" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "Copier les données de la pièce" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "Copier les données des paramètres par défaut lors de la duplication d'une pièce" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "Copier les données des paramètres de la pièce" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "Copier les données des paramètres par défaut lors de la duplication d'une pièce" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "Copier les données de test de la pièce" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "Copier les données de test par défaut lors de la duplication d'une pièce" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "Copier les templates de paramètres de catégorie" -#: common/models.py:1442 +#: common/models.py:1453 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/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Modèle" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "Les pièces sont des templates par défaut" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Assemblage" -#: common/models.py:1454 +#: common/models.py:1465 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/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Composant" -#: common/models.py:1460 +#: common/models.py:1471 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/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Achetable" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "Les pièces sont achetables par défaut" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Vendable" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Les pièces sont vendables par défaut" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Traçable" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "Les pièces sont traçables par défaut" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Virtuelle" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Les pièces sont virtuelles par défaut" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "Afficher l'import dans les vues" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "Afficher l'assistant d'importation pour certaine vues de produits" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Afficher les pièces connexes" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "Afficher les pièces connexes à une pièce" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "Stock initial" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "Permettre la création d'un stock initial lors de l'ajout d'une nouvelle pièce" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Données initiales du fournisseur" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "Permettre la création des données initiales du fournisseur lors de l'ajout d'une nouvelle pièce" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "Format d'affichage du nom de la pièce" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "Format pour afficher le nom de la pièce" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "Icône de catégorie par défaut" -#: common/models.py:1523 +#: common/models.py:1534 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/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "Renforcer les unités des paramètres" -#: common/models.py:1529 +#: common/models.py:1540 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/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "Nombre minimal de décimales" -#: common/models.py:1537 +#: common/models.py:1548 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/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "Utiliser le prix fournisseur" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Inclure les réductions de prix dans le calcul du prix global" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "Remplacer l'historique des achats" -#: common/models.py:1571 +#: common/models.py:1582 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/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "Utiliser les prix des articles en stock" -#: common/models.py:1579 +#: common/models.py:1590 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/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "Âge de tarification des articles de stock" -#: common/models.py:1587 +#: common/models.py:1598 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/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "Utiliser les prix variants" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "Inclure la tarification variante dans le calcul global des prix" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "Variantes actives uniquement" -#: common/models.py:1602 +#: common/models.py:1613 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/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "Intervalle de regénération des prix" -#: common/models.py:1610 +#: common/models.py:1621 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/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Prix internes" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "Activer les prix internes pour les pièces" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "Substitution du prix interne" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "Si disponible, les prix internes remplacent les calculs de la fourchette de prix" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Activer l'impression d'étiquettes" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "Activer l'impression d'étiquettes depuis l'interface Web" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "Étiquette image DPI" -#: common/models.py:1639 +#: common/models.py:1650 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/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Activer les rapports" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "Activer la génération de rapports" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Mode Débogage" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "Générer des rapports en mode debug (sortie HTML)" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "Journal des erreurs" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Taille de la page" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Taille de page par défaut pour les rapports PDF" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "Activer les rapports de test" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "Activer la génération de rapports de test" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "Joindre des rapports de test" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Lors de l'impression d'un rapport de test, joignez une copie du rapport de test à l'article en stock associé" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "Numéro de Série Universellement Unique" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "Les numéros de série pour les articles en stock doivent être uniques au niveau global" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "Remplir automatiquement les Numéros de Série" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "Remplir automatiquement les numéros de série dans les formulaires" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "Supprimer le stock épuisé" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "Modèle de code de lot" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "Modèle pour générer des codes par défaut pour les articles en stock" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "Expiration du stock" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "Activer la fonctionnalité d'expiration du stock" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "Vendre le stock expiré" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "Autoriser la vente de stock expiré" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "Délai de péremption du stock" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "Nombre de jours pendant lesquels les articles en stock sont considérés comme périmés avant d'expirer" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "Construction de stock expirée" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "Autoriser la construction avec un stock expiré" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "Contrôle de la propriété des stocks" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "Activer le contrôle de la propriété sur les emplacements de stock et les articles" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "Icône par défaut de l'emplacement du stock" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "Icône par défaut de l'emplacement du stock (vide signifie aucune icône)" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "Afficher les pièces en stock installées" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "Modèle de référence de commande de construction" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "Modèle requis pour générer le champ de référence de l'ordre de construction" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "Activer les retours de commandes" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "Activer la fonctionnalité de retour de commande dans l'interface utilisateur" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "Modèle de référence de retour de commande" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "Modifier les retours de commandes terminées" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "Autoriser la modification des retours après leur enregistrement" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "Modèle de référence de bon de commande" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "Modèle requis pour générer le champ de référence du bon de commande" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "Expédition par défaut du bon de commande" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "Activer la création d'expédition par défaut avec les bons de commandes" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "Modifier les commandes de vente terminées" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "Autoriser la modification des commandes de vente après avoir été expédiées ou complétées" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "Modèle de référence de commande d'achat" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "Modèle requis pour générer le champ de référence de bon de commande" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "Modifier les bons de commande terminés" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "Autoriser la modification des bons de commande après avoir été expédiés ou complétés" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "Activer les mots de passe oubliés" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "Activer la fonction \"Mot de passe oublié\" sur les pages de connexion" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Activer les inscriptions" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "Activer l'auto-inscription pour les utilisateurs sur les pages de connexion" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "Activer le SSO" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "Activer le SSO sur les pages de connexion" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "Activer l'inscription SSO" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Activer l'auto-inscription via SSO pour les utilisateurs sur les pages de connexion" -#: common/models.py:1913 -msgid "Email required" -msgstr "Email requis" - -#: common/models.py:1914 -msgid "Require user to supply mail on signup" -msgstr "Exiger que l'utilisateur fournisse un mail lors de l'inscription" - -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "Saisie automatique des utilisateurs SSO" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "Remplir automatiquement les détails de l'utilisateur à partir des données de compte SSO" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "Courriel en double" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "Lors de l'inscription, demandez deux fois aux utilisateurs leur mail" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "Mot de passe deux fois" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "Lors de l'inscription, demandez deux fois aux utilisateurs leur mot de passe" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "Domaines autorisés" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1947 -msgid "Group on signup" -msgstr "Grouper sur inscription" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "Groupe auquel les nouveaux utilisateurs sont assignés lors de l'inscription" - -#: common/models.py:1953 -msgid "Enforce MFA" -msgstr "Forcer l'authentification multifacteurs" +#: common/models.py:1952 +msgid "SSO group key" +msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." -msgstr "Les utilisateurs doivent utiliser l'authentification multifacteurs." +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" -msgstr "Vérifier les plugins au démarrage" +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" -msgstr "Vérifier que tous les plugins sont installés au démarrage - activer dans les environnements conteneurs" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 +msgid "Email required" +msgstr "Email requis" + +#: common/models.py:1977 +msgid "Require user to supply mail on signup" +msgstr "Exiger que l'utilisateur fournisse un mail lors de l'inscription" + +#: common/models.py:1982 +msgid "Auto-fill SSO users" +msgstr "Saisie automatique des utilisateurs SSO" + +#: common/models.py:1984 +msgid "Automatically fill out user-details from SSO account-data" +msgstr "Remplir automatiquement les détails de l'utilisateur à partir des données de compte SSO" + +#: common/models.py:1990 +msgid "Mail twice" +msgstr "Courriel en double" + +#: common/models.py:1991 +msgid "On signup ask users twice for their mail" +msgstr "Lors de l'inscription, demandez deux fois aux utilisateurs leur mail" + +#: common/models.py:1996 +msgid "Password twice" +msgstr "Mot de passe deux fois" + +#: common/models.py:1997 +msgid "On signup ask users twice for their password" +msgstr "Lors de l'inscription, demandez deux fois aux utilisateurs leur mot de passe" + +#: common/models.py:2002 +msgid "Allowed domains" +msgstr "Domaines autorisés" + +#: common/models.py:2004 +msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgstr "" + +#: common/models.py:2010 +msgid "Group on signup" +msgstr "Grouper sur inscription" + +#: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" + +#: common/models.py:2018 +msgid "Enforce MFA" +msgstr "Forcer l'authentification multifacteurs" + +#: common/models.py:2019 +msgid "Users must use multifactor security." +msgstr "Les utilisateurs doivent utiliser l'authentification multifacteurs." + +#: common/models.py:2024 +msgid "Check plugins on startup" +msgstr "Vérifier les plugins au démarrage" + +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "Vérifier que tous les plugins sont installés au démarrage - activer dans les environnements conteneurs" + +#: common/models.py:2034 +msgid "Check for plugin updates" +msgstr "" + +#: common/models.py:2035 +msgid "Enable periodic checks for updates to installed plugins" +msgstr "" + +#: common/models.py:2041 msgid "Enable URL integration" msgstr "Activer l'intégration d'URL" -#: common/models.py:1977 +#: common/models.py:2042 msgid "Enable plugins to add URL routes" msgstr "Autoriser les plugins à ajouter des chemins URL" -#: common/models.py:1983 +#: common/models.py:2048 msgid "Enable navigation integration" msgstr "Activer l'intégration de navigation" -#: common/models.py:1984 +#: common/models.py:2049 msgid "Enable plugins to integrate into navigation" msgstr "Activer les plugins à s'intégrer dans la navigation" -#: common/models.py:1990 +#: common/models.py:2055 msgid "Enable app integration" msgstr "Activer l'intégration de plugins" -#: common/models.py:1991 +#: common/models.py:2056 msgid "Enable plugins to add apps" msgstr "Activer l'intégration de plugin pour ajouter des apps" -#: common/models.py:1997 +#: common/models.py:2062 msgid "Enable schedule integration" msgstr "Activer l'intégration du planning" -#: common/models.py:1998 +#: common/models.py:2063 msgid "Enable plugins to run scheduled tasks" msgstr "Autoriser les plugins à éxécuter des tâches planifiées" -#: common/models.py:2004 +#: common/models.py:2069 msgid "Enable event integration" msgstr "Activer l'intégration des évènements" -#: common/models.py:2005 +#: common/models.py:2070 msgid "Enable plugins to respond to internal events" msgstr "Autoriser les plugins à répondre aux évènements internes" -#: common/models.py:2011 +#: common/models.py:2076 msgid "Enable project codes" msgstr "Activer les codes projet" -#: common/models.py:2012 +#: common/models.py:2077 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:2017 +#: common/models.py:2082 msgid "Stocktake Functionality" msgstr "Fonctionnalité d'inventaire" -#: common/models.py:2019 +#: common/models.py:2084 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Activer la fonctionnalité d'inventaire pour enregistrer les niveaux de stock et le calcul de la valeur du stock" -#: common/models.py:2025 +#: common/models.py:2090 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2027 +#: common/models.py:2092 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2033 +#: common/models.py:2098 msgid "Automatic Stocktake Period" msgstr "Période de l'inventaire automatique" -#: common/models.py:2035 +#: common/models.py:2100 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Nombre de jours entre l'enregistrement automatique des stocks (définir à zéro pour désactiver)" -#: common/models.py:2041 +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Les rapports d'inventaire seront supprimés après le nombre de jours spécifié" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "Clé du paramètre (doit être unique - insensible à la casse)" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "Afficher les composants suivis" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "Afficher les composants suivis sur l'écran d'accueil" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "Afficher les catégories suivies" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "Afficher les catégories de pièces suivies sur la page d'accueil" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "Afficher les dernières pièces" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "Afficher les derniers composants sur la page d'accueil" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "Afficher les listes de matériaux en attente de validation sur la page d'accueil" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "Afficher les dernières modifications du stock" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "Afficher les articles de stock récemment modifiés sur la page d'accueil" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "Afficher le stock faible" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "Afficher les articles en stock bas sur la page d'accueil" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "Afficher le stock épuisé" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "Afficher les stocks épuisés sur la page d'accueil" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "Afficher le stock nécessaire" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "Afficher les pièces en stock nécessaires pour les assemblages sur la page d'accueil" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "Afficher le stock expiré" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "Afficher les pièces en stock expirées sur la page d'accueil" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "Afficher le stock périmé" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "Afficher les articles de stock périmés sur la page d'accueil" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "Afficher les constructions en attente" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "Afficher les constructions en attente sur la page d'accueil" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "Afficher les constructions en retard" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "Afficher les constructions en retard sur la page d'accueil" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "Afficher les commandes en suspens" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "Afficher les commandes en suspens sur la page d'accueil" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "Afficher les commandes en retard" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "Afficher les commandes en retard sur la page d'accueil" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "Afficher les envois en suspens" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "Afficher les envois en suspens sur la page d'accueil" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "Afficher les envois en retard" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "Afficher les envois en retard sur la page d'accueil" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "Afficher les nouvelles" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "Afficher les nouvelles sur la page d'accueil" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "Affichage du libellé en ligne" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Afficher les étiquettes PDF dans le navigateur, au lieu de les télécharger en tant que fichier" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "Imprimante d'étiquettes par défaut" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "Configurer quelle imprimante d'étiquette doit être sélectionnée par défaut" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "Affichage du rapport en ligne" -#: common/models.py:2246 +#: common/models.py:2311 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/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "Rechercher de pièces" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "Afficher les pièces dans la fenêtre d'aperçu de la recherche" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "Recherche du fournisseur de pièces" -#: common/models.py:2259 +#: common/models.py:2324 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/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "Rechercher les pièces du fabricant" -#: common/models.py:2265 +#: common/models.py:2330 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/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "Masquer les pièces inactives" -#: common/models.py:2271 +#: common/models.py:2336 msgid "Excluded inactive parts from search preview window" msgstr "Exclure les pièces inactives de la fenêtre de prévisualisation de recherche" -#: common/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "Rechercher des catégories" -#: common/models.py:2277 +#: common/models.py:2342 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/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "Rechercher dans le stock" -#: common/models.py:2283 +#: common/models.py:2348 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/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "Cacher les pièces indisponibles" -#: common/models.py:2290 +#: common/models.py:2355 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/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "Chercher des Emplacements" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "Afficher les emplacements dans la fenêtre d'aperçu de la recherche" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "Rechercher les entreprises" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "Afficher les entreprises dans la fenêtre de prévisualisation de recherche" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "Rechercher les commandes de construction" -#: common/models.py:2309 +#: common/models.py:2374 msgid "Display build orders in search preview window" msgstr "Afficher les commandes de construction dans la fenêtre de prévisualisation de recherche" -#: common/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "Rechercher des bons de commande" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "Afficher les bons de commande dans la fenêtre de prévisualisation de recherche" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "Exclure les bons de commande inactifs" -#: common/models.py:2322 +#: common/models.py:2387 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/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "Rechercher les bons de commande" -#: common/models.py:2329 +#: common/models.py:2394 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/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "Exclure les bons de commande inactives" -#: common/models.py:2336 +#: common/models.py:2401 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/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "Rechercher les commandes retournées" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2350 +#: common/models.py:2415 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "Résultats de l'aperçu de la recherche" -#: common/models.py:2358 +#: common/models.py:2423 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/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "Recherche Regex" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "Afficher la quantité dans les formulaires" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "Afficher la quantité disponible dans certains formulaires" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "La touche Echap ferme les formulaires" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "Utilisez la touche Echap pour fermer les formulaires modaux" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "Barre de navigation fixe" -#: common/models.py:2389 +#: common/models.py:2454 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/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "Format de date" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "Format préféré pour l'affichage des dates" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Planification des pièces" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "Afficher les informations de planification des pièces" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventaire des pièces" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "Longueur de la chaîne dans les Tableau" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "Longueur maximale des chaînes affichées dans les tableaux" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Utilisateur" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Prix" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Actif" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "Ce webhook (lien de rappel HTTP) est-il actif" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "Jeton" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "Jeton d'accès" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "Confidentiel" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "ID message" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "Identifiant unique pour ce message" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "Hôte" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "Hôte à partir duquel ce message a été reçu" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "Entête" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "En-tête de ce message" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "Corps" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "Corps de ce message" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "Endpoint à partir duquel ce message a été reçu" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "Le travail sur ce message est-il terminé ?" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "Id" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Titre" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "Titre" msgid "Link" msgstr "Lien" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "Publié" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Auteur" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "Résumé" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "Lu" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "Cette nouvelle a-t-elle été lue ?" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "Cette nouvelle a-t-elle été lue ?" msgid "Image" msgstr "Image" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "Fichier image" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Symbole" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "Symbole d'unité facultatif" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Définition" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "Définition de l'unité" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Pièce jointe" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Fichier manquant" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Lien externe manquant" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Sélectionnez un fichier à joindre" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Commentaire" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,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:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "Articles reçus" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "Erreur déclenchée par le plugin" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "En cours d'exécution" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "Tâches en attente" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "Tâches planifiées" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "Tâches échouées" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "ID de la tâche" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "ID unique de la tâche" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "Verrouillé" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "Heure verrouillé" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "Nom de la tâche" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "Fonction" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "Nom de la fonction" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "Arguments" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "Arguments tâche" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "Mots-clés Arguments" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "Mots-clés arguments tâche" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Nom du fichier" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "Pièces importées" msgid "Previous Step" msgstr "Étape précédente" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "La pièce est active" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Le fabricant est actif" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "Le fournisseur de la pièce est active" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "La pièce interne est active" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "Le fournisseur est actif" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Société" @@ -3843,8 +3993,9 @@ msgstr "Numéro de téléphone de contact" msgid "Contact email address" msgstr "Adresse e-mail de contact" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "Cette entreprise est-elle active ?" #: company/models.py:168 -msgid "is customer" -msgstr "est client" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "Vendez-vous des objets à cette entreprise?" #: company/models.py:174 -msgid "is supplier" -msgstr "est fournisseur" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "Est-ce que vous achetez des articles à cette entreprise?" #: company/models.py:180 -msgid "is manufacturer" -msgstr "est fabricant" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "Cette entreprise fabrique-t-elle des pièces?" msgid "Default currency used for this company" msgstr "Devise par défaut utilisée pour cette entreprise" -#: company/models.py:366 +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Adresse" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Adresses" + +#: company/models.py:372 msgid "Select company" msgstr "Sélectionner une entreprise" -#: company/models.py:371 +#: company/models.py:377 msgid "Address title" msgstr "Intitulé de l'adresse" -#: company/models.py:372 +#: company/models.py:378 msgid "Title describing the address entry" msgstr "Titre décrivant la saisie de l'adresse" -#: company/models.py:378 +#: company/models.py:384 msgid "Primary address" msgstr "Adresse principale" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "Sélectionner comme adresse principale" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "Ligne 1" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "Adresse" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "Ligne 2" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "Seconde ligne d'adresse" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "Code postal" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "Ville / Région" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "Code postal Ville / Région" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "État / Province" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "État ou province" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "Pays" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "Pays" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "Notes du livreur" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "Instructions pour le livreur" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "Notes pour la livraison interne" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "Notes internes pour la livraison" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "Lien vers les informations de l'adresse (externe)" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "Pièces du fabricant" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Fabricant" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Sélectionner un fabricant" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Nom du paramètre" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Valeur" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Valeur du paramètre" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "Unités" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "Unités du paramètre" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "Pièce fournisseur" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 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:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Fournisseur" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Sélectionner un fournisseur" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "Unité de gestion des stocks des fournisseurs" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "Sélectionner un fabricant" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "Lien de la pièce du fournisseur externe" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "Description de la pièce du fournisseur" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "coût de base" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "Frais minimums (par exemple frais de stock)" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "Conditionnement" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "Conditionnement de l'article" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "Conditionnement de l'article" msgid "Pack Quantity" msgstr "Nombre de paquet" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "plusieurs" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "Commande multiple" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "Quantité disponible auprès du fournisseur" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "Disponibilité mise à jour" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "Date de dernière mise à jour des données de disponibilité" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "Devise par défaut utilisée pour ce fournisseur" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "En Stock" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "Supprimer image" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Client" @@ -4278,13 +4448,6 @@ msgstr "Client" msgid "Uses default currency" msgstr "Utiliser la devise par défaut" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Adresse" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Téléphone" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "Supprimer la pièce de fabricant" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "Pièces Internes" @@ -4474,7 +4638,7 @@ msgstr "Aucune information sur le fabricant disponible" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "Nouveau paramètre" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "Articles en stock assignés" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "Adresses" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "Supprimer la pièce du fournisseur" msgid "No supplier information available" msgstr "Aucune information de fournisseur disponible" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Nouvelle Entreprise" msgid "Placed" msgstr "Placé" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "Données" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "Erreurs" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "Valide" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "Inconnu" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "Impression" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "Aucun média" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "Déconnecté" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "Imprimante Etiquette" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "Impression directe des étiquettes pour divers articles." -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "Emplacement Imprimante" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "Porter de l'imprimante sur un emplacement spécifique" @@ -4739,10 +5055,6 @@ msgstr "Aucune erreur" msgid "Initialized" msgstr "Initialisé" -#: machine/models.py:110 -msgid "Errors" -msgstr "Erreurs" - #: machine/models.py:117 msgid "Machine status" msgstr "Statut de la machine" @@ -4768,44 +5080,44 @@ msgstr "Type de configuration" msgid "Total Price" msgstr "Prix Total" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "Statut de la commande" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "Possède un Tarif" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "Aucun bon de commande correspondant n'a été trouvé" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "Commande" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "Commande Complétée" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "Commande En Attente" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "Commande En Attente" msgid "Purchase Order" msgstr "Commande d’achat" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "Retour de commande" msgid "Total price for this order" msgstr "Prix total pour cette commande" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "Devise de la commande" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "Description de la commande (facultatif)" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "Lien vers une page externe" @@ -4895,15 +5207,15 @@ msgstr "Code de référence de la commande fournisseur" msgid "received by" msgstr "reçu par" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "Date d'émission" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "Date d'émission de la commande" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "Date à laquelle la commande a été complété" @@ -4919,15 +5231,15 @@ msgstr "La quantité doit être un nombre positif" msgid "Company to which the items are being sold" msgstr "Société à laquelle les articles sont vendus" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "Référence client " -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "Prix unitaire" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "supprimé" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "Pièce fournisseur" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "Pièce fournisseur" msgid "Received" msgstr "Reçu" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "Nombre d'éléments reçus" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "Prix d'achat" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "Prix d'achat unitaire" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "Où l'Acheteur veut-il stocker cet article ?" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "La pièce virtuelle ne peut pas être affectée à une commande" -#: order/models.py:1543 +#: order/models.py:1558 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:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "Prix de vente" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "Prix de vente unitaire" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Expédié" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "Quantité expédiée" -#: order/models.py:1672 +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "Date d'expédition" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "Date de Livraison" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "Vérifié par" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "Utilisateur qui a vérifié cet envoi" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "Envoi" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "Numéro d'expédition" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "N° de suivi" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "Information de suivi des colis" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "N° de facture" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "Numéro de référence de la facture associée" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "Le colis a déjà été envoyé" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "L'expédition n'a pas d'articles en stock alloués" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "L'article de stock n'a pas été assigné" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "Impossible d'allouer le stock à une ligne sans pièce" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "La quantité d'allocation ne peut pas excéder la quantité en stock" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "Ligne" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "Article" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "Statut du retour de commande" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "La commande ne peut pas être annulée" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "La commande n'est pas ouverte" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "Devise du prix d'achat" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 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:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Code-barres" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "Le code-barres est déjà utilisé" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "Une quantité entière doit être fournie pour les pièces tracables" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "Devise du prix de vente" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "Entrez les numéros de série à allouer" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 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:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "Les numéros de série suivants sont déjà alloués" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "Référence client" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "ID de composant" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "Nom de l'article" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "Description pièce" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "Révision" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Mots-clés" @@ -5831,7 +6178,8 @@ msgstr "Image pièce" msgid "Category ID" msgstr "ID catégorie" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "Nom catégorie" @@ -5843,11 +6191,11 @@ msgstr "ID Emplacement par défaut" msgid "Default Supplier ID" msgstr "ID Fournisseur par défaut" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "Variante de" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "Stock Minimum" @@ -5855,18 +6203,19 @@ msgstr "Stock Minimum" msgid "Used In" msgstr "Utilisé pour" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "Construction" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "Coût minimal" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "Coût maximal" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "Chemin catégorie" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Pièces" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "Prix Minimum" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "Prix Maximum" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "Profondeur" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "Valide" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "Catégorie" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "Utilise" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "Emplacement par défaut" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "Stock total" @@ -6034,7 +6375,7 @@ msgstr "Stock total" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Catégorie de composant" @@ -6049,7 +6390,7 @@ msgstr "Catégories de composants" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "Mots-clés par défaut" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "IPN dupliqué non autorisé dans les paramètres de la pièce" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Nom de l'article" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "Catégorie de la pièce" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "Est-ce que cette pièce est active ?" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "Création Utilisateur" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "Propriétaire responsable de cette pièce" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "Ventes multiples" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "Coût minimum de vente" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "Notes additionnelles" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "Nom de test" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Activé" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "Requis" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "Valeur requise" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "Données" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Valeur par Défaut" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Surplus" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "Validée" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "Devise d'achat de l'item" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "Copier l'image" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "Copier les paramètres" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "S'abonner aux notifications de cette pièce" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "Impression étiquette" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "Résultat" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "Propriétaire" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "Sélectionner un propriétaire" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "La quantité doit être de 1 pour un article avec un numéro de série" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "Le numéro de série ne peut pas être défini si la quantité est supérieure à 1" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "Numéro de série pour cet article" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "Les numéros de série doivent être une liste de nombres entiers" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "La quantité ne correspond pas au nombre de numéros de série" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "Les numéros de série existent déjà" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "Entrez le nombre d'articles en stock à sérialiser" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "Entrez les numéros de série pour les nouveaux articles" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "Les numéros de série ne peuvent pas être assignés à cette pièce" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "Assemblage" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "Autorisation refusée" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Supprimer" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "Paramètres du Compte" msgid "Change Password" msgstr "Changer le mot de passe" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "Nom d'utilisateur" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "Prénom" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "Nom" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "Les adresses de messagerie suivantes sont associées à votre compte :" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "Quantité requise" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "Ajouter" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "Droit défini" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Groupe" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Vue" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Droit de voir des éléments" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Droit d'ajouter des éléments" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Modifier" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Droit de modifier des élément" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Droit de supprimer des éléments" diff --git a/src/backend/InvenTree/locale/he/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/he/LC_MESSAGES/django.po index 7510094408..f55b11cd60 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -56,21 +56,21 @@ msgstr "" msgid "Enter date" msgstr "הזן תאריך סיום" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "בחירה שגויה" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "בחירה שגויה" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "שם" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "שם" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "שם" msgid "Description" msgstr "תיאור" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "תיאור (לא חובה)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "המספר חייב להיות תקין" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "מידע אודות המערכת" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "מקט" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "מקור הבנייה" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "רכיב" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "בחר רכיב לבנייה" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "כמות בניה" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "קישור חיצוני" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "כמות" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "מספרים סידוריים" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "ייצור" msgid "Cancelled" msgstr "מבוטל" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "משתמש" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "קישור" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "קובץ מצורף" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "קובץ חסר" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "חסר קישור חיצוני" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "בחר קובץ לצירוף" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "הערה" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "שם קובץ" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "מוקם" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "נשלח" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/hi/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/hi/LC_MESSAGES/django.po index 1332f77c5e..af7d697e51 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:05\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:57\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Language: hi_IN\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -56,21 +56,21 @@ msgstr "" msgid "Enter date" msgstr "तारीख दर्ज करें" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/hu/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/hu/LC_MESSAGES/django.po index f00e292a10..9ac7255c8c 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API funkciót nem találom" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Nincs jogosultságod az adatok megtekintéséhez" @@ -56,21 +56,21 @@ msgstr "A hiba részleteit megtalálod az admin panelen" msgid "Enter date" msgstr "Dátum megadása" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Regisztráció le van tiltva." @@ -297,7 +297,7 @@ msgstr "Portugál (Brazíliai)" #: InvenTree/locales.py:41 msgid "Romanian" -msgstr "" +msgstr "Román" #: InvenTree/locales.py:42 msgid "Russian" @@ -348,8 +348,8 @@ msgstr "Kínai (Hagyományos)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Bejelentkezés" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Plugin meta adatok" msgid "JSON metadata field, for use by external plugins" msgstr "JSON meta adat mező, külső pluginok számára" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Helytelenül formázott minta" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Ismeretlen formátum kulcs lett megadva" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Hiányzó formátum kulcs" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Az azonosító mező nem lehet üres" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Az azonosítónak egyeznie kell a mintával" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Azonosító szám túl nagy" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Duplikált nevek nem lehetnek ugyanazon szülő alatt" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Érvénytelen választás" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Érvénytelen választás" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Név" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Név" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Név" msgid "Description" msgstr "Leírás" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Leírás (opcionális)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Elérési út" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Markdown megjegyzések (opcionális)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Vonalkód adat" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Harmadik féltől származó vonalkód adat" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Vonalkód hash" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Egyedi vonalkód hash" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Létező vonalkód" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Kiszolgálóhiba" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "A kiszolgáló egy hibaüzenetet rögzített." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Érvényes számnak kell lennie" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Pénznem" msgid "Select currency from available options" msgstr "Válassz pénznemet a lehetőségek közül" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "Felhasználónév" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "Keresztnév" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "A felhasználó keresztneve" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "Vezetéknév" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "A felhasználó vezetékneve" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "A felhasználó e-mail címe" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "Személyzet" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "Rendszergazda" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Aktív" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Önnek nincs joga változtatni ezen a felhasználói szerepkörön." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Csak a superuser-ek hozhatnak létre felhasználókat" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "A fiókod sikeresen létrejött." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Kérlek használd a jelszó visszállítás funkciót a belépéshez" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Üdvözlet az InvenTree-ben" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Érvénytelen érték" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Adat fájl" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Fájl kiválasztása feltöltéshez" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Nem támogatott fájltípus" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Fájl túl nagy" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Nem találhatók oszlopok a fájlban" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Nincsenek adatsorok a fájlban" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Nincs adatsor megadva" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Nincs adat oszlop megadva" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Szükséges oszlop hiányzik: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplikált oszlop: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Távoli kép" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "A távoli kép URL-je" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Képek letöltése távoli URL-ről nem engedélyezett" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Háttér folyamat ellenőrzés sikertelen" @@ -654,47 +711,48 @@ msgstr "Rendszerinformáció" msgid "About InvenTree" msgstr "Verzió információk" -#: build/api.py:255 +#: build/api.py:248 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:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Fogyóeszköz" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Opcionális" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Követett" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Lefoglalva" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Elérhető" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Gyártási utasítás" msgid "Build Orders" msgstr "Gyártási utasítások" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Hibás választás a szülő gyártásra" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "Meg kell adni felelős felhasználót vagy csoportot" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "Gyártási rendelés alkatrész nem változtatható" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Gyártási utasítás azonosító" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Gyártási utasítás azonosító" msgid "Reference" msgstr "Azonosító" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Gyártás rövid leírása (opcionális)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Szülő gyártás" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Gyártás, amihez ez a gyártás hozzá van rendelve" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Gyártás, amihez ez a gyártás hozzá van rendelve" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Gyártás, amihez ez a gyártás hozzá van rendelve" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Gyártás, amihez ez a gyártás hozzá van rendelve" msgid "Part" msgstr "Alkatrész" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Válassz alkatrészt a gyártáshoz" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Vevői rendelés azonosító" -#: build/models.py:254 +#: build/models.py:276 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:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Forrás hely" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Cél hely" -#: build/models.py:272 +#: build/models.py:294 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:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Gyártási mennyiség" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Gyártandó készlet tételek száma" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Kész tételek" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Elkészült készlet tételek száma" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Gyártási állapot" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Gyártás státusz kód" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Batch kód" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Batch kód a gyártás kimenetéhez" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Létrehozás dátuma" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Befejezés cél dátuma" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Befejezés dátuma" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "elkészítette" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Indította" -#: build/models.py:332 +#: build/models.py:354 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:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Felhasználó aki ezt a gyártási utasítást kiállította" msgid "Responsible" msgstr "Felelős" -#: build/models.py:341 +#: build/models.py:363 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:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Külső link" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Link külső URL-re" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Priorítás" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Gyártási utasítás priorítása" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Gyártási utasítás priorítása" msgid "Project Code" msgstr "Projektszám" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Projekt kód a gyártáshoz" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 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:617 +#: build/models.py:639 #, 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:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "Gyártási utasítás elkészült" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Nincs gyártási kimenet megadva" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Gyártási kimenet már kész" -#: build/models.py:855 +#: build/models.py:877 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:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "Mennyiségnek nullánál többnek kell lennie" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 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:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, 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:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Gyártás objektum" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Gyártás objektum" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Gyártás objektum" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Gyártás objektum" msgid "Quantity" msgstr "Mennyiség" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Gyártáshoz szükséges mennyiség" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Készlet túlfoglalva" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Lefoglalt mennyiségnek nullánál többnek kell lennie" -#: build/models.py:1495 +#: build/models.py:1517 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:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "A készlet tétel nem egyezik az alkatrészjegyzékkel" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "A készlet tétel nem egyezik az alkatrészjegyzékkel" msgid "Stock Item" msgstr "Készlet tétel" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Forrás készlet tétel" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Készlet mennyiség amit foglaljunk a gyártáshoz" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Beépítés ebbe" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Cél készlet tétel" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "Alkatrész neve" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Gyártás kimenet" -#: build/serializers.py:168 +#: build/serializers.py:172 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:172 +#: build/serializers.py:176 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:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Ez a gyártási kimenet már elkészült" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "Ez a gyártási kimenet nincs teljesen lefoglalva" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Add meg a mennyiséget a gyártás kimenetéhez" -#: build/serializers.py:275 +#: build/serializers.py:279 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:278 +#: build/serializers.py:282 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:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Sorozatszámok" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Add meg a sorozatszámokat a gyártás kimenetéhez" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Add meg a sorozatszámokat a gyártás kimenetéhez" msgid "Location" msgstr "Hely" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "Legyártott készlet helye" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Sorozatszámok automatikus hozzárendelése" -#: build/serializers.py:315 +#: build/serializers.py:319 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:330 +#: build/serializers.py:334 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/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 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:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "A gyártási kimenetek listáját meg kell adni" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "Selejtezet gyártási kimenetek helye" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "Foglalások törlése" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "Selejtezett kimenetek foglalásainak felszabadítása" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "Selejtezés oka" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "A kész gyártási kimenetek helye" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,194 +1331,242 @@ msgstr "A kész gyártási kimenetek helye" msgid "Status" msgstr "Állapot" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Hiányos foglalás elfogadása" -#: build/serializers.py:526 +#: build/serializers.py:530 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:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "Lefoglalt készlet felhasználása" -#: build/serializers.py:612 +#: build/serializers.py:616 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:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "Befejezetlen kimenetek törlése" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "A nem befejezett gyártási kimenetek törlése" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Nem engedélyezett" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Gyártásban fel lett használva" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "Foglalás felszabadítása a készre jelentés előtt" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Túlfoglalt készlet" -#: build/serializers.py:680 +#: build/serializers.py:684 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:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "Pár készlet tétel túl lett foglalva" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Kiosztatlanok elfogadása" -#: build/serializers.py:696 +#: build/serializers.py:700 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:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "A szükséges készlet nem lett teljesen lefoglalva" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Befejezetlenek elfogadása" -#: build/serializers.py:712 +#: build/serializers.py:716 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:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "Szükséges gyártási mennyiség nem lett elérve" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "A gyártási utasítás befejezetlen kimeneteket tartalmaz" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Gyártás sor" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Gyártás kimenet" -#: build/serializers.py:787 +#: build/serializers.py:791 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:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "Gyártás sor tétel" -#: build/serializers.py:837 +#: build/serializers.py:841 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:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "A tételnek kell legyen készlete" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Rendelkezésre álló mennyiség ({q}) túllépve" -#: build/serializers.py:906 +#: build/serializers.py:910 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:913 +#: build/serializers.py:917 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:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "A lefoglalandó tételeket meg kell adni" -#: build/serializers.py:1000 +#: build/serializers.py:1004 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:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Hely kizárása" -#: build/serializers.py:1009 +#: build/serializers.py:1013 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:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "Felcserélhető készlet" -#: build/serializers.py:1015 +#: build/serializers.py:1019 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:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Készlet helyettesítés" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "Helyettesítő alkatrészek foglalásának engedélyezése" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "Opcionális tételek" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "Opcionális tételek lefoglalása a gyártáshoz" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "Nem sikerült az automatikus lefoglalás feladatot elindítani" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Gyártói cikkszám" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "Hely neve" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "Alkatrész IPN" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Követésre kötelezett" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "Alkatrészjegyzék tétel" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "Lefoglalt készlet" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "Rendelve" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "Gyártásban" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "Elérhető készlet" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "Külső raktárkészlet" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1455,7 +1582,8 @@ msgstr "Folyamatban" msgid "Cancelled" msgstr "Törölve" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1588,11 +1716,12 @@ msgstr "Még nincs lefoglalva a szükséges készlet" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1625,8 +1754,8 @@ msgid "Completed Outputs" msgstr "Befejezett kimenetek" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1676,7 +1805,7 @@ msgstr "Készlet forrás" msgid "Stock can be taken from any available location." msgstr "Készlet bármely rendelkezésre álló helyről felhasználható." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Cél" @@ -1828,31 +1957,31 @@ msgstr "Gyártási utasítás részletei" msgid "Incomplete Outputs" msgstr "Befejezetlen kimenetek" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "Nincsen plugin" @@ -1906,1591 +2035,1604 @@ msgstr "Legutóbbi frissítés időpontja" msgid "Site URL is locked by configuration" msgstr "A site URL blokkolva van a konfigurációban" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Egyedi projektszám" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Projekt leírása" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "A projektért felelős felhasználó vagy csoport" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "Beállítások kulcs (egyedinek kell lennie, nem kis- nagybetű érzékeny)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "Beállítás értéke" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "A kiválasztott érték nem egy érvényes lehetőség" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "Az érték bináris kell legyen" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "Az érték egész szám kell legyen" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "Kulcs string egyedi kell legyen" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Nincs csoport" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Újraindítás szükséges" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "Egy olyan beállítás megváltozott ami a kiszolgáló újraindítását igényli" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "Függőben levő migrációk" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "Függőben levő adatbázis migrációk" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "Kiszolgáló példány neve" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "String leíró a kiszolgáló példányhoz" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "Példány név használata" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "Példány név használata a címsorban" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "Verzió infók megjelenítésének tiltása" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "Verzió infók megjelenítése csak admin felhasználóknak" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Cég neve" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Belső cégnév" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "Kiindulási URL" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "Kiindulási URL a kiszolgáló példányhoz" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Alapértelmezett pénznem" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "Válassz alap pénznemet az ár számításokhoz" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "Árfolyam frissítési gyakoriság" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "Milyen gyakran frissítse az árfolyamokat (nulla a kikapcsoláshoz)" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "nap" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "Árfolyam frissítő plugin" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "Kiválasztott árfolyam frissítő plugin" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Letöltés URL-ről" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Képek és fájlok letöltésének engedélyezése külső URL-ről" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "Letöltési méret korlát" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "Maximum megengedett letöltési mérete a távoli képeknek" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "Felhasznált User-agent az URL-ről letöltéshez" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "A külső URL-ről letöltéshez használt user-agent felülbírálásának engedélyezése (hagyd üresen az alapértelmezéshez)" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "Erős URL validáció" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "Sablon specifikáció igénylése az URL validálásnál" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Megerősítés igénylése" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Kérjen felhasználói megerősítést bizonyos műveletekhez" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "Fa mélység" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "Alapértelmezett mélység a fa nézetekben. A mélyebb szintek betöltődnek ha szükségesek." -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "Frissítés keresés gyakorisága" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "Milyen gyakran ellenőrizze van-e új frissítés (0=soha)" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Automatikus biztonsági mentés" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Adatbázis és média fájlok automatikus biztonsági mentése" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Automata biztonsági mentés gyakorisága" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "Hány naponta készüljön automatikus biztonsági mentés" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "Feladat törlési gyakoriság" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "Háttérfolyamat eredmények törlése megadott nap eltelte után" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "Hibanapló törlési gyakoriság" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "Hibanapló bejegyzések törlése megadott nap eltelte után" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "Értesítés törlési gyakoriság" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "Felhasználói értesítések törlése megadott nap eltelte után" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Vonalkód támogatás" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "Vonalkód olvasó támogatás engedélyezése a web felületen" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "Vonalkód beadási késleltetés" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "Vonalkód beadáskor a feldolgozás késleltetési ideje" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "Webkamerás vonalkód olvasás" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "Webkamerás kódolvasás engedélyezése a böngészőből" -#: common/models.py:1395 +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 msgid "Part Revisions" msgstr "Alkatrész változatok" -#: common/models.py:1396 +#: common/models.py:1407 msgid "Enable revision field for Part" msgstr "Alkatrész változat vagy verziószám tulajdonság használata" -#: common/models.py:1401 +#: common/models.py:1412 msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1402 +#: common/models.py:1413 msgid "Allow deletion of parts which are used in an assembly" msgstr "" -#: common/models.py:1407 +#: common/models.py:1418 msgid "IPN Regex" msgstr "IPN reguláris kifejezés" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "Reguláris kifejezés ami illeszkedik az alkatrész IPN-re" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Többször is előforduló IPN engedélyezése" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "Azonos IPN használható legyen több alkatrészre is" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "IPN szerkesztésének engedélyezése" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "IPN megváltoztatásánsak engedélyezése az alkatrész szerkesztése közben" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "Alkatrészjegyzék adatok másolása" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "Alkatrész másoláskor az alkatrészjegyzék adatokat is másoljuk alapból" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "Alkatrész paraméterek másolása" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "Alkatrész másoláskor a paramétereket is másoljuk alapból" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "Alkatrész teszt adatok másolása" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "Alkatrész másoláskor a tesztek adatait is másoljuk alapból" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "Kategória paraméter sablonok másolása" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "Kategória paraméter sablonok másolása alkatrész létrehozásakor" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Sablon" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "Alkatrészek alapból sablon alkatrészek legyenek" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Gyártmány" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "Alkatrészeket alapból lehessen gyártani másik alkatrészekből" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Összetevő" -#: common/models.py:1460 +#: common/models.py:1471 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/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Beszerezhető" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "Alkatrészek alapból beszerezhetők legyenek" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Értékesíthető" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Alkatrészek alapból eladhatók legyenek" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Követésre kötelezett" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "Alkatrészek alapból követésre kötelezettek legyenek" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Virtuális" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Alkatrészek alapból virtuálisak legyenek" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "Importálás megjelenítése a nézetekben" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "Import segéd megjelenítése néhány alkatrész nézetben" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Kapcsolódó alkatrészek megjelenítése" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "Alkatrész kapcsolódó alkatrészeinek megjelenítése" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "Kezdeti készlet adatok" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "Kezdeti készlet létrehozása új alkatrész felvételekor" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Kezdeti beszállítói adatok" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "Kezdeti beszállítói adatok létrehozása új alkatrész felvételekor" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "Alkatrész név megjelenítés formátuma" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "Formátum az alkatrész név megjelenítéséhez" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "Alkatrész kategória alapértelmezett ikon" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "Alkatrész kategória alapértelmezett ikon (üres ha nincs)" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "Csak választható mértékegységek" -#: common/models.py:1529 +#: common/models.py:1540 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/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "Áraknál használt tizedesjegyek min. száma" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Tizedejegyek minimális száma az árak megjelenítésekor" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "Áraknál használt tizedesjegyek max. száma" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Tizedejegyek maximális száma az árak megjelenítésekor" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "Beszállítói árazás használata" -#: common/models.py:1563 +#: common/models.py:1574 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/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "Beszerzési előzmények felülbírálása" -#: common/models.py:1571 +#: common/models.py:1582 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/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "Készlet tétel ár használata" -#: common/models.py:1579 +#: common/models.py:1590 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/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "Készlet tétel ár kora" -#: common/models.py:1587 +#: common/models.py:1598 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/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "Alkatrészváltozat árak használata" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "Alkatrészváltozat árak megjelenítése az általános árkalkulációkban" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "Csak az aktív változatokat" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "Csak az aktív alkatrészváltozatok használata az árazásban" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "Árazás újraszámítás gyakoriság" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "Árak automatikus frissítése ennyi nap után" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Belső árak" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "Alkatrészekhez belső ár engedélyezése" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "Belső ár felülbírálása" -#: common/models.py:1625 +#: common/models.py:1636 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/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Címke nyomtatás engedélyezése" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "Címke nyomtatás engedélyezése a web felületről" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "Címke kép DPI" -#: common/models.py:1639 +#: common/models.py:1650 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/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Riportok engedélyezése" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "Riportok előállításának engedélyezése" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Debug mód" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "Riportok előállítása HTML formátumban (hibakereséshez)" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "Jelentési hibák naplózása" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "Jelentések generálása közben jelentkező hibák naplózása" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Lapméret" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Alapértelmezett lapméret a PDF riportokhoz" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "Teszt riportok engedélyezése" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "Teszt riportok előállításának engedélyezése" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "Teszt riportok hozzáadása" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Teszt riport nyomtatáskor egy másolat hozzáadása a készlet tételhez" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "Globálisan egyedi sorozatszámok" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "A sorozatszámoknak egyedinek kell lennie a teljes készletre vonatkozóan" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "Sorozatszámok automatikus kitöltése" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "Sorozatszámok automatikus kitöltése a formokon" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "Kimerült készlet törlése" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "Alapértelmezett művelet mikor a készlet tétel elfogy" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "Batch kód sablon" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "Sablon a készlet tételekhez alapértelmezett batch kódok előállításához" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "Készlet lejárata" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "Készlet lejárat kezelésének engedélyezése" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "Lejárt készlet értékesítése" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "Lejárt készlet értékesítésének engedélyezése" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "Álló készlet ideje" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "Napok száma amennyivel a lejárat előtt a készlet tételeket állottnak vesszük" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "Lejárt készlet gyártása" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "Gyártás engedélyezése lejárt készletből" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "Készlet tulajdonosok kezelése" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "Tulajdonosok kezelésének engedélyezése a készlet helyekre és tételekre" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "Hely alapértelmezett ikon" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "Hely alapértelmezett ikon (üres ha nincs)" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "Beépített készlet megjelenítése" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "Beépített készlet tételek megjelenítése a készlet táblákban" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "Tételek telepítésekor a darabjegyzék ellenőrzése" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "A beépített tételeknek a szülő elem darabjegyzékében szerepelniük kell" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "Gyártási utasítás azonosító minta" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "Szükséges minta a gyártási utasítás azonosító mező előállításához" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "Felelős tulajdonos szükséges" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "Minden rendeléshez felelőst kell rendelni" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "Blokkolás a tesztek sikeres végrehajtásáig" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "Nem lehet gyártási tételt befejezni amíg valamennyi kötelező teszt sikeres nem lett" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "Visszavétel engedélyezése" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "Visszavételek engedélyezése a felületen" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "Visszavétel azonosító minta" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "Szükséges minta a visszavétel azonosító mező előállításához" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "Befejezett visszavétel szerkesztése" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "Visszavétel szerkesztésének engedélyezése befejezés után" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "Vevői rendelés azonosító minta" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "Szükséges minta a vevői rendelés azonosító mező előállításához" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "Vevői rendeléshez alapértelmezett szállítmány" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "Szállítmány automatikus létrehozása az új vevő rendelésekhez" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "Befejezett vevői rendelés szerkesztése" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "Vevői rendelések szerkesztésének engedélyezése szállítás vagy befejezés után" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "Beszerzési rendelés azonosító minta" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "Szükséges minta a beszerzési rendelés azonosító mező előállításához" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "Befejezett beszerzési rendelés szerkesztése" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "Beszérzési rendelések szerkesztésének engedélyezése kiküldés vagy befejezés után" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "Beszerzési rendelések automatikus befejezése" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "A beszerzési rendelés automatikus befejezése ha minden sortétel beérkezett" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "Elfelejtett jelszó engedélyezése" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "Elfelejtett jelszó funkció engedélyezése a bejentkező oldalon" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Regisztráció engedélyezése" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "Felhaszálók önkéntes regisztrációjának engedélyezése a bejelentkező oldalon" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "SSO engedélyezése" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "SSO engedélyezése a bejelentkező oldalon" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "SSO regisztráció engedélyezése" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Felhaszálók önkéntes regisztrációjának engedélyezése SSO-n keresztül a bejelentkező oldalon" -#: common/models.py:1913 +#: common/models.py:1944 +msgid "Enable SSO group sync" +msgstr "" + +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" + +#: common/models.py:1952 +msgid "SSO group key" +msgstr "" + +#: common/models.py:1954 +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" + +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" + +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" + +#: common/models.py:1968 +msgid "Remove groups outside of SSO" +msgstr "" + +#: common/models.py:1970 +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 "" + +#: common/models.py:1976 msgid "Email required" msgstr "Email szükséges" -#: common/models.py:1914 +#: common/models.py:1977 msgid "Require user to supply mail on signup" msgstr "Kötelező email megadás regisztrációkor" -#: common/models.py:1919 +#: common/models.py:1982 msgid "Auto-fill SSO users" msgstr "SSO felhasználók automatikus kitöltése" -#: common/models.py:1921 +#: common/models.py:1984 msgid "Automatically fill out user-details from SSO account-data" msgstr "Felhasználó adatainak automatikus kitöltése az SSO fiókadatokból" -#: common/models.py:1927 +#: common/models.py:1990 msgid "Mail twice" msgstr "Email kétszer" -#: common/models.py:1928 +#: common/models.py:1991 msgid "On signup ask users twice for their mail" msgstr "Regisztráláskor kétszer kérdezze a felhasználó email címét" -#: common/models.py:1933 +#: common/models.py:1996 msgid "Password twice" msgstr "Jelszó kétszer" -#: common/models.py:1934 +#: common/models.py:1997 msgid "On signup ask users twice for their password" msgstr "Regisztráláskor kétszer kérdezze a felhasználó jelszavát" -#: common/models.py:1939 +#: common/models.py:2002 msgid "Allowed domains" msgstr "Engedélyezett domainek" -#: common/models.py:1941 +#: common/models.py:2004 msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "Feliratkozás korlátozása megadott domain-ekre (vesszővel elválasztva, @-al kezdve)" -#: common/models.py:1947 +#: common/models.py:2010 msgid "Group on signup" msgstr "Csoport regisztráláskor" -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "Csoport amihez a frissen regisztrált felhasználók hozzá lesznek rendelve" +#: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" -#: common/models.py:1953 +#: common/models.py:2018 msgid "Enforce MFA" msgstr "Többfaktoros hitelesítés kényszerítése" -#: common/models.py:1954 +#: common/models.py:2019 msgid "Users must use multifactor security." msgstr "A felhasználóknak többfaktoros hitelesítést kell használniuk." -#: common/models.py:1959 +#: common/models.py:2024 msgid "Check plugins on startup" msgstr "Pluginok ellenőrzése indításkor" -#: common/models.py:1961 +#: common/models.py:2026 msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "Ellenőrizze induláskor hogy minden plugin telepítve van - engedélyezd konténer környezetben (docker)" -#: common/models.py:1969 +#: common/models.py:2034 msgid "Check for plugin updates" msgstr "Plugin frissítések ellenőrzése" -#: common/models.py:1970 +#: common/models.py:2035 msgid "Enable periodic checks for updates to installed plugins" msgstr "Frissítések periódikus ellenőrzésének engedélyezése a telepített pluginokra" -#: common/models.py:1976 +#: common/models.py:2041 msgid "Enable URL integration" msgstr "URL integráció engedélyezése" -#: common/models.py:1977 +#: common/models.py:2042 msgid "Enable plugins to add URL routes" msgstr "URL útvonalalak hozzáadásának engedélyezése a pluginok számára" -#: common/models.py:1983 +#: common/models.py:2048 msgid "Enable navigation integration" msgstr "Navigációs integráció engedélyezése" -#: common/models.py:1984 +#: common/models.py:2049 msgid "Enable plugins to integrate into navigation" msgstr "Navigációs integráció engedélyezése a pluginok számára" -#: common/models.py:1990 +#: common/models.py:2055 msgid "Enable app integration" msgstr "App integráció engedélyezése" -#: common/models.py:1991 +#: common/models.py:2056 msgid "Enable plugins to add apps" msgstr "App hozzáadásának engedélyezése a pluginok számára" -#: common/models.py:1997 +#: common/models.py:2062 msgid "Enable schedule integration" msgstr "Ütemezés integráció engedélyezése" -#: common/models.py:1998 +#: common/models.py:2063 msgid "Enable plugins to run scheduled tasks" msgstr "Háttérben futó feladatok hozzáadásának engedélyezése a pluginok számára" -#: common/models.py:2004 +#: common/models.py:2069 msgid "Enable event integration" msgstr "Esemény integráció engedélyezése" -#: common/models.py:2005 +#: common/models.py:2070 msgid "Enable plugins to respond to internal events" msgstr "Belső eseményekre reagálás engedélyezése a pluginok számára" -#: common/models.py:2011 +#: common/models.py:2076 msgid "Enable project codes" msgstr "Projektszámok engedélyezése" -#: common/models.py:2012 +#: common/models.py:2077 msgid "Enable project codes for tracking projects" msgstr "Projektszámok használatának engedélyezése a projektek követéséhez" -#: common/models.py:2017 +#: common/models.py:2082 msgid "Stocktake Functionality" msgstr "Leltár funkció" -#: common/models.py:2019 +#: common/models.py:2084 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Leltár funkció engedélyezése a készlet mennyiség és érték számításhoz" -#: common/models.py:2025 +#: common/models.py:2090 msgid "Exclude External Locations" msgstr "Külső helyek nélkül" -#: common/models.py:2027 +#: common/models.py:2092 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Külső helyek figyelmen kívül hagyása a leltár számításoknál" -#: common/models.py:2033 +#: common/models.py:2098 msgid "Automatic Stocktake Period" msgstr "Automatikus leltár időpontja" -#: common/models.py:2035 +#: common/models.py:2100 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Hány naponta történjen automatikus leltár (nulla egyenlő tiltva)" -#: common/models.py:2041 +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "Riport törlési gyakoriság" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Régi leltár riportok törlése hány naponta történjen" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "Felhasználók teljes nevének megjelenítése" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "Felhasználói név helyett a felhasználók teljes neve jelenik meg" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "Teszt állomás adatok engedélyezése" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "Tesztállomás adatok gyűjtésének teszt eredménybe gyűjtésének engedélyezése" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "Beállítások kulcs (egyedinek kell lennie, nem kis- nagybetű érzékeny" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "Inaktív alkatrészek elrejtése" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Nem aktív alkatrészek elrejtése a kezdőlapon" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "Értesítésre beállított alkatrészek megjelenítése" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "Alkatrész értesítések megjelenítése a főoldalon" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "Értesítésre beállított kategóriák megjelenítése" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "Alkatrész kategória értesítések megjelenítése a főoldalon" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "Legújabb alkatrészek megjelenítése" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "Legújabb alkatrészek megjelenítése a főoldalon" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "Hibás alkatrészjegyzékek megjelenítése" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "Jóváhagyásra váró alkatrészjegyzékek megjelenítése a főoldalon" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "Legfrissebb készlet változások megjelenítése" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "Legutóbb megváltozott alkatrészek megjelenítése a főoldalon" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "Alacsony készlet megjelenítése" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "Alacsony készletek megjelenítése a főoldalon" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "Kimerült készlet megjelenítése" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "Kimerült készletek megjelenítése a főoldalon" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "Gyártáshoz szükséges készlet megjelenítése" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "Gyártáshoz szükséges készletek megjelenítése a főoldalon" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "Lejárt készlet megjelenítése" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "Lejárt készletek megjelenítése a főoldalon" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "Állott készlet megjelenítése" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "Álló készletek megjelenítése a főoldalon" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "Függő gyártások megjelenítése" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "Folyamatban lévő gyártások megjelenítése a főoldalon" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "Késésben lévő gyártások megjelenítése" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "Késésben lévő gyártások megjelenítése a főoldalon" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "Kintlévő beszerzési rendelések megjelenítése" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "Kintlévő beszerzési rendelések megjelenítése a főoldalon" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "Késésben lévő megrendelések megjelenítése" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "Késésben lévő megrendelések megjelenítése a főoldalon" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "Függő vevői rendelések megjelenítése" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "Függő vevői rendelések megjelenítése a főoldalon" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "Késésben lévő vevői rendelések megjelenítése" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "Késésben lévő vevői rendelések megjelenítése a főoldalon" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "Függő vevői szállítmányok megjelenítése" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "Folyamatban lévő vevői szállítmányok megjelenítése a főoldalon" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "Hírek megjelenítése" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "Hírek megjelenítése a főoldalon" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "Beágyazott címke megjelenítés" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "PDF címkék megjelenítése a böngészőben letöltés helyett" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "Alapértelmezett címkenyomtató" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "Melyik címkenyomtató legyen az alapértelmezett" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "Beágyazott riport megjelenítés" -#: common/models.py:2246 +#: common/models.py:2311 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/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "Alkatrészek keresése" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "Alkatrészek megjelenítése a keresési előnézetben" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "Beszállítói alkatrészek keresése" -#: common/models.py:2259 +#: common/models.py:2324 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/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "Gyártói alkatrészek keresése" -#: common/models.py:2265 +#: common/models.py:2330 msgid "Display manufacturer parts in search preview window" msgstr "Gyártói alkatrészek megjelenítése a keresési előnézetben" -#: common/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "Inaktív alkatrészek elrejtése" -#: common/models.py:2271 +#: common/models.py:2336 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/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "Kategóriák keresése" -#: common/models.py:2277 +#: common/models.py:2342 msgid "Display part categories in search preview window" msgstr "Alkatrész kategóriák megjelenítése a keresési előnézetben" -#: common/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "Készlet keresése" -#: common/models.py:2283 +#: common/models.py:2348 msgid "Display stock items in search preview window" msgstr "Készlet tételek megjelenítése a keresési előnézetben" -#: common/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "Nem elérhető készlet tételek elrejtése" -#: common/models.py:2290 +#: common/models.py:2355 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/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "Helyek keresése" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "Készlet helyek megjelenítése a keresési előnézetben" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "Cégek keresése" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "Cégek megjelenítése a keresési előnézetben" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "Gyártási utasítások keresése" -#: common/models.py:2309 +#: common/models.py:2374 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/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "Beszerzési rendelések keresése" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "Beszerzési rendelések megjelenítése a keresési előnézetben" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "Inaktív beszerzési rendelések kihagyása" -#: common/models.py:2322 +#: common/models.py:2387 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/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "Vevői rendelések keresése" -#: common/models.py:2329 +#: common/models.py:2394 msgid "Display sales orders in search preview window" msgstr "Vevői rendelések megjelenítése a keresési előnézetben" -#: common/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "Inaktív vevői rendelések kihagyása" -#: common/models.py:2336 +#: common/models.py:2401 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/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "Visszavétel keresése" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "Visszavételek megjelenítése a keresés előnézet ablakban" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "Inaktív visszavételek kihagyása" -#: common/models.py:2350 +#: common/models.py:2415 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/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "Keresési előnézet eredményei" -#: common/models.py:2358 +#: common/models.py:2423 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/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "Regex keresés" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "Reguláris kifejezések engedélyezése a keresésekben" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "Teljes szó keresés" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "A keresések csak teljes szóra egyező találatokat adjanak" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "Mennyiség megjelenítése a formokon" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "Rendelkezésre álló alkatrész mennyiség megjelenítése néhány formon" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "ESC billentyű zárja be a formot" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "ESC billentyű használata a modális formok bezárásához" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "Rögzített menüsor" -#: common/models.py:2389 +#: common/models.py:2454 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/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "Dátum formátum" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "Preferált dátum formátum a dátumok kijelzésekor" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Alkatrész ütemezés" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "Alkatrész ütemezési információk megjelenítése" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Alkatrész leltár" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Alkatrész leltár információk megjelenítése (ha a leltár funkció engedélyezett)" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "Táblázati szöveg hossz" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "Maximális szöveg hossz ami megjelenhet a táblázatokban" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "Alapértelmezett alkatrész címke sablon" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "Az alapértelmezetten kiválasztott alkatrész címke sablon" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "Alapértelmezett készlet címke sablon" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "Az alapértelmezetten kiválasztott készlet címke sablon" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "Alapértelmezett készlethely címke sablon" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "Az alapértelmezetten kiválasztott készlethely címke sablon" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "Alapértelmezett gyártási tétel címke sablon" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "Az alapértelmezetten kiválasztott gyártási tétel címke sablon" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "Hibariportok fogadása" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "Értesítések fogadása a rendszerhibákról" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "Utoljára használt nyomtató gépek" -#: common/models.py:2467 +#: common/models.py:2502 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/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Felhasználó" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "Ársáv mennyiség" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Ár" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "Egységár egy meghatározott mennyiség esetén" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "Végpont" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "Végpont ahol ez a webhook érkezik" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "Webhook neve" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Aktív" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "Aktív-e ez a webhook" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "Token" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "Token a hozzáféréshez" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "Titok" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "Megosztott titok a HMAC-hoz" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "Üzenet azonosító" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "Egyedi azonosító ehhez az üzenethez" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "Kiszolgáló" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "Kiszolgáló ahonnan ez az üzenet érkezett" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "Fejléc" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "Üzenet fejléce" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "Törzs" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "Üzenet törzse" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "Végpont amin ez az üzenet érkezett" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "Dolgozott rajta" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "Befejeződött a munka ezzel az üzenettel?" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "Azonosító" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Cím" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3499,28 +3641,28 @@ msgstr "Cím" msgid "Link" msgstr "Link" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "Közzétéve" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Szerző" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "Összefoglaló" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "Elolvasva" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "Elolvasva?" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3530,86 +3672,94 @@ msgstr "Elolvasva?" msgid "Image" msgstr "Kép" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "Képfájl" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "A mértékegységnek valós azonosítónak kell lennie" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "Egység neve" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Szimbólum" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "Opcionális mértékegység szimbólum" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definíció" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "Mértékegység definíció" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Melléklet" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Hiányzó fájl" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Hiányzó külső link" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Válaszd ki a mellekelni kívánt fájlt" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Megjegyzés" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" -msgstr "" +msgstr "Fájl mérete" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" -msgstr "" +msgstr "Fájlméret bájtban" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3631,7 +3781,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:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "Készlet érkezett" @@ -3647,75 +3797,75 @@ msgstr "Készlet érkezett vissza egy visszavétel miatt" msgid "Error raised by plugin" msgstr "Plugin hiba" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "Folyamatban" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "Folyamatban lévő feladatok" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "Ütemezett Feladatok" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "Hibás feladatok" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "Feladat ID" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "Egyedi feladat ID" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "Zárol" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "Zárolási idő" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "Feladat neve" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "Funkció" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "Funkció neve" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "Paraméterek" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "Feladat paraméterei" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "Kulcsszó paraméterek" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "Feladat kulcsszó paraméterek" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Fájlnév" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" -msgstr "" +msgstr "Modell típusa" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3782,29 +3932,29 @@ msgstr "Importált alkatrészek" msgid "Previous Step" msgstr "Előző lépés" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "Az alkatrész aktív" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "A Gyártó Aktív" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "A Szállítói Alkatrész Aktív" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "A saját alkatrész Aktív" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "A Beszállító Aktív" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Cég" @@ -3844,8 +3994,9 @@ msgstr "Kapcsolattartó telefonszáma" msgid "Contact email address" msgstr "Kapcsolattartó email címe" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3864,24 +4015,24 @@ msgid "Is this company active?" msgstr "Ez a vállalat aktív?" #: company/models.py:168 -msgid "is customer" -msgstr "vevő-e" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "Értékesítesz alkatrészeket ennek a cégnek?" #: company/models.py:174 -msgid "is supplier" -msgstr "beszállító-e" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "Vásárolsz alkatrészeket ettől a cégtől?" #: company/models.py:180 -msgid "is manufacturer" -msgstr "gyártó-e" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3891,270 +4042,281 @@ msgstr "Gyárt ez a cég alkatrészeket?" msgid "Default currency used for this company" msgstr "Cég által használt alapértelmezett pénznem" -#: company/models.py:366 +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Cím" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Címek" + +#: company/models.py:372 msgid "Select company" msgstr "Cég kiválasztása" -#: company/models.py:371 +#: company/models.py:377 msgid "Address title" msgstr "Cím megnevezése" -#: company/models.py:372 +#: company/models.py:378 msgid "Title describing the address entry" msgstr "Címhez tartozó leírás, megnevezés" -#: company/models.py:378 +#: company/models.py:384 msgid "Primary address" msgstr "Elsődleges cím" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "Beállítás elsődleges címként" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "1. sor" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "Cím első sora" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "2. sor" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "Cím második sora" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "Irányítószám" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "Város/Régió" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "Irányítószám város/régió" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "Állam/Megye" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "Állam vagy megye" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "Ország" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "Cím országa" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "Megjegyzés a futárnak" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "Futárnak szóló megjegyzések" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "Belső szállítási megjegyzések" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "Szállítási megjegyzések belső használatra" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "Link a címinformációkhoz (külső)" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "Gyártói alkatrész" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Kiindulási alkatrész" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "Válassz alkatrészt" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Gyártó" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Gyártó kiválasztása" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "MPN (Gyártói cikkszám)" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Gyártói cikkszám" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "URL link a gyártói alkatrészhez" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "Gyártói alkatrész leírása" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Paraméter neve" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Érték" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Paraméter értéke" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "Mértékegység" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "Paraméter mértékegység" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "Beszállítói alkatrész" -#: company/models.py:700 +#: company/models.py:707 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:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "Csomagolási mennyiségnek nullánál többnek kell lennie" -#: company/models.py:721 +#: company/models.py:728 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:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Beszállító" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Beszállító kiválasztása" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "Beszállítói cikkszám" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "Ez a szállítói termék aktív?" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "Gyártói alkatrész kiválasztása" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "URL link a beszállítói alkatrészhez" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "Beszállítói alkatrész leírása" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Megjegyzés" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "alap költség" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimális díj (pl. tárolási díj)" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "Csomagolás" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "Alkatrész csomagolás" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4163,35 +4325,43 @@ msgstr "Alkatrész csomagolás" msgid "Pack Quantity" msgstr "Csomagolási mennyiség" -#: company/models.py:841 +#: company/models.py:848 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:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "többszörös" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "Többszörös rendelés" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "Beszállítónál elérhető mennyiség" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "Elérhetőség frissítve" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "Utolsó elérhetőségi adat frissítés" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "Beszállító által használt alapértelmezett pénznem" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4203,7 +4373,7 @@ msgstr "Készleten" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "Inaktív" @@ -4262,16 +4432,16 @@ msgid "Delete image" msgstr "Kép törlése" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Vevő" @@ -4279,13 +4449,6 @@ msgstr "Vevő" msgid "Uses default currency" msgstr "Alapértelmezett pénznemet használja" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Cím" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Telefonszám" @@ -4465,7 +4628,8 @@ msgid "Delete manufacturer part" msgstr "Gyártói alkatrész törlése" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "Belső alkatrész" @@ -4475,7 +4639,7 @@ msgstr "Nincs elérhető gyártói információ" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4496,7 +4660,7 @@ msgid "New Parameter" msgstr "Új paraméter" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "Paraméter hozzáadása" @@ -4520,10 +4684,6 @@ msgstr "Hozzárendelt készlet tételek" msgid "Contacts" msgstr "Névjegyek" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "Címek" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4565,9 +4725,9 @@ msgstr "Beszállítói alkatrész törlése" msgid "No supplier information available" msgstr "Nincs elérhető beszállítói információ" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4616,15 +4776,15 @@ msgid "Update Part Availability" msgstr "Alkatrész elérhetőség frissítése" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4659,48 +4819,204 @@ msgstr "Új cég" msgid "Placed" msgstr "Kiküldve" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "Oszlopok" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "Adat" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "Hibák" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "Érvényes" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "Másolatok" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "Címkénkénti nyomtatandó mennyiség" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "Csatlakoztatba" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "Ismeretlen" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "Nyomtatás" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "Nincs papír" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "Nincs kapcsolat" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "Címkenyomtató" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "Közvetlen címkenyomtatás különféle tételekre." -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "Nyomtató helye" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "Nyomtató korlátozása egy készlethelyhez" @@ -4740,10 +5056,6 @@ msgstr "Nincsen hiba" msgid "Initialized" msgstr "Inicializálva" -#: machine/models.py:110 -msgid "Errors" -msgstr "Hibák" - #: machine/models.py:117 msgid "Machine status" msgstr "Gép állapot" @@ -4769,44 +5081,44 @@ msgstr "Konfiguráció típusa" msgid "Total Price" msgstr "Teljes ár" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "Rendelés állapota" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "Van árazás" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "Nincs egyező beszerzési rendelés" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "Rendelés" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "A rendelés teljesítve" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "A rendelés függőben" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4814,8 +5126,8 @@ msgstr "A rendelés függőben" msgid "Purchase Order" msgstr "Beszerzési rendelés" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4827,11 +5139,11 @@ msgstr "Visszavétel" msgid "Total price for this order" msgstr "A rendelés teljes ára" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "Rendelés pénzneme" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 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)" @@ -4847,7 +5159,7 @@ msgstr "Rendelés leírása (opcionális)" msgid "Select project code for this order" msgstr "Válassz projektszámot ehhez a rendeléshez" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "Link külső weboldalra" @@ -4896,15 +5208,15 @@ msgstr "Beszállítói rendelés azonosító kód" msgid "received by" msgstr "érkeztette" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "Kiállítás dátuma" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "Kiállítás dátuma" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "Rendelés teljesítési dátuma" @@ -4920,15 +5232,15 @@ msgstr "Mennyiség pozitív kell legyen" 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:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "Vevői azonosító " -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "Megrendelés azonosító kódja a vevőnél" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4990,20 +5302,24 @@ msgstr "További kontextus ehhez a sorhoz" msgid "Unit price" msgstr "Egységár" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "Beszállítói alkatrésznek egyeznie kell a beszállítóval" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "törölve" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "Beszállítói alkatrész" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5012,196 +5328,224 @@ msgstr "Beszállítói alkatrész" msgid "Received" msgstr "Beérkezett" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "Érkezett tételek száma" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "Beszerzési ár" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "Beszerzési egységár" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "Mit szeretne a vevő hol tároljuk ezt az alkatrészt?" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "Virtuális alkatrészt nem lehet vevői rendeléshez adni" -#: order/models.py:1543 +#: order/models.py:1558 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:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "Eladási ár" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "Eladási egységár" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Kiszállítva" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "Szállított mennyiség" -#: order/models.py:1672 +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "Szállítás dátuma" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "Szállítási dátum" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "Kézbesítés dátuma" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "Ellenőrizte" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "Felhasználó aki ellenőrizte ezt a szállítmányt" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "Szállítmány" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "Szállítmány száma" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "Nyomkövetési szám" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "Szállítmány nyomkövetési információ" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "Számlaszám" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "Hozzátartozó számla referencia száma" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "Szállítmány már elküldve" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "Szállítmány nem tartalmaz foglalt készlet tételeket" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "Készlet tétel nincs hozzárendelve" -#: order/models.py:1863 +#: order/models.py:1889 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:1866 +#: order/models.py:1892 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:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "A lefoglalandó mennyiség nem haladhatja meg a készlet mennyiségét" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 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:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "Vevői rendelés nem egyezik a szállítmánnyal" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "Szállítmány nem egyezik a vevői rendeléssel" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "Sor" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "Vevői rendelés szállítmány azonosító" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "Tétel" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "Válaszd ki a foglalásra szánt készlet tételt" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "Készlet foglalási mennyiség megadása" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "Visszavétel azonosító" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "Cég akitől a tételek visszavételre kerülnek" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "Visszavétel állapota" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "Csak szériaszámos tételek rendelhetők visszaszállítási utasításhoz" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "Válaszd ki a vevőtől visszavenni kívánt tételt" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "Visszavétel dátuma" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "Mikor lett visszavéve a tétel" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "Kimenetel" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "Sortétel végső kimenetele" -#: order/models.py:2266 +#: order/models.py:2293 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/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5210,163 +5554,171 @@ msgstr "Sortétel visszaküldésének vagy javításának költsége" msgid "Line Items" msgstr "Sortételek" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "Kész sorok" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "A rendelést nem lehet törölni" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 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:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "A rendelésben teljesítetlen sortételek vannak" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "A rendelés nem nyitott" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "Automata árazás" -#: order/serializers.py:462 +#: order/serializers.py:491 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:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "Beszérzési ár pénzneme" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "Elemek összevonása" -#: order/serializers.py:480 +#: order/serializers.py:509 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:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "Belső cikkszám" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "Beszállítói alkatrészt meg kell adni" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "Beszerzési rendelést meg kell adni" -#: order/serializers.py:509 +#: order/serializers.py:557 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:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "A beszerzési rendelésnek egyeznie kell a beszállítóval" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "Sortétel" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "Sortétel nem egyezik a beszerzési megrendeléssel" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "Válassz cél helyet a beérkezett tételeknek" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "Írd be a batch kódját a beérkezett tételeknek" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "Írd be a sorozatszámokat a beérkezett tételekhez" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Vonalkód" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "Beolvasott vonalkód" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "Ez a vonalkód már használva van" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "Egész számú mennyiség szükséges az egyedi követésre kötelezett alkatrészeknél" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "Sortételt meg kell adni" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "A cél helyet kötelező megadni" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "Megadott vonalkódoknak egyedieknek kel lenniük" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "Eladási ár pénzneme" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "Nincsenek szállítmány részletek megadva" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "Sortétel nincs hozzárendelve ehhez a rendeléshez" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "Mennyiség pozitív kell legyen" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "Írd be a sorozatszámokat a kiosztáshoz" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "Szállítmány kiszállítva" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "Szállítmány nincs hozzárendelve ehhez a rendeléshez" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "Nincs találat a következő sorozatszámokra" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "A következő sorozatszámok már ki lettek osztva" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "Visszavétel sortétel" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "Sortétel nem egyezik a visszavétellel" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "A sortétel már beérkezett" -#: order/serializers.py:1665 +#: order/serializers.py:1723 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:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "Sortétel pénzneme" @@ -5696,7 +6048,7 @@ msgstr "Vevői azonosító" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5792,34 +6144,29 @@ msgstr "A {part} egységára {price}-ra módosítva" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "A {part} alkatrész módosított egységára {price} mennyisége pedig {qty}" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "Alkatrész ID" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "Alkatrész neve" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "Alkatrész leírása" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "IPN (Belső Cikkszám)" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "Változat" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Kulcsszavak" @@ -5832,7 +6179,8 @@ msgstr "Alkatrész ábra" msgid "Category ID" msgstr "Kategória ID" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "Kategória neve" @@ -5844,11 +6192,11 @@ msgstr "Alapértelmezett készlethely ID" msgid "Default Supplier ID" msgstr "Alapértelmezett beszállító ID" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "Ebből a sablonból" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "Minimális készlet" @@ -5856,18 +6204,19 @@ msgstr "Minimális készlet" msgid "Used In" msgstr "Felhasználva ebben" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "Gyártásban" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "Minimum költség" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "Maximum költség" @@ -5884,14 +6233,14 @@ msgstr "Szülő neve" msgid "Category Path" msgstr "Kategória elérési út" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Alkatrészek" @@ -5908,125 +6257,117 @@ msgstr "Alkatrészjegyzék tétel ID" msgid "Parent IPN" msgstr "Szülő IPN" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "Alkatrész IPN" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "Minimum ár" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "Maximum ár" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "Csillagozott" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "Csillagozottra szűrés" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "Mélység" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "Kategória mélységre szűrés" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" -msgstr "" +msgstr "Felső szint" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "Lépcsőzetes" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "Szűrt eredmények tartalmazzák az alkategóriákat" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "Szülő" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "Szülő kategóriára szűrés" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "Fa kihagyása" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "Az adott kategória alkategóriáinak kihagyása" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "Van találat" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "Beérkező beszerzési rendelés" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "Kimenő vevői rendelés" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "Gyártással előállított készlet" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "A gyártási utasításhoz szükséges készlet" -#: part/api.py:881 -msgid "Valid" -msgstr "Érvényes" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "Teljes alkatrészjegyzék jóváhagyása" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "Ennek az opciónak ki kll lennie választva" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "Kategória" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "Használ" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "Alapértelmezett hely" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "Teljes készlet" @@ -6035,7 +6376,7 @@ msgstr "Teljes készlet" msgid "Input quantity for price calculation" msgstr "Add meg a mennyiséget az árszámításhoz" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Alkatrész kategória" @@ -6050,7 +6391,7 @@ msgstr "Alkatrész kategóriák" msgid "Default location for parts in this category" msgstr "Ebben a kategóriában lévő alkatrészek helye alapban" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6069,12 +6410,12 @@ msgstr "Alapértelmezett kulcsszavak" msgid "Default keywords for parts in this category" msgstr "Ebben a kategóriában évő alkatrészek kulcsszavai alapban" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "Ikon" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "Ikon (opcionális)" @@ -6082,1002 +6423,1035 @@ msgstr "Ikon (opcionális)" 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:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "Hibás választás a szülő alkatrészre" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, 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:595 +#: part/models.py:599 #, 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:658 +#: part/models.py:662 #, 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:736 +#: part/models.py:740 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:837 +#: part/models.py:841 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:847 +#: part/models.py:851 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:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "Szerkezeti kategóriákhoz nem lehet alkatrészeket rendelni!" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Alkatrész neve" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "Sablon-e" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "Ez egy sablon alkatrész?" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "Ez az alkatrész egy másik változata?" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "Alkatrész leírása (opcionális)" -#: part/models.py:923 +#: part/models.py:927 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:933 +#: part/models.py:937 msgid "Part category" msgstr "Alkatrész kategória" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "Belső cikkszám" - -#: part/models.py:948 +#: part/models.py:952 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:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "Alapban hol tároljuk ezt az alkatrészt?" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "Alapértelmezett beszállító" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "Alapértelmezett beszállítói alkatrész" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "Alapértelmezett lejárat" -#: part/models.py:1028 +#: part/models.py:1032 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:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "Minimálisan megengedett készlet mennyiség" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "Alkatrész mértékegysége" -#: part/models.py:1053 +#: part/models.py:1057 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:1059 +#: part/models.py:1063 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:1065 +#: part/models.py:1069 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:1071 +#: part/models.py:1075 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:1077 +#: part/models.py:1081 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:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "Aktív-e ez az alkatrész?" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 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:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "Alkatrészjegyzék ellenőrző összeg" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "Tárolt alkatrészjegyzék ellenőrző összeg" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "Alkatrészjegyzéket ellenőrizte" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "Alkatrészjegyzék ellenőrzési dátuma" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "Létrehozó" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "Alkatrész felelőse" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "Utolsó leltár" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "Több értékesítése" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "Árszámítások gyorstárazásához használt pénznem" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "Minimum alkatrészjegyzék költség" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "Összetevők minimum költsége" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "Maximum alkatrészjegyzék költség" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "Összetevők maximum költsége" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "Minimum beszerzési ár" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "Eddigi minimum beszerzési költség" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "Maximum beszerzési ár" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "Eddigi maximum beszerzési költség" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "Minimum belső ár" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "Minimum költség a belső ársávok alapján" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "Maximum belső ár" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "Maximum költség a belső ársávok alapján" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "Minimum beszállítói ár" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "Minimum alkatrész ár a beszállítóktól" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "Maximum beszállítói ár" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "Maximum alkatrész ár a beszállítóktól" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "Minimum alkatrészváltozat ár" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "Alkatrészváltozatok számolt minimum költsége" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "Maximum alkatrészváltozat ár" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "Alkatrészváltozatok számolt maximum költsége" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "Minimum költség felülbírálása" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "Maximum költség felülbírálása" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "Számított általános minimum költség" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "Számított általános maximum költség" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "Minimum eladási ár" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "Minimum eladási ár az ársávok alapján" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "Maximum eladási ár" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "Maximum eladási ár az ársávok alapján" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "Minimum eladási költség" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "Eddigi minimum eladási ár" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "Maximum eladási költség" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "Eddigi maximum eladási ár" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "Leltározható alkatrész" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "Tételszám" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "Egyedi készlet tételek száma a leltárkor" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "Teljes készlet a leltárkor" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "Dátum" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "Leltározva ekkor" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "További megjegyzések" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "Leltározta" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "Minimum készlet érték" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "Becsült minimum raktárkészlet érték" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "Maximum készlet érték" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "Becsült maximum raktárkészlet érték" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "Riport" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "Leltár riport fájl (generált)" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "Alkatrész szám" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "Leltározott alkatrészek száma" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "Felhasználó aki a leltár riportot kérte" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 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:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "A lehetőségek egyediek kell legyenek" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "Teszt sablont csak követésre kötelezett alkatrészhez lehet csinálni" -#: part/models.py:3466 +#: part/models.py:3482 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:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "Teszt név" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "Add meg a teszt nevét" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "Teszt azonosító" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "Egyszerűsített Teszt azonosító" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "Teszt leírása" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "Adj hozzá egy leírást ehhez a teszthez" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Engedélyezve" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "Teszt engedélyezve?" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "Kötelező" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "Szükséges-e hogy ez a teszt sikeres legyen?" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "Kötelező érték" -#: part/models.py:3515 +#: part/models.py:3531 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:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "Kötelező melléklet" -#: part/models.py:3522 +#: part/models.py:3538 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:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "Lehetőségek" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "Jelölőnégyzet paraméternek nem lehet mértékegysége" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "Jelölőnégyzet paraméternek nem lehetnek választási lehetőségei" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "A paraméter sablon nevének egyedinek kell lennie" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "Paraméter neve" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "Paraméter mértékegysége" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "Paraméter leírása" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "Jelölőnégyzet" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "Ez a paraméter egy jelölőnégyzet?" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "Választható lehetőségek (vesszővel elválasztva)" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "Hibás választás a paraméterre" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "Szülő alkatrész" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Paraméter sablon" -#: part/models.py:3801 -msgid "Data" -msgstr "Adat" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "Paraméter értéke" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Alapértelmezett érték" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "Alapértelmezett paraméter érték" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "Alkatrész ID vagy alkatrész név" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "Egyedi alkatrész ID értéke" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "Alkatrész IPN érték" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "Szint" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "Alkatrészjegyzék szint" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "Szülő alkatrész kiválasztása" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "Al alkatrész" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "Válaszd ki az alkatrészjegyzékben használandó alkatrészt" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "Alkatrészjegyzék mennyiség ehhez az alkatrészjegyzék tételhez" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "Ez az alkatrészjegyzék tétel opcionális" -#: part/models.py:4071 +#: part/models.py:4156 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:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Többlet" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Becsült gyártási veszteség (abszolút vagy százalékos)" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "Alkatrészjegyzék tétel azonosító" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "Alkatrészjegyzék tétel megjegyzései" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "Ellenőrző összeg" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "Alkatrészjegyzék sor ellenőrző összeg" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "Jóváhagyva" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "Ez a BOM tétel jóvá lett hagyva" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "Öröklődött" -#: part/models.py:4113 +#: part/models.py:4198 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:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "Változatok" -#: part/models.py:4119 +#: part/models.py:4204 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:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 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:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "Al alkatrészt kötelező megadni" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "Alkatrészjegyzék tétel helyettesítő" -#: part/models.py:4375 +#: part/models.py:4460 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:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "Szülő alkatrészjegyzék tétel" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "Helyettesítő alkatrész" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "1.rész" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "2.rész" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "Válassz kapcsolódó alkatrészt" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "Alkatrész kapcsolat nem hozható létre önmagával" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "Már létezik duplikált alkatrész kapcsolat" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "Felsőbb szintű alkatrész kategória" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Alkategóriák" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "Eredmények" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "Eszerint a sablon szerint rögzített eredmények száma" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "Beszerzési pénzneme ennek a készlet tételnek" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "Ennyi alkatrész használja ezt a sablont" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "Nincs kiválasztva alkatrész" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "Válassz kategóriát" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "Eredeti alkatrész" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "Válassz eredeti alkatrészt a másoláshoz" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "Kép másolása" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "Kép másolása az eredeti alkatrészről" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Alkatrészjegyzék másolása" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "Alkatrészjegyzék másolása az eredeti alkatrészről" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "Paraméterek másolása" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "Paraméterek másolása az eredeti alkatrészről" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "Megjegyzések másolása" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "Megjegyzések másolása az eredeti alkatrészről" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "Kezdeti készlet mennyiség" -#: part/serializers.py:485 +#: part/serializers.py:503 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:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "Kezdeti készlet hely" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "Add meg a kezdeti készlet helyét" -#: part/serializers.py:510 +#: part/serializers.py:528 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:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "Válassz gyártót (hagyd üresen ha nem kell létrehozni)" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "Gyártói cikkszám" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "A kiválasztott cég nem érvényes beszállító" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "A kiválasztott cég nem érvényes gyártó" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "Van már ilyen gyártói alkatrész" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "Van már ilyen beszállítói alkatrész" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "Külső raktárkészlet" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "Nem lefoglalt készlet" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "Variánsok Raktárkészlet" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "Alkatrész másolása" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "Kezdeti adatok másolása egy másik alkatrészről" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Kezdeti készlet" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "Kezdeti készlet mennyiség létrehozása" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "Beszállító információ" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "Kezdeti beszállító adatok hozzáadása" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "Kategória paraméterek másolása" -#: part/serializers.py:893 +#: part/serializers.py:921 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:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "Meglévő kép" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "A meglévő alkatrész képfájl neve" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "A képfájl nem létezik" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "Leltár riport korlátozása bizonyos alkatrészre és variánsra" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "Leltár riport korlátozása bizonyos alkatrész kategóriára és az alatta lévőkre" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "Leltár riport korlátozása bizonyos készlethelyre és az alatta lévőkre" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "Külső készlet nélkül" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "Külső helyeken lévő készlet nélkül" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "Riport létrehozása" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "Riport fájl létrehozása a számított leltár adatokkal" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "Alaktrészek frissítése" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "Megadott alkatrészek frissítése a számított leltár adatokkal" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "Leltár funkció nincs engedélyezve" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "Számított minimum ár felülbírálása" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "Minimum ár pénzneme" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "Számított maximum ár felülbírálása" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "Maximum ár pénzneme" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "Frissítés" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "Alkatrész árak frissítése" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, 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:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "A Minimum ár nem lehet nagyobb mint a Maximum ár" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "A Maximum ár nem lehet kisebb mint a Minimum ár" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "Válassz alkatrészt ahonnan az alkatrészjegyzéket másoljuk" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "Létező adat törlése" -#: part/serializers.py:1736 +#: part/serializers.py:1768 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:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "Örököltekkel együtt" -#: part/serializers.py:1742 +#: part/serializers.py:1774 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:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "Hibás sorok kihagyása" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "Engedély a hibás sorok kihagyására" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "Helyettesítő alkatrészek másolása" -#: part/serializers.py:1754 +#: part/serializers.py:1786 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" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "Meglévő alkatrészjegyzék törlése" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "Meglévő alkatrészjegyzék tételek törlése a feltöltés előtt" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "Nincs megadva alkatrész oszlop" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "Több egyező alkatrész is található" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "Nincs egyező alkatrész" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "Az alkatrész nem lett összetevőként jelölve" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "Mennyiség nincs megadva" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "Érvénytelen mennyiség" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "Legalább egy alkatrészjegyzék tétel szükséges" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "Teljes mennyiség" @@ -7395,7 +7769,7 @@ msgstr "Értesítések kérése erre az alkatrészre" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "Címke nyomtatása" @@ -7417,7 +7791,7 @@ msgstr "Készlet számolása" msgid "Transfer part stock" msgstr "Készlet áthelyezése" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "Készlet műveletek" @@ -7489,7 +7863,7 @@ msgid "Minimum stock level" msgstr "Minimális készlet" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7582,8 +7956,8 @@ msgstr "Változatok" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "Készlet" @@ -7703,8 +8077,8 @@ msgstr "Árazás Frissítése" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "Nincs készlet" @@ -7848,7 +8222,7 @@ msgstr "Vonalkód nem egyezik egy létező készlet tétellel sem" msgid "Stock item does not match line item" msgstr "Készlet tétel nem egyezik a sortétellel" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "Nincs elegendő" @@ -7943,7 +8317,7 @@ msgstr "Szállítmány kiszállítva" msgid "Quantity to allocate" msgstr "Lefoglalandó mennyiség" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "Címkenyomtatás sikertelen" @@ -8532,7 +8906,7 @@ msgstr "" #: report/models.py:464 report/models.py:487 msgid "Output File" -msgstr "" +msgstr "Kimeneti Fájl" #: report/models.py:465 report/models.py:488 msgid "Generated output file" @@ -8639,8 +9013,8 @@ msgid "Total" msgstr "Összesen" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8670,7 +9044,7 @@ msgstr "Teszt eredmények" msgid "Test" msgstr "Teszt" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "Eredmény" @@ -8691,7 +9065,7 @@ msgid "No result" msgstr "Nincs eredmény" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "Beépített tételek" @@ -8721,10 +9095,6 @@ msgstr "company_image elem csak cég példánynál használható" msgid "Location ID" msgstr "Hely ID" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "Hely neve" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8758,7 +9128,7 @@ msgstr "Beszállító neve" msgid "Customer ID" msgstr "Vevő ID" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "Beépítve ebbe" @@ -8783,7 +9153,7 @@ msgstr "Felülvizsgálat szükséges" msgid "Delete on Deplete" msgstr "Törlés ha kimerül" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8801,7 +9171,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "Szűrt eredmények tartalmazzák az alhelyeket" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "Szülő hely" @@ -8809,578 +9179,621 @@ msgstr "Szülő hely" msgid "Filter by parent location" msgstr "Szülő helyre szűrés" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "Külső hely" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "Alkatrész fa" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "Lejárat előtt" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "Lejárat után" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "Állott" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "Mennyiség megadása kötelező" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "Egy érvényes alkatrészt meg kell adni" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "A megadott beszállítói alkatrész nem létezik" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "A beszállítói alkatrészhez van megadva csomagolási mennyiség, de a use_pack_size flag nincs beállítva" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "Sorozatszámot nem lehet megadni nem követésre kötelezett alkatrész esetén" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "Készlethely típus" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "Készlethely típusok" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "Alapértelmezett ikon azokhoz a helyekhez, melyeknek nincs ikonja beállítva (válaszható)" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "Készlet hely" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "Készlethelyek" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "Tulajdonos" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "Tulajdonos kiválasztása" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "A szerkezeti raktári helyekre nem lehet direktben raktározni, csak az al-helyekre." -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "Külső" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "Ez egy külső készlethely" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "Helyszín típusa" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "Tárolóhely típus" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "Nem lehet ezt a raktári helyet szerkezetivé tenni, mert már vannak itt tételek!" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "A szerkezeti raktári helyre nem lehet készletet felvenni!" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "Virtuális alkatrészből nem lehet készletet létrehozni" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "A beszállítói alkatrész típusa ('{self.supplier_part.part}') mindenképpen {self.part} kellene, hogy legyen" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "Mennyiség 1 kell legyen a sorozatszámmal rendelkező tételnél" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "Nem lehet sorozatszámot megadni ha a mennyiség több mint egy" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "A tétel nem tartozhat saját magához" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "A tételnek kell legyen gyártási azonosítója ha az is_bulding igaz" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "Gyártási azonosító nem ugyanarra az alkatrész objektumra mutat" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "Szülő készlet tétel" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "Kiindulási alkatrész" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "Válassz egy egyező beszállítói alkatrészt ehhez a készlet tételhez" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "Hol található ez az alkatrész?" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "A csomagolása ennek a készlet tételnek itt van tárolva" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "Ez a tétel be van építve egy másik tételbe?" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "Sorozatszám ehhez a tételhez" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "Batch kód ehhez a készlet tételhez" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "Készlet mennyiség" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "Forrás gyártás" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "Gyártás ehhez a készlet tételhez" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "Felhasználva ebben" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "Felhasználva ebben a gyártásban" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "Forrás beszerzési rendelés" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "Beszerzés ehhez a készlet tételhez" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "Cél vevői rendelés" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "Készlet tétel lejárati dátuma. A készlet lejártnak tekinthető ezután a dátum után" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "Törlés ha kimerül" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "Készlet tétel törlése ha kimerül" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "Egy egység beszerzési ára a beszerzés időpontjában" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "Alkatrésszé alakítva" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "Az alkatrész nem követésre kötelezett" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "Mennyiség egész szám kell legyen" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "A mennyiség nem haladhatja meg az elérhető készletet ({self.quantity})" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "A sorozatszám egész számok listája kell legyen" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "A mennyiség nem egyezik a megadott sorozatszámok számával" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "A sorozatszámok már léteznek" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "Ez a Teszt sablon nem létezik" -#: stock/models.py:1634 +#: stock/models.py:1635 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:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "Készlet tétel beépül egy másikba" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "A készlet tétel más tételeket tartalmaz" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "Készlet tétel hozzárendelve egy vevőhöz" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "Készlet tétel gyártás alatt" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "Követésre kötelezett készlet nem vonható össze" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "Duplikált készlet tételek vannak" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "A készlet tétel ugyanarra az alkatrészre kell vonatkozzon" -#: stock/models.py:1669 +#: stock/models.py:1670 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:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "Készlet tételek állapotainak egyeznie kell" -#: stock/models.py:1901 +#: stock/models.py:1936 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:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "Bejegyzés megjegyzései" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "Ehhez a teszthez meg kell adni értéket" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "Ehhez a teszthez fel kell tölteni mellékletet" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "Teszt eredménye" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "Teszt kimeneti értéke" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "Teszt eredmény melléklet" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "Tesztek megjegyzései" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "Teszt állomás" -#: stock/models.py:2440 +#: stock/models.py:2485 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:2446 +#: stock/models.py:2491 msgid "Started" msgstr "Elkezdődött" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "A teszt indításának időpontja" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "Befejezve" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "A teszt befejezésének időpontja" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "Az eredmény Teszt sablonja" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "Sablon azonosító vagy Teszt név szükséges" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "A tesztet nem lehet a kezdésnél hamarabb befejezni" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "Szériaszám túl nagy" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "Szülő tétel" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "Csomagolási mennyiség használata: a megadott mennyiség ennyi csomag" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "Lefoglalt mennyiség" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "Lejárt" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "Gyermek tételek" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "Készlet tétel beszerzési ára, per darab vagy csomag" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "Add meg hány készlet tételt lássunk el sorozatszámmal" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format 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:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "Írd be a sorozatszámokat az új tételekhez" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "Cél készlet hely" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "Opcionális megjegyzés mező" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "Sorozatszámokat nem lehet hozzárendelni ehhez az alkatrészhez" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "Válaszd ki a beépítésre szánt készlet tételt" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "Beépítendő mennyiség" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "Adja meg a beépítendő mennyiséget" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "Tranzakció megjegyzés hozzáadása (opcionális)" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "A beépítendő mennyiség legalább 1 legyen" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "Készlet tétel nem elérhető" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "A kiválasztott alkatrész nincs az alkatrészjegyzékben" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "A beépítendő mennyiség nem haladhatja meg az elérhető mennyiséget" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "Cél hely a kiszedett tételeknek" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "Válassz alkatrészt amire konvertáljuk a készletet" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "A kiválasztott alkatrész nem megfelelő a konverzióhoz" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "Készlet tétel hozzárendelt beszállítói alkatrésszel nem konvertálható" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "Cél hely a visszatérő tételeknek" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "Válaszd ki a státuszváltásra szánt készlet tételeket" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "Nincs készlet tétel kiválasztva" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Alhelyek" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "Felsőbb szintű készlet hely" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "Az alkatrésznek értékesíthetőnek kell lennie" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "A tétel egy vevő rendeléshez foglalt" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "A tétel egy gyártási utasításhoz foglalt" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "Vevő akihez rendeljük a készlet tételeket" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "A kiválasztott cég nem egy vevő" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "Készlet hozzárendelés megjegyzései" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "A készlet tételek listáját meg kell adni" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "Készlet összevonás megjegyzései" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "Nem egyező beszállítók megengedése" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "Különböző beszállítói alkatrészekből származó készletek összevonásának engedélyezése" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "Nem egyező állapotok megjelenítése" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "Különböző állapotú készletek összevonásának engedélyezése" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "Legalább két készlet tételt meg kell adni" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "Nincs változás" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "Készlet tétel elsődleges kulcs értéke" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "Készlet tétel státusz kódja" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "Készlet tranzakció megjegyzései" @@ -9649,10 +10062,6 @@ msgstr "Készlet tétel törlése" msgid "Build" msgstr "Gyártás" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "Szülő tétel" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "Nincs beállítva gyártó" @@ -9728,11 +10137,6 @@ msgstr "Ez a készlet tétel nem felelt meg az összes szükséges teszten" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "Ez a készlet tétel lejárt %(item.expiry_date)s-n" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "Lejárt" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9880,10 +10284,6 @@ msgstr "Készlettörténet" msgid "Allocations" msgstr "Foglalások" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "Gyermek tételek" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "Hozzáférés megtagadva" @@ -10358,8 +10758,8 @@ msgstr "Árfolyam" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Törlés" @@ -10399,12 +10799,12 @@ msgid "No category parameter templates found" msgstr "Nincs kategória paraméter sablon" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "Sablon szerkesztése" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "Sablon törlése" @@ -10517,18 +10917,6 @@ msgstr "Fiókbeállítások" msgid "Change Password" msgstr "Jelszó módosítása" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "Felhasználónév" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "Keresztnév" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "Vezetéknév" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "A következő email címek vannak hozzárendelve a felhasználódhoz:" @@ -11049,7 +11437,7 @@ msgid "The following parts are low on required stock" msgstr "A következő alkatrészek szükséges készlete alacsony" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "Szükséges mennyiség" @@ -11063,15 +11451,15 @@ msgid "Click on the following link to view this part" msgstr "Klikk a következő linkre az alkatrész megjelenítéséhez" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "Minimum mennyiség" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "Nincs válasz" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "Nincs válasz az InvenTree kiszolgálótól" @@ -11083,27 +11471,27 @@ msgstr "Error 400: Rossz kérelem" msgid "API request returned error code 400" msgstr "Az API kérelem 400-as hibakódot adott vissza" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "Error 401: Nincs hitelesítve" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "Hitelesítési adatok nem lettek megadva" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "Error 403: Hozzáférés megtagadva" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "Nincs meg a szükséges jogosultságod, hogy elérd ezt a funkciót" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "Error 404: Erőforrás nem található" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "A kért erőforrás nem található a kiszolgálón" @@ -11115,11 +11503,11 @@ msgstr "Error 405: Metódus nincs engedélyezve" msgid "HTTP method not allowed at URL" msgstr "HTTP metódus nincs engedélyezve ezen az URL-n" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "Error 408: Időtúllépés" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "Időtúllépés a kiszolgálótól való adatlekérés közben" @@ -11204,7 +11592,7 @@ msgid "Unknown response from server" msgstr "Ismeretlen válasz a kiszolgálótól" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "Érvénytelen válasz a szervertől" @@ -11299,8 +11687,8 @@ msgid "Row Data" msgstr "Sor adat" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11418,7 +11806,7 @@ msgstr "Alkatrészjegyzék betöltése az al-gyártmányhoz" msgid "Substitutes Available" msgstr "Vannak helyettesítők" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "Készletváltozatok engedélyezve" @@ -11438,30 +11826,30 @@ msgstr "Alkatrészjegyzék árazása nem teljes" msgid "No pricing available" msgstr "Nincsenek árak" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "Külső raktárkészlet" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "Nincs szabad" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "Változatokkal és helyettesítőkkel együtt" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "Változatokkal együtt" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "Helyettesítőkkel együtt" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "Fogyóeszköz tétel" @@ -11493,7 +11881,7 @@ msgstr "Alkatrészjegyzék megtekintése" msgid "No BOM items found" msgstr "Nem találhatók alkatrészjegyzék tételek" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "Szükséges alkatrész" @@ -11662,10 +12050,6 @@ msgstr "Gyártási kimenetek törlése" msgid "No build order allocations found" msgstr "Nincs gyártási utasításhoz történő foglalás" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "Lefoglalt mennyiség" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "Hely nincs megadva" @@ -11777,9 +12161,9 @@ msgstr "Készlet tételek foglalása" msgid "No builds matching query" msgstr "Nincs a lekérdezéssel egyező gyártási utasítás" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "Kiválaszt" @@ -11810,59 +12194,59 @@ msgstr "Foglalás szerkesztése" msgid "Remove Allocation" msgstr "Foglalás törlése" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "gyártás sor" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "gyártás sorok" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "Nincsenek gyártási sorok" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "Követésre kötelezett alkatrész" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "Mennyiségi egység" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "Van elegendő" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "Fogyóeszköz tétel" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "Követett tétel" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "Egyedileg nyilvántartott tételek lefoglalása egyedi gyártási kimenetekhez" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "Gyártási készlet" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "Készlet rendelés" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "Lefoglalt készlet" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "Készlet foglalások törlése" @@ -12009,7 +12393,7 @@ msgid "Delete Parameters" msgstr "Paraméterek törlése" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "Alkatrész rendelés" @@ -12026,34 +12410,34 @@ msgid "No manufacturer parts found" msgstr "Nincs gyártói alkatrész" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "Sablon alkatrész" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "Gyártmány alkatrész" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "Nem található paraméter" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "Paraméter szerkesztése" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "Paraméter törlése" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "Paraméter szerkesztése" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "Paraméter törlése" @@ -12227,74 +12611,74 @@ msgstr "Hamis" msgid "No parts required for builds" msgstr "Nem szükséges alkatrész a gyártáshoz" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "Tételek kiválasztása" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "Nincs tétel kiválasztva a nyomtatáshoz" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "Címkék nyomtatónak elküldve" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "Mégsem" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "Küldés" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "Form megnevezése" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "Várakozás a kiszolgálóra..." -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "Hibainformációk megjelenítése" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "Elfogadás" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "Adatok betöltése" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "Rossz válasz a kiszolgálótól" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "Űrlap adat hiányzik a kiszolgálótól kapott válaszban" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "Form adat küldési hiba" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "JSON válasz hiányzó form adatok" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "Error 400: Rossz kérelem" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "A kiszolgáló 400-as hibakódot adott vissza" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "Form adat lekérése sikertelen" @@ -12304,7 +12688,7 @@ msgstr "Nem találhatók hírek" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "Azonosító" @@ -12385,343 +12769,343 @@ msgstr "Alkatrész másolási opciók" msgid "Add Part Category" msgstr "Alkatrész kategória hozzáadása" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "Ikon (opcionális) - Az összes ikon felfedezése itt" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "Alkatrész kategória létrehozása" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "Új kategória létrehozása ez után" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "Alkatrész kategória létrehozva" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "Alkatrész kategória szerkesztése" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "Biztos hogy törölni szeretnéd ezt az alkatrész kategóriát?" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "Áthelyezés fentebbi kategóriába" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "Alkatrész kategória törlése" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "A kategóriában lévő alkatrészek kezelése" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "Alkategóriák kezelése" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "Alkatrész létrehozása" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "Új alkatrész létrehozása ez után" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "Alkatrész sikeresen létrehozva" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "Alkatrész szerkesztése" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "Alkatrész módosítva" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "Alkatrész változat létrehozása" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "Aktív alkatrész" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "Alkatrész nem törölhető mivel még aktív" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "Ezen alkatrész törlése nem vonható vissza" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "Ennek az alkatrésznek a teljes készlete törölve lesz" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "Ez az alkatrész minden alkatrészjegyzékből törölve lesz" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "Ehhez az alkatrészhez rendelt minden beszállítói és gyártói információ törölve lesz" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "Alkatrész törlése" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "Értesítések beállítva erre a tételre" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "Értesítések beállítva erre a tételre" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "Értesítések kérése erre a tételre" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "Értesítések letiltva erre a tételre" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "Az alkatrészjegyzék jóváhagyása minden sortételt jóvá fog hagyni" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "Alkatrészjegyzék jóváhagyása" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "Alkatrészjegyzék jóvá lett hagyva" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "Alkatrészjegyzék másolása" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "Alacsony készlet" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "Nincs elérhető készlet" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "Igény" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "Me" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "Virtuális alkatrész" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "Értesítésre beállított alkatrész" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "Értékesíthető alkatrész" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "Új leltár riport ütemezése." -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "Amint elkészül, az új leltár riport letölthető lesz." -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "Leltár riport létrehozása" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "Leltár riport beütemezve" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "Nincs elérhető leltár előzmény" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "Leltár bejegyzés szerkesztése" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "Leltár bejegyzés törlése" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "Nincs több változat" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "Nincs alkatrész paraméter sablon" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "Alkatrész paraméter sablon módosítása" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "Az összes erre a sablonra hivatkozó paraméter is törlésre kerül" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "Alkatrész paraméter sablon törlése" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "Nem található beszerzési rendelés" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "Ez a sortétel késésben van" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "Sortétel bevételezése" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "Alkatrész kapcsolatok törlése" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "Alkatrész kapcsolatok törlése" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "Nincs alkatrész" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "Kategória beállítása a kiválasztott alkatrészekhez" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "Alkatrész kategória beállítása" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "Kategória beállítása" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "alkatrész" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "alkatrészek" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "Nincs kategória" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "Megjelenítés listaként" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "Megjelenítés rácsnézetként" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "Nem találhatóak alkategóriák" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "Megjelenítés fában" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "Alkategóriák betöltése" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "Értesítésre beállított kategória" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "Nincs a lekérdezéssel egyező teszt sablon" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "találat" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "Teszt eredmény szerkesztése" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "Teszt eredmény törlése" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "Ez a teszt a szülő alkatrészhez lett felvéve" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "Teszt eredmény sablon szerkesztése" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "Teszt eredmény sablon törlése" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "Nincs megadva dátum" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "A megadott dátum a múltban van" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "Spekulatív" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "Az alkatrészhez nem áll rendelkezésre ütemezési információ" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "Hiba az alkatrész ütemezési információinak betöltésekor" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "Ütemezett készlet mennyiség" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "Maximum mennyiség" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "Minimális készlet" @@ -13497,7 +13881,7 @@ msgstr "Kivesz" msgid "Add Stock" msgstr "Készlet növelése" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "Hozzáad" @@ -13851,7 +14235,7 @@ msgid "Include subcategories" msgstr "Alkategóriákkal együtt" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "Értesítés beállítva" @@ -14006,40 +14390,44 @@ msgstr "Alkategóriákkal együtt" msgid "Show active parts" msgstr "Aktív alkatrészek megjelenítése" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "Elérhető" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "Van mértékegysége" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "Az alkatrésznek van megadva mértékegysége" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "Van IPN-je" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "Van belső cikkszáma" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "Készleten" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "Beszerezhető" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "Volt leltár" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "Vannak lehetőségei" @@ -14111,10 +14499,6 @@ msgstr "Lapozó elrejtése/megjelenítése" msgid "Toggle" msgstr "Átváltás" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "Oszlopok" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "Összes" @@ -14388,35 +14772,35 @@ msgstr "Token utolsó használata" msgid "Revoked" msgstr "Visszavonva" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "Jogosultságok" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Csoport" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Nézet" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Jogosultság tételek megtekintéséhez" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Jogosultság tételek hozzáadásához" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Módosítás" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Jogosultság tételek szerkesztéséhez" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Jogosultság tételek törléséhez" diff --git a/src/backend/InvenTree/locale/id/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/id/LC_MESSAGES/django.po index fc03d8d445..5de3f426f0 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:05\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API endpoint tidak ditemukan" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Pengguna tidak memiliki izin untuk melihat model ini" @@ -56,21 +56,21 @@ msgstr "Detail terkait galat dapat dilihat di panel admin" msgid "Enter date" msgstr "Masukkan tanggal" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "Alamat surel utama yang diberikan tidak valid." msgid "The provided email domain is not approved." msgstr "Domain surel yang diberikan tidak perbolehkan." -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Pilihan tidak valid" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Pilihan tidak valid" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Nama" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Nama" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Nama" msgid "Description" msgstr "Keterangan" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Keterangan (opsional)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Direktori" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Data Barcode" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Data barcode pihak ketiga" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Hash unik data barcode" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Sudah ada barcode yang sama" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Terjadi Kesalahan Server" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Sebuah kesalahan telah dicatat oleh server." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Harus berupa angka yang valid" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Mata Uang" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Nilai tidak valid" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "File data" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Pilih file untuk diunggah" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Jenis file tidak didukung" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Ukuran file terlalu besar" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Tidak ditemukan kolom dalam file" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Tidak ditemukan barisan data dalam file" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Tidak ada barisan data tersedia" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Tidak ada kolom data tersedia" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Kolom yang diperlukan kurang: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Kolom duplikat: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URL file gambar external" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Unduhan gambar dari URL external tidak aktif" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "Informasi Sistem" msgid "About InvenTree" msgstr "Tentang InvenTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "Pesanan harus dibatalkan sebelum dapat dihapus" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Order Produksi" msgid "Build Orders" msgstr "Order Produksi" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Pilihan produksi induk tidak valid" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Referensi Order Produksi" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Referensi Order Produksi" msgid "Reference" msgstr "Referensi" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Produksi Induk" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Produksi induk dari produksi ini" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Produksi induk dari produksi ini" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Produksi induk dari produksi ini" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Produksi induk dari produksi ini" msgid "Part" msgstr "Bagian" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Pilih bagian untuk diproduksi" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Referensi Order Penjualan" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Order penjualan yang teralokasikan ke pesanan ini" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Lokasi Sumber" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Lokasi Tujuan" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "Pilih lokasi di mana item selesai akan disimpan" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Jumlah Produksi" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Jumlah item stok yang akan dibuat" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Item selesai" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Jumlah stok item yang telah diselesaikan" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Status pembuatan" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Kode status pembuatan" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Kode Kelompok" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Kode kelompok untuk hasil produksi ini" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Tanggal Pembuatan" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Target tanggal selesai" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Tanggal selesai" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "diselesaikan oleh" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Diserahkan oleh" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Pengguna yang menyerahkan order ini" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Pengguna yang menyerahkan order ini" msgid "Responsible" msgstr "Penanggung Jawab" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Tautan eksternal" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Tautan menuju URL eksternal" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Tidak ada hasil produksi yang ditentukan" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Hasil produksi sudah selesai" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "Hasil produksi tidak sesuai dengan order produksi" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "Jumlah harus lebih besar daripada nol" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "Jumlah" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Item stok teralokasikan terlalu banyak" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Jumlah yang dialokasikan harus lebih dari nol" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Jumlah harus 1 untuk stok dengan nomor seri" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "Stok Item" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Sumber stok item" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Jumlah stok yang dialokasikan ke produksi" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Pasang ke" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Tujuan stok item" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Hasil Produksi" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "Hasil produksi tidak sesuai dengan produksi induk" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "Hasil bagian tidak sesuai dengan bagian dalam order produksi" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Hasil produksi ini sudah diselesaikan" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "Hasil produksi tidak dialokasikan sepenuhnya" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Masukkan jumlah hasil pesanan" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "Jumlah bagian yang dapat dilacak harus berupa angka bulat" -#: build/serializers.py:278 +#: build/serializers.py:282 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:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Nomor Seri" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Masukkan nomor seri untuk hasil pesanan" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Masukkan nomor seri untuk hasil pesanan" msgid "Location" msgstr "Lokasi" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Alokasikan nomor seri secara otomatis" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "Alokasikan item yang diperlukan dengan nomor seri yang sesuai secara otomatis" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "Nomor-nomor seri berikut sudah ada atau tidak valid" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "Daftar hasil pesanan harus disediakan" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "Lokasi hasil pesanan yang selesai" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "Lokasi hasil pesanan yang selesai" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Terima Alokasi Tidak Lengkap" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Terima Tidak Teralokasikan" -#: build/serializers.py:696 +#: build/serializers.py:700 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:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "Stok yang diperlukan belum teralokasikan sepenuhnya" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Terima Tidak Selesai" -#: build/serializers.py:712 +#: build/serializers.py:716 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:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "Jumlah produksi yang diperlukan masih belum cukup" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "Order memiliki hasil produksi yang belum dilengkapi" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Hasil produksi" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "Hasil pesanan harus mengarah ke pesanan yang sama" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 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:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "Item harus tersedia dalam stok" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Jumlah tersedia ({q}) terlampaui" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "Hasil produksi harus ditentukan untuk mengalokasikan bagian yang terlacak" -#: build/serializers.py:913 +#: build/serializers.py:917 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:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "Item yang dialokasikan harus disediakan" -#: build/serializers.py:1000 +#: build/serializers.py:1004 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:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Lokasi tidak termasuk" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "Jangan ambil stok item dari lokasi yang dipilih" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "Stok bergantian" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Item stok di beberapa lokasi dapat digunakan secara bergantian" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Stok pengganti" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "Izinkan alokasi bagian pengganti" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "Item tagihan material" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Produksi" msgid "Cancelled" msgstr "Dibatalkan" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" -msgstr "Surel diperlukan" - -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" -msgstr "" +msgid "Email required" +msgstr "Surel diperlukan" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Pengguna" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "Tautan" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Lampiran" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "File tidak ditemukan" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Tautan eksternal tidak ditemukan" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Pilih file untuk dilampirkan" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Komentar" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Nama File" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "Diletakkan" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Dikirim" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "Lampiran perlu diunggah untuk tes ini" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "Produksi" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "Alamat surel berikut dikaitkan dengan akun Anda:" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/it/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/it/LC_MESSAGES/django.po index 513926b497..2cc5501b2e 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "Endpoint API non trovato" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "L'utente non ha i permessi per vedere questo modello" @@ -56,21 +56,21 @@ msgstr "I dettagli dell'errore possono essere trovati nel pannello di amministra msgid "Enter date" msgstr "Inserisci la data" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "La registrazione è disabilitata." @@ -348,8 +348,8 @@ msgstr "Cinese (Tradizionale)" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Metadati Plugin" msgid "JSON metadata field, for use by external plugins" msgstr "Campo di metadati JSON, da utilizzare con plugin esterni" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Schema formattato impropriamente" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Formato chiave sconosciuta" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Formato chiave mancante" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Il campo di riferimento non può essere vuoto" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Il campo deve corrispondere al modello richiesto" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Numero di riferimento troppo grande" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Nomi duplicati non possono esistere sotto lo stesso genitore" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Scelta non valida" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Scelta non valida" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Nome" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Nome" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Nome" msgid "Description" msgstr "Descrizione" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Descrizione (opzionale)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Percorso" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Note di Markdown (opzionale)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Dati del Codice a Barre" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Dati Codice a Barre applicazioni di terze parti" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Codice a Barre" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Codice univoco del codice a barre" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Trovato codice a barre esistente" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Errore del server" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Un errore è stato loggato dal server." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Deve essere un numero valido" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Valuta" msgid "Select currency from available options" msgstr "Selezionare la valuta dalle opzioni disponibili" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "Nome utente" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "Nome" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "Cognome" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Attivo" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Non hai i permessi per cambiare il ruolo dell'utente." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Solo i superutenti possono creare nuovi utenti" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Valore non valido" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "File dati" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Seleziona un file per il caricamento" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Formato file non supportato" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "File troppo grande" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Nessun colonna trovata nel file" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Nessuna riga di dati trovata nel file" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Nessun dato fornito" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Nessuna colonna di dati fornita" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Colonna richiesta mancante: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Colonna duplicata: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Immagine Remota" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URL del file immagine remota" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Il download delle immagini da URL remoto non è abilitato" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Controllo in background non riuscito" @@ -654,47 +711,48 @@ msgstr "Informazioni sistema" msgid "About InvenTree" msgstr "Informazioni Su InvenTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "La produzione deve essere annullata prima di poter essere eliminata" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Consumabile" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Opzionale" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Monitorato" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Allocato" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Disponibile" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Ordine di Produzione" msgid "Build Orders" msgstr "Ordini di Produzione" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Scelta non valida per la produzione genitore" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "L'ordine di costruzione della parte non può essere cambiata" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Riferimento Ordine Di Produzione" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Riferimento Ordine Di Produzione" msgid "Reference" msgstr "Riferimento" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Breve descrizione della build (facoltativo)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Produzione Genitore" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Ordine di produzione a cui questa produzione viene assegnata" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Ordine di produzione a cui questa produzione viene assegnata" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Ordine di produzione a cui questa produzione viene assegnata" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Ordine di produzione a cui questa produzione viene assegnata" msgid "Part" msgstr "Articolo" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Selezionare parte da produrre" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Numero di riferimento ordine di vendita" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Ordine di vendita a cui questa produzione viene assegnata" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Posizione Di Origine" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Posizione Della Destinazione" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "Seleziona il luogo in cui gli articoli completati saranno immagazzinati" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Quantità Produzione" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Numero di articoli da costruire" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Articoli completati" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Numero di articoli di magazzino che sono stati completati" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Stato Produzione" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Codice stato di produzione" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Codice Lotto" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Codice del lotto per questa produzione" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Data di creazione" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Data completamento obiettivo" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Data di completamento" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "Completato da" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Rilasciato da" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Utente che ha emesso questo ordine di costruzione" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Utente che ha emesso questo ordine di costruzione" msgid "Responsible" msgstr "Responsabile" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "Utente o gruppo responsabile di questo ordine di produzione" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Collegamento esterno" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Link a URL esterno" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Priorità di produzione" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Priorità di questo ordine di produzione" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Priorità di questo ordine di produzione" msgid "Project Code" msgstr "Codice del progetto" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Codice del progetto per questo ordine di produzione" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "L'ordine di produzione {build} è stato completato" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "L'ordine di produzione è stato completato" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Nessun output di produzione specificato" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "La produzione è stata completata" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "L'output della produzione non corrisponde all'ordine di compilazione" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "La quantità deve essere maggiore di zero" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "La quantità non può essere maggiore della quantità in uscita" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Crea oggetto" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Crea oggetto" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Crea oggetto" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Crea oggetto" msgid "Quantity" msgstr "Quantità" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Quantità richiesta per l'ordine di costruzione" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "L'articolo in giacenza è sovrallocato" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "La quantità di assegnazione deve essere maggiore di zero" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "La quantità deve essere 1 per lo stock serializzato" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "L'articolo in stock selezionato non corrisponde alla voce nella BOM" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "L'articolo in stock selezionato non corrisponde alla voce nella BOM" msgid "Stock Item" msgstr "Articoli in magazzino" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Origine giacenza articolo" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Quantità di magazzino da assegnare per la produzione" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Installa in" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Destinazione articolo in giacenza" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "Nome Articolo" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Genera Output" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "L'output generato non corrisponde alla produzione principale" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "L'output non corrisponde alle parti dell'ordine di produzione" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Questa produzione è stata già completata" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "Questo output non è stato completamente assegnato" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Inserisci la quantità per l'output di compilazione" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "Quantità totale richiesta per articoli rintracciabili" -#: build/serializers.py:278 +#: build/serializers.py:282 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:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Codice Seriale" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Inserisci i numeri di serie per gli output di compilazione (build option)" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Inserisci i numeri di serie per gli output di compilazione (build option msgid "Location" msgstr "Posizione" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Numeri di Serie Assegnazione automatica" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "Assegna automaticamente gli articoli richiesti con i numeri di serie corrispondenti" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 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:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "Deve essere fornito un elenco dei risultati di produzione" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "Posizione per gli output di build completati" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "Posizione per gli output di build completati" msgid "Status" msgstr "Stato" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Accetta Assegnazione Incompleta" -#: build/serializers.py:526 +#: build/serializers.py:530 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:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "Rimuovi Output Incompleti" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "Elimina gli output di produzione che non sono stati completati" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Non permesso" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Accetta come consumato da questo ordine di produzione" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "Non assegnare prima di aver completato questo ordine di produzione" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Giacenza in eccesso assegnata" -#: build/serializers.py:680 +#: build/serializers.py:684 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:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "Alcuni articoli di magazzino sono stati assegnati in eccedenza" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Accetta Non Assegnato" -#: build/serializers.py:696 +#: build/serializers.py:700 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:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "La giacenza richiesta non è stata completamente assegnata" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Accetta Incompleta" -#: build/serializers.py:712 +#: build/serializers.py:716 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:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "La quantità di produzione richiesta non è stata completata" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "L'ordine di produzione ha output incompleti" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Linea di produzione" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Genera Output" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "L'output di produzione deve puntare alla stessa produzione" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "Articolo linea di produzione" -#: build/serializers.py:837 +#: build/serializers.py:841 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:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "L'articolo deve essere disponibile" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Quantità disponibile ({q}) superata" -#: build/serializers.py:906 +#: build/serializers.py:910 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:913 +#: build/serializers.py:917 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:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "Deve essere indicata l'allocazione dell'articolo" -#: build/serializers.py:1000 +#: build/serializers.py:1004 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:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Escludi Ubicazione" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "Escludi gli elementi stock da questa ubicazione selezionata" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "Scorte Intercambiabili" -#: build/serializers.py:1015 +#: build/serializers.py:1019 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:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Sostituisci Giacenze" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "Consenti l'allocazione delle parti sostitutive" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "Articoli Opzionali" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "Assegna gli elementi opzionali della distinta base all'ordine di produzione" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Codice articolo produttore" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "Nome Ubicazione" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "IPN Articolo" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Tracciabile" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "Distinta base (Bom)" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "Ordinato" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "Disponibilità in magazzino" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Produzione" msgid "Cancelled" msgstr "Annullato" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "Lo stock non è stato completamente assegnato a questo ordine di produzi #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "Outputs Completati" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Risorse di magazzino" msgid "Stock can be taken from any available location." msgstr "Lo stock può essere prelevato da qualsiasi posizione disponibile." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Destinazione" @@ -1827,31 +1956,31 @@ msgstr "Dettagli Ordine di Produzione" msgid "Incomplete Outputs" msgstr "Output Incompleti" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "Orario dell'ultimo aggiornamento" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Codice unico del progetto" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Descrizione del progetto" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "Tasto impostazioni (deve essere univoco - maiuscole e minuscole)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "Valore impostazioni" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "Il valore specificato non è un opzione valida" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "Il valore deve essere un valore booleano" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "Il valore deve essere un intero" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "La stringa chiave deve essere univoca" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Nessun gruppo" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Riavvio richiesto" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "È stata modificata un'impostazione che richiede un riavvio del server" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "Nome Istanza Del Server" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "Descrittore stringa per l'istanza del server" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "Utilizza nome istanza" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "Usa il nome dell'istanza nella barra del titolo" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "Limita visualizzazione `Informazioni`" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "Mostra la modalità `Informazioni` solo ai superusers" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Nome azienda" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Nome interno dell'azienda" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "URL Base" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "URL di base per l'istanza del server" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Valuta predefinita" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "giorni" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Scarica dall'URL" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Consenti il download di immagini e file remoti da URL esterno" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "Limite Dimensione Download" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "Dimensione massima consentita per il download dell'immagine remota" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "User-agent utilizzato per scaricare dall'URL" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "Consenti di sovrascrivere l'user-agent utilizzato per scaricare immagini e file da URL esterno (lasciare vuoto per il predefinito)" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Richiesta conferma" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Richiede una conferma esplicita dell'utente per una determinata azione." -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "Profondità livelli" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "Profondità predefinita per la visualizzazione ad albero. I livelli più in alto possono essere caricati più lentamente quando necessari." -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "Aggiorna intervallo di controllo" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "Quanto spesso controllare gli aggiornamenti (impostare a zero per disabilitare)" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Backup automatico" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Abilita il backup automatico di database e file multimediali" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Intervallo Di Backup Automatico" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "Definisci i giorni intercorrenti tra un backup automatico e l'altro" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "I risultati delle attività in background verranno eliminati dopo un determinato numero di giorni" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "I log di errore verranno eliminati dopo il numero specificato di giorni" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "Le notifiche dell'utente verranno eliminate dopo il numero di giorni specificato" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Supporto Codice A Barre" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "Codice a barre inserito scaduto" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "Tempo di ritardo di elaborazione codice a barre" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "Codice a Barre Supporto Webcam" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "Consenti la scansione del codice a barre tramite webcam nel browser" -#: common/models.py:1395 +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 msgid "Part Revisions" msgstr "" -#: common/models.py:1396 +#: common/models.py:1407 msgid "Enable revision field for Part" msgstr "Abilita il campo revisione per l'articolo" -#: common/models.py:1401 +#: common/models.py:1412 msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1402 +#: common/models.py:1413 msgid "Allow deletion of parts which are used in an assembly" msgstr "" -#: common/models.py:1407 +#: common/models.py:1418 msgid "IPN Regex" msgstr "" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "Schema di espressione regolare per l'articolo corrispondente IPN" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Consenti duplicati IPN" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "Permetti a più articoli di condividere lo stesso IPN" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "Permetti modifiche al part number interno (IPN)" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "Consenti di modificare il valore del part number durante la modifica di un articolo" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "Copia I Dati Della distinta base dell'articolo" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "Copia i dati della Distinta Base predefinita quando duplichi un articolo" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "Copia I Dati Parametro dell'articolo" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "Copia i dati dei parametri di default quando si duplica un articolo" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "Copia I Dati dell'Articolo Test" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "Copia i dati di prova di default quando si duplica un articolo" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "Copia Template Parametri Categoria" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "Copia i modelli dei parametri categoria quando si crea un articolo" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Modello" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "Gli articoli sono modelli per impostazione predefinita" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Assemblaggio" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "Gli articoli possono essere assemblate da altri componenti per impostazione predefinita" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Componente" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "Gli articoli possono essere assemblati da altri componenti per impostazione predefinita" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Acquistabile" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "Gli articoli sono acquistabili per impostazione predefinita" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Vendibile" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Gli articoli sono acquistabili per impostazione predefinita" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Tracciabile" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "Gli articoli sono tracciabili per impostazione predefinita" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Virtuale" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Gli articoli sono virtuali per impostazione predefinita" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "Mostra l'importazione nelle viste" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "Mostra la procedura guidata di importazione in alcune viste articoli" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Mostra articoli correlati" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "Visualizza parti correlate per ogni articolo" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "Dati iniziali dello stock" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "Consentire la creazione di uno stock iniziale quando si aggiunge una nuova parte" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Dati iniziali del fornitore" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "Consentire la creazione dei dati iniziali del fornitore quando si aggiunge una nuova parte" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "Formato di visualizzazione del nome articolo" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "Formato per visualizzare il nome dell'articolo" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "Icona predefinita Categoria Articolo" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "Icona predefinita Categoria Articolo (vuoto significa nessuna icona)" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "Usa Prezzi Fornitore" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Includere le discontinuità di prezzo del fornitore nei calcoli generali dei prezzi" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "Ignora la Cronologia Acquisti" -#: common/models.py:1571 +#: common/models.py:1582 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/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "Utilizzare i prezzi degli articoli in stock" -#: common/models.py:1579 +#: common/models.py:1590 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/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "Età dei prezzi degli articoli in stock" -#: common/models.py:1587 +#: common/models.py:1598 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/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "Utilizza Variazione di Prezzo" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "Includi la variante dei prezzi nei calcoli dei prezzi complessivi" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "Solo Varianti Attive" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "Utilizza solo articoli di varianti attive per calcolare i prezzi delle varianti" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "Numero di giorni prima che il prezzo dell'articolo venga aggiornato automaticamente" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Prezzi interni" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "Abilita prezzi interni per gli articoli" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "Sovrascrivi Prezzo Interno" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "Se disponibile, i prezzi interni sostituiscono i calcoli della fascia di prezzo" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Abilita stampa etichette" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "Abilita la stampa di etichette dall'interfaccia web" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "Etichetta Immagine DPI" -#: common/models.py:1639 +#: common/models.py:1650 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/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Abilita Report di Stampa" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "Abilita generazione di report di stampa" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Modalità Debug" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "Genera report in modalità debug (output HTML)" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Dimensioni pagina" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Dimensione predefinita della pagina per i report PDF" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "Abilita Rapporto di Prova" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "Abilita generazione di stampe di prova" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "Allega Rapporto di Prova" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Quando si stampa un rapporto di prova, allegare una copia del rapporto di prova all'elemento di magazzino associato" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "Seriali Unici Globali" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "I numeri di serie per gli articoli di magazzino devono essere univoci" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "Auto Riempimento Numeri Seriali" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "Auto riempimento numeri nel modulo" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "Elimina scorte esaurite" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "Modello Codice a Barre" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "Modello per la generazione di codici batch predefiniti per gli elementi stock" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "Scadenza giacenza" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "Abilita funzionalità di scadenza della giacenza" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "Vendi giacenza scaduta" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "Consenti la vendita di stock scaduti" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "Tempo di Scorta del Magazzino" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "Numero di giorni in cui gli articoli in magazzino sono considerati obsoleti prima della scadenza" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "Crea giacenza scaduta" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "Permetti produzione con stock scaduto" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "Controllo della proprietà della giacenza" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "Abilita il controllo della proprietà sulle posizioni e gli oggetti in giacenza" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "Icona Predefinita Ubicazione di Magazzino" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "Icona Predefinita Ubicazione di Magazzino (vuoto significa nessuna icona)" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "Modello Di Riferimento Ordine Di Produzione" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "Modello richiesto per generare il campo di riferimento ordine di produzione" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "Modello Di Riferimento Ordine Di Vendita" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "Modello richiesto per generare il campo di riferimento ordine di vendita" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "Spedizione Predefinita Ordine Di Vendita" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "Abilita la creazione di spedizioni predefinite con ordini di vendita" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "Modifica Ordini Di Vendita Completati" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "Consenti la modifica degli ordini di vendita dopo che sono stati spediti o completati" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "Modello di Riferimento Ordine D'Acquisto" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "Modello richiesto per generare il campo di riferimento ordine di acquisto" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "Modifica Ordini Di Acquisto Completati" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "Consenti la modifica degli ordini di acquisto dopo che sono stati spediti o completati" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "Abilita password dimenticata" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "Abilita la funzione password dimenticata nelle pagine di accesso" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Abilita registrazione" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "Abilita auto-registrazione per gli utenti nelle pagine di accesso" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "SSO abilitato" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "Abilita SSO nelle pagine di accesso" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "Abilita registrazione SSO" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Abilita l'auto-registrazione tramite SSO per gli utenti nelle pagine di accesso" -#: common/models.py:1913 -msgid "Email required" -msgstr "Email richiesta" - -#: common/models.py:1914 -msgid "Require user to supply mail on signup" -msgstr "Richiedi all'utente di fornire una email al momento dell'iscrizione" - -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "Riempimento automatico degli utenti SSO" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "Compila automaticamente i dettagli dell'utente dai dati dell'account SSO" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "Posta due volte" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "Al momento della registrazione chiedere due volte all'utente l'indirizzo di posta elettronica" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "Password due volte" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "Al momento della registrazione chiedere agli utenti due volte l'inserimento della password" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "Domini consentiti" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1947 -msgid "Group on signup" -msgstr "Gruppo iscrizione" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "Gruppo a cui i nuovi utenti vengono assegnati al momento della registrazione" - -#: common/models.py:1953 -msgid "Enforce MFA" -msgstr "Applica MFA" +#: common/models.py:1952 +msgid "SSO group key" +msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." -msgstr "Gli utenti devono utilizzare la sicurezza a due fattori." +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" -msgstr "Controlla i plugin all'avvio" +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" -msgstr "Controlla che tutti i plugin siano installati all'avvio - abilita in ambienti contenitore" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 +msgid "Email required" +msgstr "Email richiesta" + +#: common/models.py:1977 +msgid "Require user to supply mail on signup" +msgstr "Richiedi all'utente di fornire una email al momento dell'iscrizione" + +#: common/models.py:1982 +msgid "Auto-fill SSO users" +msgstr "Riempimento automatico degli utenti SSO" + +#: common/models.py:1984 +msgid "Automatically fill out user-details from SSO account-data" +msgstr "Compila automaticamente i dettagli dell'utente dai dati dell'account SSO" + +#: common/models.py:1990 +msgid "Mail twice" +msgstr "Posta due volte" + +#: common/models.py:1991 +msgid "On signup ask users twice for their mail" +msgstr "Al momento della registrazione chiedere due volte all'utente l'indirizzo di posta elettronica" + +#: common/models.py:1996 +msgid "Password twice" +msgstr "Password due volte" + +#: common/models.py:1997 +msgid "On signup ask users twice for their password" +msgstr "Al momento della registrazione chiedere agli utenti due volte l'inserimento della password" + +#: common/models.py:2002 +msgid "Allowed domains" +msgstr "Domini consentiti" + +#: common/models.py:2004 +msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgstr "" + +#: common/models.py:2010 +msgid "Group on signup" +msgstr "Gruppo iscrizione" + +#: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" + +#: common/models.py:2018 +msgid "Enforce MFA" +msgstr "Applica MFA" + +#: common/models.py:2019 +msgid "Users must use multifactor security." +msgstr "Gli utenti devono utilizzare la sicurezza a due fattori." + +#: common/models.py:2024 +msgid "Check plugins on startup" +msgstr "Controlla i plugin all'avvio" + +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "Controlla che tutti i plugin siano installati all'avvio - abilita in ambienti contenitore" + +#: common/models.py:2034 +msgid "Check for plugin updates" +msgstr "" + +#: common/models.py:2035 +msgid "Enable periodic checks for updates to installed plugins" +msgstr "" + +#: common/models.py:2041 msgid "Enable URL integration" msgstr "Abilita l'integrazione URL" -#: common/models.py:1977 +#: common/models.py:2042 msgid "Enable plugins to add URL routes" msgstr "Attiva plugin per aggiungere percorsi URL" -#: common/models.py:1983 +#: common/models.py:2048 msgid "Enable navigation integration" msgstr "Attiva integrazione navigazione" -#: common/models.py:1984 +#: common/models.py:2049 msgid "Enable plugins to integrate into navigation" msgstr "Abilita i plugin per l'integrazione nella navigazione" -#: common/models.py:1990 +#: common/models.py:2055 msgid "Enable app integration" msgstr "Abilita l'app integrata" -#: common/models.py:1991 +#: common/models.py:2056 msgid "Enable plugins to add apps" msgstr "Abilita plugin per aggiungere applicazioni" -#: common/models.py:1997 +#: common/models.py:2062 msgid "Enable schedule integration" msgstr "Abilita integrazione pianificazione" -#: common/models.py:1998 +#: common/models.py:2063 msgid "Enable plugins to run scheduled tasks" msgstr "Abilita i plugin per eseguire le attività pianificate" -#: common/models.py:2004 +#: common/models.py:2069 msgid "Enable event integration" msgstr "Abilita eventi integrati" -#: common/models.py:2005 +#: common/models.py:2070 msgid "Enable plugins to respond to internal events" msgstr "Abilita plugin per rispondere agli eventi interni" -#: common/models.py:2011 +#: common/models.py:2076 msgid "Enable project codes" msgstr "" -#: common/models.py:2012 +#: common/models.py:2077 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:2017 +#: common/models.py:2082 msgid "Stocktake Functionality" msgstr "Funzionalità Dell'Inventario" -#: common/models.py:2019 +#: common/models.py:2084 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Abilita la funzionalità d'inventario per la registrazione dei livelli di magazzino e il calcolo del valore di magazzino" -#: common/models.py:2025 +#: common/models.py:2090 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2027 +#: common/models.py:2092 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2033 +#: common/models.py:2098 msgid "Automatic Stocktake Period" msgstr "Inventario periodico automatico" -#: common/models.py:2035 +#: common/models.py:2100 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Numero di giorni tra la registrazione automatica dell'inventario (imposta 0 per disabilitare)" -#: common/models.py:2041 +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "I rapporti d'inventario verranno eliminati dopo il numero specificato di giorni" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "Tasto impostazioni (deve essere univoco - maiuscole e minuscole" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "Nascondi Articoli Inattivi" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "Mostra articoli sottoscritti" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "Mostra gli articoli sottoscritti nella homepage" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "Mostra le categorie sottoscritte" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "Mostra le categorie dei componenti sottoscritti nella homepage" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "Mostra ultimi articoli" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "Mostra gli ultimi articoli sulla homepage" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "Mostra le distinte base che attendono la convalida sulla homepage" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "Mostra le modifiche recenti alle giacenze" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "Mostra le giacenze modificate di recente nella homepage" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "Mostra disponibilità scarsa delle giacenze" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "Mostra disponibilità scarsa degli articoli sulla homepage" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "Mostra scorte esaurite" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "Mostra disponibilità scarsa delle scorte degli articoli sulla homepage" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "Mostra scorte necessarie" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "Mostra le scorte degli articoli necessari per la produzione sulla homepage" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "Mostra scorte esaurite" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "Mostra gli articoli stock scaduti nella home page" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "Mostra scorte obsolete" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "Mostra gli elementi obsoleti esistenti sulla home page" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "Mostra produzioni in attesa" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "Mostra produzioni in attesa sulla homepage" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "Mostra produzioni in ritardo" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "Mostra produzioni in ritardo sulla home page" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "Mostra ordini di produzione inevasi" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "Mostra ordini di produzione inevasi sulla home page" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "Mostra Ordini di Produzione in ritardo" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "Mostra Ordini di Produzione in ritardo sulla home page" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "Mostra Ordini di Vendita inevasi" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "Mostra Ordini di Vendita inevasi sulla home page" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "Mostra Ordini di Vendita in ritardo" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "Mostra Ordini di Vendita in ritardo sulla home page" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "Mostra Notizie" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "Mostra notizie sulla home page" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "Visualizzazione dell'etichetta in linea" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Visualizza le etichette PDF nel browser, invece di scaricare come file" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "Stampante per etichette predefinita" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "Configura quale stampante di etichette deve essere selezionata per impostazione predefinita" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "Visualizzazione dell'etichetta in linea" -#: common/models.py:2246 +#: common/models.py:2311 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/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "Cerca Articoli" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "Mostra articoli della ricerca nella finestra di anteprima" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2259 +#: common/models.py:2324 msgid "Display supplier parts in search preview window" msgstr "Mostra articoli del fornitore nella finestra di anteprima" -#: common/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "Cerca Articoli Produttore" -#: common/models.py:2265 +#: common/models.py:2330 msgid "Display manufacturer parts in search preview window" msgstr "Mostra articoli del produttore nella finestra di anteprima" -#: common/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "Nascondi Articoli Inattivi" -#: common/models.py:2271 +#: common/models.py:2336 msgid "Excluded inactive parts from search preview window" msgstr "Escludi articoli inattivi dalla finestra di anteprima della ricerca" -#: common/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "Cerca Categorie" -#: common/models.py:2277 +#: common/models.py:2342 msgid "Display part categories in search preview window" msgstr "Mostra categorie articolo nella finestra di anteprima di ricerca" -#: common/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "Cerca Giacenze" -#: common/models.py:2283 +#: common/models.py:2348 msgid "Display stock items in search preview window" msgstr "Mostra articoli in giacenza nella finestra di anteprima della ricerca" -#: common/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "Nascondi elementi non disponibili" -#: common/models.py:2290 +#: common/models.py:2355 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/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "Cerca Ubicazioni" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "Mostra ubicazioni delle giacenze nella finestra di anteprima di ricerca" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "Cerca Aziende" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "Mostra le aziende nella finestra di anteprima di ricerca" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "Cerca Ordini Di Produzione" -#: common/models.py:2309 +#: common/models.py:2374 msgid "Display build orders in search preview window" msgstr "Mostra gli ordini di produzione nella finestra di anteprima di ricerca" -#: common/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "Cerca Ordini di Acquisto" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "Mostra gli ordini di acquisto nella finestra di anteprima di ricerca" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "Escludi Ordini D'Acquisto Inattivi" -#: common/models.py:2322 +#: common/models.py:2387 msgid "Exclude inactive purchase orders from search preview window" msgstr "Escludi ordini di acquisto inattivi dalla finestra di anteprima di ricerca" -#: common/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "Cerca Ordini Di Vendita" -#: common/models.py:2329 +#: common/models.py:2394 msgid "Display sales orders in search preview window" msgstr "Visualizzazione degli ordini di vendita nella finestra di anteprima della ricerca" -#: common/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "Escludi Ordini Di Vendita Inattivi" -#: common/models.py:2336 +#: common/models.py:2401 msgid "Exclude inactive sales orders from search preview window" msgstr "Escludi ordini di vendita inattivi dalla finestra di anteprima di ricerca" -#: common/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "Cerca Ordini Di Reso" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2350 +#: common/models.py:2415 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "Risultati Dell'Anteprima Di Ricerca" -#: common/models.py:2358 +#: common/models.py:2423 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/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "Ricerca con regex" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "Mostra quantità nei moduli" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "Visualizzare la quantità di pezzi disponibili in alcuni moduli" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "Il tasto Esc chiude i moduli" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "Utilizzare il tasto Esc per chiudere i moduli modali" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "Barra di navigazione fissa" -#: common/models.py:2389 +#: common/models.py:2454 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/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "Formato Data" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "Formato predefinito per visualizzare le date" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Programmazione Prodotto" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "Mostra informazioni sulla pianificazione del prodotto" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventario Prodotto" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Visualizza le informazioni d'inventario dell'articolo (se la funzionalità d'inventario è abilitata)" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "Lunghezza Stringa Tabella" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Utente" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "Quantità prezzo limite" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Prezzo" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "Prezzo unitario in quantità specificata" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "Scadenza" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "Scadenza in cui questa notifica viene ricevuta" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "Nome per questa notifica" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Attivo" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "È questa notifica attiva" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "Token per l'accesso" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "Segreto" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "Segreto condiviso per HMAC" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "ID Messaggio" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "Identificatore unico per questo messaggio" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "Host da cui questo messaggio è stato ricevuto" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "Intestazione" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "Intestazione di questo messaggio" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "Contenuto" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "Contenuto di questo messaggio" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "Scadenza in cui questo messaggio è stato ricevuto" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "Lavorato il" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "Il lavoro su questo messaggio è terminato?" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Titolo" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "Titolo" msgid "Link" msgstr "Collegamento" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "Pubblicato" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Autore" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "Riepilogo" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "Letto" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "Queste notizie sull'elemento sono state lette?" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "Queste notizie sull'elemento sono state lette?" msgid "Image" msgstr "Immagine" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "File immagine" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Allegato" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "File mancante" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Link esterno mancante" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Seleziona file da allegare" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Commento" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "Elemento ricevuto" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "Errore generato dal plugin" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Nome del file" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "Articoli importati" msgid "Previous Step" msgstr "Passaggio Precedente" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Azienda" @@ -3843,8 +3993,9 @@ msgstr "Numero di telefono di contatto" msgid "Contact email address" msgstr "Indirizzo email" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" -msgstr "è un cliente" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "Vendi oggetti a questa azienda?" #: company/models.py:174 -msgid "is supplier" -msgstr "è un fornitore" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "Acquistate articoli da questa azienda?" #: company/models.py:180 -msgid "is manufacturer" -msgstr "è un produttore" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "Questa azienda produce articoli?" msgid "Default currency used for this company" msgstr "Valuta predefinita utilizzata per questa azienda" -#: company/models.py:366 -msgid "Select company" -msgstr "" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Indirizzo" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "Codice articolo produttore" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Articolo di base" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "Seleziona articolo" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Produttore" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Seleziona Produttore" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "Codice articolo produttore (MPN)" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Codice articolo produttore" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "URL dell'articolo del fornitore" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "Descrizione articolo costruttore" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Nome parametro" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Valore" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Valore del parametro" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "Unità" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "Unità parametri" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "Articolo Fornitore" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "L'articolo del costruttore collegato deve riferirsi alla stesso articolo" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Fornitore" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Seleziona fornitore" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "Unità di giacenza magazzino fornitore" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "Selezionare un produttore" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "URL dell'articolo del fornitore" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "Descrizione articolo fornitore" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Nota" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "costo base" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "Onere minimo (ad esempio tassa di stoccaggio)" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "Confezionamento" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "Imballaggio del pezzo" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "Imballaggio del pezzo" msgid "Pack Quantity" msgstr "Quantità Confezione" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "multiplo" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "Ordine multiplo" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "Quantità disponibile dal fornitore" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "Disponibilità Aggiornata" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "Data dell’ultimo aggiornamento dei dati sulla disponibilità" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "Valuta predefinita utilizzata per questo fornitore" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "In magazzino" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "Inattivo" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "Elimina immagine" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Cliente" @@ -4278,13 +4448,6 @@ msgstr "Cliente" msgid "Uses default currency" msgstr "Valuta predefinita" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Indirizzo" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Telefono" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "Cancella articolo produttore" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "Articolo interno" @@ -4474,7 +4638,7 @@ msgstr "Nessuna informazione sul produttore disponibile" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "Nuovo Parametro" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "Elementi in Giacenza Impegnati" msgid "Contacts" msgstr "Contatti" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "Elimina Articolo Fornitore" msgid "No supplier information available" msgstr "Nessuna informazione sul fornitore disponibile" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Nuova Azienda" msgid "Placed" msgstr "Inviato" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "Dati" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "Valido" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "Sconosciuto" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "Prezzo Totale" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "Stato dell'ordine" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "Nessun ordine di acquisto corrispondente trovato" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "Ordine" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "Ordine D'Acquisto" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "Restituisci ordine" msgid "Total price for this order" msgstr "Prezzo totale dell'ordine" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "Descrizione dell'ordine (opzionale)" msgid "Select project code for this order" msgstr "Seleziona il codice del progetto per questo ordine" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "Collegamento a un sito web esterno" @@ -4895,15 +5207,15 @@ msgstr "Codice di riferimento ordine fornitore" msgid "received by" msgstr "ricevuto da" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "Data di emissione" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "Data di emissione ordine" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "Data ordine completato" @@ -4919,15 +5231,15 @@ msgstr "La quantità deve essere un numero positivo" msgid "Company to which the items are being sold" msgstr "Azienda da cui sono stati ordinati gli elementi" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "Riferimento Cliente " -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "Codice di riferimento Ordine del Cliente" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "Contesto aggiuntivo per questa voce" msgid "Unit price" msgstr "Prezzo unitario" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "L'articolo del fornitore deve corrispondere al fornitore" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "eliminato" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "Articolo Fornitore" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "Articolo Fornitore" msgid "Received" msgstr "Ricevuto" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "Numero di elementi ricevuti" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "Prezzo di Acquisto" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "Prezzo di acquisto unitario" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "Dove l'Acquirente desidera che questo elemento venga immagazzinato?" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "Un articolo virtuale non può essere assegnato ad un ordine di vendita" -#: order/models.py:1543 +#: order/models.py:1558 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:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "Prezzo di Vendita" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "Prezzo unitario di vendita" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Spedito" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "Quantità spedita" -#: order/models.py:1672 +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "Data di spedizione" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "Verificato Da" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "Utente che ha controllato questa spedizione" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "Spedizione" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "Numero di spedizione" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "Numero di monitoraggio" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "Informazioni di monitoraggio della spedizione" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "Numero Fattura" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "Numero di riferimento per la fattura associata" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "La spedizione è già stata spedita" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "La spedizione non ha articoli di stock assegnati" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "L'elemento di magazzino non è stato assegnato" -#: order/models.py:1863 +#: order/models.py:1889 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:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "Impossibile allocare stock a una riga senza un articolo" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "La quantità di ripartizione non puo' superare la disponibilità della giacenza" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "La quantità deve essere 1 per l'elemento serializzato" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "L'ordine di vendita non corrisponde alla spedizione" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "La spedizione non corrisponde all'ordine di vendita" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "Linea" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "Riferimento della spedizione ordine di vendita" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "Elemento" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "Seleziona elemento stock da allocare" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "Inserisci la quantità assegnata alla giacenza" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "Seleziona l'elemento da restituire dal cliente" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "Data di ricezione" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "Risultati" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "Elementi Riga" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "L'ordine non può essere cancellato" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "Consenti di chiudere l'ordine con elementi di riga incompleti" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "L'ordine ha elementi di riga incompleti" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "L'ordine non è aperto" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "Valuta prezzo d'acquisto" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "Numero Dell'articolo Interno" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "L'articolo del fornitore deve essere specificato" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "L'ordine di acquisto deve essere specificato" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "Il fornitore deve essere abbinato all'ordine d'acquisto" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "L'ordine di acquisto deve essere abbinato al fornitore" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "Elemento Riga" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "L'elemento di riga non corrisponde all'ordine di acquisto" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "Seleziona la posizione di destinazione per gli elementi ricevuti" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "Inserisci il codice univoco per gli articoli in arrivo" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "Inserisci i numeri di serie per gli articoli stock in arrivo" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Codice a Barre" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "Codice a barre scansionato" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "Il codice a barre è già in uso" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "Deve essere fornita una quantità intera per gli articoli rintracciabili" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "Gli elementi di linea devono essere forniti" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "La destinazione deve essere specificata" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "I valori dei codici a barre forniti devono essere univoci" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "Valuta prezzo di vendita" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "Nessun dettaglio di spedizione fornito" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "L'elemento di riga non è associato a questo ordine" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "La quantità deve essere positiva" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "Inserisci i numeri di serie da assegnare" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "La spedizione è già stata spedita" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "La spedizione non è associata con questo ordine" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "Nessuna corrispondenza trovata per i seguenti numeri di serie" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "I seguenti numeri di serie sono già assegnati" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "Riferimento Cliente" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "Aggiornato {part} prezzo unitario a {price}" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "Aggiornato {part} unità prezzo a {price} e quantità a {qty}" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "Codice Articolo" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "Nome Articolo" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "Descrizione Articolo" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "IPN - Numero di riferimento interno" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "Revisione" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Parole Chiave" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "Id Categoria" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "Nome Categoria" @@ -5843,11 +6191,11 @@ msgstr "Posizione Predefinita ID" msgid "Default Supplier ID" msgstr "ID Fornitore Predefinito" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "Variante Di" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "Scorta Minima" @@ -5855,18 +6203,19 @@ msgstr "Scorta Minima" msgid "Used In" msgstr "Utilizzato In" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "In Costruzione" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "Costo Minimo" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "Costo Massimo" @@ -5883,14 +6232,14 @@ msgstr "Nome Principale" msgid "Category Path" msgstr "Percorso Categoria" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Articoli" @@ -5907,125 +6256,117 @@ msgstr "ID Elemento Distinta Base" msgid "Parent IPN" msgstr "IPN Principale" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "IPN Articolo" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "Prezzo Minimo" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "Prezzo Massimo" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "Ordine D'Acquisto In Arrivo" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "Ordine di Vendita in Uscita" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "Giacenza prodotta dall'Ordine di Costruzione" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "Giacenza richiesta per l'Ordine di Produzione" -#: part/api.py:881 -msgid "Valid" -msgstr "Valido" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "Convalida l'intera Fattura dei Materiali" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "Questa opzione deve essere selezionata" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "Categoria" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "Posizione Predefinita" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "Giacenze Totali" @@ -6034,7 +6375,7 @@ msgstr "Giacenze Totali" msgid "Input quantity for price calculation" msgstr "Digita la quantità per il calcolo del prezzo" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Categoria Articoli" @@ -6049,7 +6390,7 @@ msgstr "Categorie Articolo" msgid "Default location for parts in this category" msgstr "Posizione predefinita per gli articoli di questa categoria" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "Keywords predefinite" msgid "Default keywords for parts in this category" msgstr "Parole chiave predefinite per gli articoli in questa categoria" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "Icona" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "Icona (facoltativa)" @@ -6081,1002 +6422,1035 @@ msgstr "Icona (facoltativa)" 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:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "Scelta non valida per l'articolo principale" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "Esiste già un elemento stock con questo numero seriale" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "Non è consentito duplicare IPN nelle impostazioni dell'articolo" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "Un articolo con questo Nome, IPN e Revisione esiste già." -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "Gli articoli non possono essere assegnati a categorie articolo principali!" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Nome articolo" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "È Template" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "Quest'articolo è un articolo di template?" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "Questa parte è una variante di un altro articolo?" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "Parole chiave per migliorare la visibilità nei risultati di ricerca" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "Categoria articolo" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "Numero Dell'articolo Interno" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "Numero di revisione o di versione" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "Dove viene normalmente immagazzinato questo articolo?" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "Fornitore predefinito" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "Articolo fornitore predefinito" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "Scadenza Predefinita" -#: part/models.py:1028 +#: part/models.py:1032 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:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "Livello minimo di giacenza consentito" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "Unita di misura per questo articolo" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "Questo articolo può essere costruito da altri articoli?" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "Questo articolo può essere utilizzato per costruire altri articoli?" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "Questo articolo ha il tracciamento per gli elementi unici?" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "Quest'articolo può essere acquistato da fornitori esterni?" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "Questo pezzo può essere venduto ai clienti?" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "Quest'articolo è attivo?" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 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:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "Somma di controllo Distinta Base" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "Somma di controllo immagazzinata Distinta Base" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "Distinta Base controllata da" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "Data di verifica Distinta Base" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "Creazione Utente" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "Ultimo Inventario" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "Vendita multipla" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "Valuta utilizzata per calcolare i prezzi" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "Costo Minimo Distinta Base" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "Costo minimo dei componenti dell'articolo" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "Costo Massimo Distinta Base" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "Costo massimo dei componenti dell'articolo" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "Importo Acquisto Minimo" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "Costo minimo di acquisto storico" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "Importo massimo acquisto" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "Costo massimo di acquisto storico" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "Prezzo Interno Minimo" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "Costo minimo basato su interruzioni di prezzo interne" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "Prezzo Interno Massimo" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "Costo massimo basato su interruzioni di prezzo interne" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "Prezzo Minimo Fornitore" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "Prezzo minimo articolo da fornitori esterni" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "Prezzo Massimo Fornitore" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "Prezzo massimo dell'articolo proveniente da fornitori esterni" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "Variazione di costo minimo" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "Costo minimo calcolato di variazione dell'articolo" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "Massima variazione di costo" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "Costo massimo calcolato di variazione dell'articolo" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "Costo minimo totale calcolato" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "Costo massimo totale calcolato" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "Prezzo Di Vendita Minimo" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "Prezzo minimo di vendita basato sulle interruzioni di prezzo" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "Prezzo Di Vendita Massimo" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "Prezzo massimo di vendita basato sulle interruzioni di prezzo" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "Costo Di Vendita Minimo" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "Prezzo storico minimo di vendita" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "Costo Di Vendita Minimo" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "Prezzo storico massimo di vendita" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "Articolo per l'inventario" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "Contatore Elemento" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "Numero di scorte individuali al momento dell'inventario" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "Totale delle scorte disponibili al momento dell'inventario" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "Data" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "Data in cui è stato effettuato l'inventario" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "Note aggiuntive" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "Utente che ha eseguito questo inventario" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "Costo Minimo Scorta" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "Costo minimo stimato di magazzino a disposizione" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "Costo Massimo Scorte" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "Costo massimo stimato di magazzino a disposizione" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "File Report Inventario (generato internamente)" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "Conteggio Articolo" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "Numero di articoli oggetto d'inventario" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "Utente che ha richiesto questo report inventario" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "Il modello di prova può essere creato solo per gli articoli rintracciabili" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "Nome Test" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "Inserisci un nome per la prova" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "Descrizione Di Prova" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "Inserisci descrizione per questa prova" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Abilitato" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "Richiesto" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "Questa prova è necessaria per passare?" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "Valore richiesto" -#: part/models.py:3515 +#: part/models.py:3531 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:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "Allegato Richiesto" -#: part/models.py:3522 +#: part/models.py:3538 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:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "Il nome del modello del parametro deve essere univoco" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "Nome Parametro" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "Descrizione del parametro" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "Articolo principale" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Modello Parametro" -#: part/models.py:3801 -msgid "Data" -msgstr "Dati" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "Valore del Parametro" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Valore Predefinito" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "Valore Parametro Predefinito" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "ID articolo o nome articolo" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "Valore ID articolo univoco" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "Valore IPN articolo" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "Livello" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "Livello distinta base" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "Seleziona articolo principale" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "Articolo subordinato" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "Seleziona l'articolo da utilizzare nella Distinta Base" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "Quantità Distinta Base per questo elemento Distinta Base" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "Questo elemento della Distinta Base è opzionale" -#: part/models.py:4071 +#: part/models.py:4156 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:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Eccedenza" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Quantità stimata scarti di produzione (assoluta o percentuale)" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "Riferimento Elemento Distinta Base" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "Note Elemento Distinta Base" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "Codice di controllo" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "Codice di controllo Distinta Base" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "Convalidato" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 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:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "Consenti Le Varianti" -#: part/models.py:4119 +#: part/models.py:4204 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:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "La quantità deve essere un valore intero per gli articoli rintracciabili" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "L'articolo subordinato deve essere specificato" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "Elemento Distinta Base Sostituito" -#: part/models.py:4375 +#: part/models.py:4460 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:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "Elemento principale Distinta Base" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "Sostituisci l'Articolo" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "Articolo 1" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "Articolo 2" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "Seleziona Prodotto Relativo" -#: part/models.py:4440 +#: part/models.py:4525 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:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "La relazione duplicata esiste già" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Sottocategorie" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "Valuta di acquisto di questo articolo in stock" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "Articolo Originale" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "Seleziona l'articolo originale da duplicare" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "Copia immagine" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "Copia immagine dall'articolo originale" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Copia Distinta Base" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "Copia fattura dei materiali dall'articolo originale" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "Copia parametri" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "Copia i dati dei parametri dall'articolo originale" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "Quantità iniziale" -#: part/serializers.py:485 +#: part/serializers.py:503 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:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "Ubicazione Iniziale Magazzino" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "Specificare l'ubicazione iniziale del magazzino per questo Articolo" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "Seleziona il fornitore (o lascia vuoto per saltare)" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "Seleziona il produttore (o lascia vuoto per saltare)" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "Codice articolo Produttore" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "L'azienda selezionata non è un fornitore valido" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "L'azienda selezionata non è un produttore valido" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "L'articolo del produttore che corrisponde a questo MPN esiste già" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "L'articolo del fornitore che corrisponde a questo SKU esiste già" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "Duplica articolo" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "Copia i dati iniziali da un altro Articolo" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Stock iniziale" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "Crea Articolo con quantità di scorta iniziale" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "Informazioni Fornitore" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "Aggiungi le informazioni iniziali del fornitore per questo articolo" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "Copia Parametri Categoria" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "Copia i parametri dai modelli della categoria articolo selezionata" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "Limitare il report d'inventario ad un articolo particolare e a eventuali articoli varianti" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "Limita il report d'inventario ad una particolare categoria articolo, e a eventuali categorie secondarie" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "Limita il report d'inventario ad una particolare ubicazione di magazzino, e a eventuali ubicazioni secondarie" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "Genera Report" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "Genera file di report contenente dati di inventario calcolati" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "Aggiorna Articoli" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "Aggiorna gli articoli specificati con i dati calcolati di inventario" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "La funzione Inventario non è abilitata" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "Aggiorna" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "Aggiorna i prezzi per questo articolo" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "Seleziona l'articolo da cui copiare la distinta base" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "Rimuovi Dati Esistenti" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "Rimuovi elementi distinta base esistenti prima di copiare" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "Includi Ereditato" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "Includi gli elementi Distinta Base ereditati da prodotti template" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "Salta Righe Non Valide" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "Abilita questa opzione per saltare le righe non valide" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "Copia Articoli sostitutivi" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "Copia articoli sostitutivi quando duplichi gli elementi distinta base" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "Cancella Distinta Base esistente" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "Rimuovi elementi distinta base esistenti prima del caricamento" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "Nessuna colonna articolo specificata" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "Trovati più articoli corrispondenti" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "Nessun articolo corrispondente trovato" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "L'articolo non è indicato come componente" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "Quantità non fornita" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "Quantità non valida" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "Almeno un elemento della distinta base è richiesto" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "Quantità Totale" @@ -7394,7 +7768,7 @@ msgstr "Sottoscrivi le notifiche per questo articolo" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "Stampa Etichetta" @@ -7416,7 +7790,7 @@ msgstr "Conta articoli magazzino" msgid "Transfer part stock" msgstr "Trasferisci giacenza" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "Azioni articolo" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "Livello minimo di giacenza" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "Varianti" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "Magazzino" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "Nessuna giacenza" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "Scorte insufficienti disponibili" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "Stampa etichetta fallita" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "Totale" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "Risultati Test" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "Risultato" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "Nessun risultato" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "Elementi installati" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "ID Posizione" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "Nome Ubicazione" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "Nome Fornitore" msgid "Customer ID" msgstr "ID Cliente" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "Installato In" @@ -8782,7 +9152,7 @@ msgstr "Revisione Necessaria" msgid "Delete on Deplete" msgstr "Elimina al esaurimento" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "Ubicazione Esterna" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "Obsoleto" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "La quantità è richiesta" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "Deve essere fornita un articolo valido" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "I numeri di serie non possono essere forniti per un articolo non tracciabile" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "Ubicazione magazzino" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "Posizioni magazzino" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "Proprietario" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "Seleziona Owner" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "Gli elementi di magazzino non possono essere direttamente situati in un magazzino strutturale, ma possono essere situati in ubicazioni secondarie." -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "Esterno" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "Si tratta di una posizione esterna al magazzino" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "Non puoi rendere strutturale questa posizione di magazzino perché alcuni elementi di magazzino sono già posizionati al suo interno!" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "Gli articoli di magazzino non possono essere ubicati in posizioni di magazzino strutturali!" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "Non è possibile creare un elemento di magazzino per articoli virtuali" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "La quantità deve essere 1 per elementi con un numero di serie" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "Il numero di serie non può essere impostato se la quantità è maggiore di 1" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "L'elemento non può appartenere a se stesso" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "L'elemento deve avere un riferimento di costruzione se is_building=True" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "Il riferimento di costruzione non punta allo stesso oggetto dell'articolo" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "Elemento di magazzino principale" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "Articolo base" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "Seleziona un fornitore articolo corrispondente per questo elemento di magazzino" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "Dove si trova questo articolo di magazzino?" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "Imballaggio di questo articolo di magazzino è collocato in" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "Questo elemento è stato installato su un altro elemento?" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "Numero di serie per questo elemento" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "Codice lotto per questo elemento di magazzino" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "Quantità disponibile" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "Genera Costruzione" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "Costruisci per questo elemento di magazzino" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "Origina Ordine di Acquisto" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "Ordine d'acquisto per questo articolo in magazzino" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "Destinazione Ordine di Vendita" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "Data di scadenza per l'elemento di magazzino. Le scorte saranno considerate scadute dopo questa data" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "Elimina al esaurimento" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "Cancella questo Elemento di Magazzino quando la giacenza è esaurita" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "Prezzo di acquisto unitario al momento dell’acquisto" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "Convertito in articolo" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "L'articolo non è impostato come tracciabile" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "La quantità deve essere un numero intero" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "I numeri di serie devono essere numeri interi" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "La quantità non corrisponde ai numeri di serie" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "Numeri di serie già esistenti" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 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:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "L'elemento di magazzino è installato in un altro elemento" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "L'elemento di magazzino contiene altri elementi" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "L'elemento di magazzino è stato assegnato a un cliente" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "L'elemento di magazzino è attualmente in produzione" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "Il magazzino serializzato non può essere unito" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "Duplica elementi di magazzino" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "Gli elementi di magazzino devono riferirsi allo stesso articolo" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "Gli elementi di magazzino devono riferirsi allo stesso articolo fornitore" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "I codici di stato dello stock devono corrispondere" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "Le giacenze non possono essere spostate perché non disponibili" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "Note d'ingresso" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "Il valore deve essere fornito per questo test" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "L'allegato deve essere caricato per questo test" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "Risultato Test" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "Test valore output" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "Risultato della prova allegato" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "Note del test" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "Il numero di serie è troppo grande" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "Elemento principale" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "Scaduto" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "Elementi secondari" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "Inserisci il numero di elementi di magazzino da serializzare" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "La quantità non deve superare la quantità disponibile ({q})" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "Inserisci i numeri di serie per i nuovi elementi" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "Posizione magazzino di destinazione" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "Note opzionali elemento" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "Numeri di serie non possono essere assegnati a questo articolo" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "Seleziona elementi di magazzino da installare" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "Aggiungi nota di transazione (opzionale)" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "Elemento di magazzino non disponibile" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "L'articolo selezionato non è nella Fattura dei Materiali" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "Posizione di destinazione per gli elementi disinstallati" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "Seleziona l'articolo in cui convertire l'elemento di magazzino" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "L'articolo selezionato non è una valida opzione per la conversione" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "Posizione di destinazione per l'elemento restituito" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Sottoallocazioni" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "L'articolo deve essere vendibile" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "L'elemento è assegnato a un ordine di vendita" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "Elemento assegnato a un ordine di costruzione" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "Cliente a cui assegnare elementi di magazzino" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "L'azienda selezionata non è un cliente" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "Note sull'assegnazione delle scorte" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "Deve essere fornito un elenco degli elementi di magazzino" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "Note di fusione di magazzino" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "Consenti fornitori non corrispondenti" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "Consenti di unire gli elementi di magazzino che hanno fornitori diversi" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "Consenti stato non corrispondente" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "Consenti di unire gli elementi di magazzino con diversi codici di stato" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "Devono essere riforniti almeno due elementi in magazzino" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "Valore di chiave primaria StockItem" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "Note sugli spostamenti di magazzino" @@ -9648,10 +10061,6 @@ msgstr "Cancella elemento di magazzino" msgid "Build" msgstr "Produzione" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "Elemento principale" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "Nessun produttore impostato" @@ -9727,11 +10136,6 @@ msgstr "Questo elemento di magazzino non ha superato i test richiesti" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "Questo Elemento Stock è scaduto il %(item.expiry_date)s" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "Scaduto" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "Rilevamento Stock" msgid "Allocations" msgstr "Assegnazioni" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "Elementi secondari" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "Permesso negato" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Elimina" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "Impostazioni Account" msgid "Change Password" msgstr "Modifica Password" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "Nome utente" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "Nome" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "Cognome" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "I seguenti indirizzi email sono associati con il tuo account:" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "I seguenti articoli sono pochi nel magazzino richiesto" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "Quantità richiesta" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "Clicca il seguente link per visualizzare questo articolo" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "Quantità minima" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "Invia" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "Aggiungi" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "Impostazione autorizzazioni" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Gruppo" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Visualizza" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Autorizzazione a visualizzare gli articoli" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Autorizzazione ad aggiungere elementi" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Modificare" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Permessi per modificare gli elementi" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Autorizzazione ad eliminare gli elementi" diff --git a/src/backend/InvenTree/locale/ja/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ja/LC_MESSAGES/django.po index dbdd5317f5..7517b9cbac 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "APIエンドポイントが見つかりません" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "ユーザーにこのモデルを表示する権限がありません" @@ -56,21 +56,21 @@ msgstr "エラーの詳細は管理者パネルで確認できます" msgid "Enter date" msgstr "日付を入力する" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "指定されたプライマリEメールアドレスは無効です。" msgid "The provided email domain is not approved." msgstr "指定されたメールドメインは承認されていません。" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "プラグインメタデータ" msgid "JSON metadata field, for use by external plugins" msgstr "外部プラグインで使用するためのJSONメタデータフィールド" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "無効な選択です" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "無効な選択です" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "お名前" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "お名前" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "お名前" msgid "Description" msgstr "説明" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "説明 (オプション)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "マークダウンメモ (オプション)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "バーコード情報" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "サードパーティ製バーコードデータ" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "有効な数字でなければなりません" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "通貨" msgid "Select currency from available options" msgstr "利用可能なオプションから通貨を選択してください" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "このユーザのロールを変更する権限がありません" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "無効な値です。" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "データファイル" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "アップロードするファイルを選択" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "サポートされていないファイル形式" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "ファイルサイズが大きすぎます" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "ファイルに列が見つかりません" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "ファイルにデータ行がみつかりません" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "データが入力されていません" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "データ列が指定されていません" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "必須の列がありません: {name}" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "{col} 列が重複しています。" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "外部画像ファイルのURL" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "外部URLからの画像ダウンロードは許可されていません" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "バックグラウンドワーカーのチェックに失敗しました" @@ -654,47 +711,48 @@ msgstr "システム情報" msgid "About InvenTree" msgstr "InvenTree について" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "オプション" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "組立注文" msgid "Build Orders" msgstr "組立注文" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "パーツ" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "組立状況" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "作成日時" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "外部リンク" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "外部 サイト へのリンク" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "組立優先度" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "数量" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "在庫商品" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "シリアル番号" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "ステータス" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "組立ライン" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "追跡可能" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "生産" msgid "Cancelled" msgstr "キャンセル済" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "外部URLからの画像ダウンロードを許可する" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "外部URL画像の最大サイズ" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "テンプレート" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "パーツはデフォルトのテンプレートです" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "アセンブリ" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "パーツはデフォルトで他のコンポーネントから組み立てることができます" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "コンポーネント" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "パーツはデフォルトでサブコンポーネントとして使用できます" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "購入可能" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "パーツはデフォルトで購入可能です" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "販売可能" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "パーツはデフォルトで販売可能です" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "追跡可能" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "パーツはデフォルトで追跡可能です" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "デバッグモード" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "シリアル番号を自動入力" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" -msgstr "メールアドレスは必須です" - -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" -msgstr "" +msgid "Email required" +msgstr "メールアドレスは必須です" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 +msgid "Enable plugins to add apps" +msgstr "" + +#: common/models.py:2062 +msgid "Enable schedule integration" +msgstr "" + +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" +msgstr "" + +#: common/models.py:2069 +msgid "Enable event integration" +msgstr "" + +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" +msgstr "" + +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" +msgstr "" + +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "非アクティブな部品を非表示" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "購読中の部品を表示" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "購読中のカテゴリを表示" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "" -#: common/models.py:2246 +#: common/models.py:2311 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2259 +#: common/models.py:2324 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2265 +#: common/models.py:2330 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2271 +#: common/models.py:2336 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "" -#: common/models.py:2277 +#: common/models.py:2342 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "" -#: common/models.py:2283 +#: common/models.py:2348 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2290 +#: common/models.py:2355 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "" -#: common/models.py:2309 +#: common/models.py:2374 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2322 +#: common/models.py:2387 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2329 +#: common/models.py:2394 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2336 +#: common/models.py:2401 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2350 +#: common/models.py:2415 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "" -#: common/models.py:2358 +#: common/models.py:2423 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2389 +#: common/models.py:2454 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "ユーザー" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "メッセージ ID:" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "リンク" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "添付ファイル" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "ファイルがありません" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "外部リンクが見つかりません。" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "添付ファイルを選択" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "コメント:" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "ファイル名" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "連絡先メールアドレス" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "メーカー・パーツ" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "製造元" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "仕入先" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "顧客" @@ -4278,13 +4448,6 @@ msgstr "顧客" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "メーカー・パーツを削除" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "内部パーツ" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "新規パラメータ" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "設置済" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "外部ページへのリンク" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "購入金額" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "発送済み" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "割り当てるシリアル番号を入力" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "キーワード" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "カテゴリID" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "カテゴリ名" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "パーツ" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "カテゴリ" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "パーツカテゴリ" @@ -6049,7 +6390,7 @@ msgstr "パーツカテゴリ" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "パーツカテゴリ" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "サブカテゴリ" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "カテゴリを選択" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "このパーツの通知を受け取る" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "在庫" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "在庫切れ" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "シリアル番号が既に存在します" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "シリアル番号が大きすぎます" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "期限切れ" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "パーツは販売可能でなければなりません" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "組立" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "期限切れ" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "このパーツを表示するには、次のリンクをクリックしてください" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "最小在庫" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "パーミッション設定" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "グループ" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "表示" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "項目を表示する権限" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "項目を追加する権限" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "変更" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "項目を編集する権限" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "項目を削除する権限" diff --git a/src/backend/InvenTree/locale/ko/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ko/LC_MESSAGES/django.po index 2932296749..4ac93aac38 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -56,21 +56,21 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/lv/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/lv/LC_MESSAGES/django.po index c5268a646a..1f64729506 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:05\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:57\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Language: lv_LV\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API galapunkts nav atrasts" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Lietotājam nav atļaujas, lai apskatītu šo modeli" @@ -56,21 +56,21 @@ msgstr "" msgid "Enter date" msgstr "Ievadiet datumu" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Reģistrācija ir izslēgta." @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/nl/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/nl/LC_MESSAGES/django.po index 35270d08ea..0656e2d101 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API eindpunt niet gevonden" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Gebruiker heeft geen rechten om dit model te bekijken" @@ -56,21 +56,21 @@ msgstr "Error details kunnen worden gevonden in het admin scherm" msgid "Enter date" msgstr "Voer datum in" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Registratie is uitgeschakeld." @@ -348,8 +348,8 @@ msgstr "Chinees (traditioneel)" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "JSON metadata veld, voor gebruik door externe plugins" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Onjuist opgemaakt patroon" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Onbekende opmaaksleutel gespecificeerd" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Vereiste opmaaksleutel ontbreekt" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Referentieveld mag niet leeg zijn" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Referentie moet overeenkomen met verplicht patroon" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Referentienummer is te groot" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Dubbele namen kunnen niet bestaan onder hetzelfde bovenliggende object" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Ongeldige keuze" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Ongeldige keuze" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Naam" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Naam" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Naam" msgid "Description" msgstr "Omschrijving" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Omschrijving (optioneel)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Pad" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Markdown notitie (optioneel)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Streepjescode gegevens" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Streepjescode van derden" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Hash van Streepjescode" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Unieke hash van barcode gegevens" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Bestaande barcode gevonden" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Serverfout" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Er is een fout gelogd door de server." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Moet een geldig nummer zijn" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Valuta" msgid "Select currency from available options" msgstr "Selecteer valuta uit beschikbare opties" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Actief" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Ongeldige waarde" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Data bestand" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Selecteer een bestand om te uploaden" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Niet ondersteund bestandstype" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Bestand is te groot" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Geen kolommen gevonden in het bestand" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Geen data rijen gevonden in dit bestand" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Geen data rijen opgegeven" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Geen gegevenskolommen opgegeven" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Verplichte kolom ontbreekt: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Dubbele kolom: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URL van extern afbeeldingsbestand" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Afbeeldingen van externe URL downloaden is niet ingeschakeld" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Achtergrondwerker check is gefaald" @@ -654,47 +711,48 @@ msgstr "Systeeminformatie" msgid "About InvenTree" msgstr "Over InvenTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "Productie moet geannuleerd worden voordat het kan worden verwijderd" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Verbruiksartikelen" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Optioneel" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Gevolgd" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Toegewezen" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Beschikbaar" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Productieorder" msgid "Build Orders" msgstr "Productieorders" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Ongeldige keuze voor bovenliggende productie" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Productieorderreferentie" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Productieorderreferentie" msgid "Reference" msgstr "Referentie" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Korte beschrijving van de build (optioneel)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Bovenliggende Productie" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Productieorder waar deze productie aan is toegewezen" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Productieorder waar deze productie aan is toegewezen" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Productieorder waar deze productie aan is toegewezen" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Productieorder waar deze productie aan is toegewezen" msgid "Part" msgstr "Onderdeel" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Selecteer onderdeel om te produceren" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Verkooporder Referentie" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Verkooporder waar deze productie aan is toegewezen" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Bronlocatie" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Bestemmings Locatie" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "Selecteer locatie waar de voltooide items zullen worden opgeslagen" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Productiehoeveelheid" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Aantal voorraaditems om te produceren" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Voltooide voorraadartikelen" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Aantal voorraadartikelen die zijn voltooid" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Productiestatus" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Productiestatuscode" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Batchcode" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Batchcode voor deze productieuitvoer" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Aanmaakdatum" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Verwachte opleveringsdatum" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Opleveringsdatum" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "voltooid door" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Uitgegeven door" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Gebruiker die de productieorder heeft gegeven" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Gebruiker die de productieorder heeft gegeven" msgid "Responsible" msgstr "Verantwoordelijke" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "Gebruiker of groep verantwoordelijk voor deze bouwopdracht" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Externe Link" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Link naar externe URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Bouw prioriteit" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Prioriteit van deze bouwopdracht" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Prioriteit van deze bouwopdracht" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Project code voor deze build order" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Productieorder {build} is voltooid" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "Een productieorder is voltooid" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Geen productie uitvoer opgegeven" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Productie uitvoer is al voltooid" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "Productuitvoer komt niet overeen met de Productieorder" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "Hoeveelheid moet groter zijn dan nul" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "Hoeveelheid kan niet groter zijn dan aantal" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Bouw object" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Bouw object" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Bouw object" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Bouw object" msgid "Quantity" msgstr "Hoeveelheid" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Vereiste hoeveelheid voor bouwopdracht" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Voorraad item is te veel toegewezen" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Toewijzing hoeveelheid moet groter zijn dan nul" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Hoeveelheid moet 1 zijn voor geserialiseerde voorraad" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "Geselecteerde voorraadartikelen komen niet overeen met de BOM-regel" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "Geselecteerde voorraadartikelen komen niet overeen met de BOM-regel" msgid "Stock Item" msgstr "Voorraadartikel" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Bron voorraadartikel" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Voorraad hoeveelheid toe te wijzen aan productie" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Installeren in" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Bestemming voorraadartikel" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "Onderdeel naam" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Productieuitvoer" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "Productieuitvoer komt niet overeen met de bovenliggende productie" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "Uitvoeronderdeel komt niet overeen met productieorderonderdeel" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Deze productieuitvoer is al voltooid" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "Deze productieuitvoer is niet volledig toegewezen" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Voer hoeveelheid in voor productie uitvoer" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "Hoeveelheid als geheel getal vereist voor traceerbare onderdelen" -#: build/serializers.py:278 +#: build/serializers.py:282 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:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Serienummers" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Voer serienummers in voor productieuitvoeren" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Voer serienummers in voor productieuitvoeren" msgid "Location" msgstr "Locatie" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Serienummers automatisch toewijzen" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "Vereiste artikelen automatisch toewijzen met overeenkomende serienummers" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "De volgende serienummers bestaan al of zijn ongeldig" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "Een lijst van productieuitvoeren moet worden verstrekt" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "Voorraadlocatie voor geannuleerde outputs" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "Toewijzingen weggooien" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "Verwijder alle voorraadtoewijzingen voor geannuleerde outputs" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "Reden voor annulering van bouworder(s)" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "Locatie van voltooide productieuitvoeren" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "Locatie van voltooide productieuitvoeren" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Incomplete Toewijzing Accepteren" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "Voltooi de uitvoer als de voorraad niet volledig is toegewezen" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "Verwijder Incomplete Uitvoeren" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "Verwijder alle productieuitvoeren die niet zijn voltooid" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Niet toegestaan" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Accepteer zoals geconsumeerd onder deze bouwopdracht" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "De-alloceren voordat deze bouwopdracht voltooid wordt" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Overgealloceerde voorraad" -#: build/serializers.py:680 +#: build/serializers.py:684 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:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "Sommige voorraadartikelen zijn overalloceerd" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Accepteer Niet-toegewezen" -#: build/serializers.py:696 +#: build/serializers.py:700 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:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "Vereiste voorraad is niet volledig toegewezen" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Accepteer Onvolledig" -#: build/serializers.py:712 +#: build/serializers.py:716 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:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "Vereiste productiehoeveelheid is voltooid" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "Productieorder heeft onvolledige uitvoeren" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Productielijn" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Productieuitvoer" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "Productieuitvoer moet naar dezelfde productie wijzen" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "Bouw lijn-item" -#: build/serializers.py:837 +#: build/serializers.py:841 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:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "Artikel moet op voorraad zijn" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Beschikbare hoeveelheid ({q}) overschreden" -#: build/serializers.py:906 +#: build/serializers.py:910 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:913 +#: build/serializers.py:917 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:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "Allocaties voor artikelen moeten worden opgegeven" -#: build/serializers.py:1000 +#: build/serializers.py:1004 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:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Locatie uitsluiten" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "Voorraadartikelen van deze geselecteerde locatie uitsluiten" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "Uitwisselbare voorraad" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Voorraadartikelen op meerdere locaties kunnen uitwisselbaar worden gebruikt" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Vervangende Voorraad" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "Toewijzing van vervangende onderdelen toestaan" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "Optionele Items" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "Alloceer optionele BOM items om bestelling te bouwen" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Fabrikant artikel nummer (MPN)" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Volgbaar" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "Stuklijstartikel" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "In bestelling" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "Beschikbare Voorraad" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Productie" msgid "Cancelled" msgstr "Geannuleerd" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "Voorraad is niet volledig toegewezen aan deze productieorder" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "Voltooide Uitvoeren" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Voorraadbron" msgid "Stock can be taken from any available location." msgstr "Voorraad kan worden genomen van elke beschikbare locatie." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Bestemming" @@ -1827,31 +1956,31 @@ msgstr "Productieorderdetails" msgid "Incomplete Outputs" msgstr "Onvolledige Productieuitvoeren" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "Geen plug-in gevonden" @@ -1905,1591 +2034,1604 @@ msgstr "Tijdstempel van laatste update" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Unieke projectcode" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Projectbeschrijving" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "Instellingssleutel (moet uniek zijn - hoofdletter ongevoelig)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "Instellingswaarde" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "Gekozen waarde is geen geldige optie" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "Waarde moet een booleaanse waarde zijn" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "Waarde moet een geheel getal zijn" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "Sleutelreeks moet uniek zijn" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Geen groep" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Opnieuw opstarten vereist" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "Een instelling is gewijzigd waarvoor een herstart van de server vereist is" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "Migraties in behandeling" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "ID Serverinstantie" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "Stringbeschrijving voor de server instantie" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "Gebruik de instantie naam" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "Gebruik de naam van de instantie in de titelbalk" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "Tonen `over` beperken" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "Toon de `over` modal alleen aan superusers" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Bedrijfsnaam" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Interne bedrijfsnaam" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "Basis-URL" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "Basis URL voor serverinstantie" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Standaard Valuta" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "Selecteer basisvaluta voor de berekening van prijzen" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "dagen" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Download van URL" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Download van afbeeldingen en bestanden vanaf een externe URL toestaan" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "Download limiet" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "Maximale downloadgrootte voor externe afbeelding" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "User-agent gebruikt om te downloaden van URL" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "Sta toe om de user-agent te overschrijven die gebruikt wordt om afbeeldingen en bestanden van externe URL te downloaden (laat leeg voor de standaard)" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Bevestiging vereist" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Vereis expliciete bevestiging van de gebruiker voor bepaalde actie." -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "Boomstructuur Diepte" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "Standaard diepte voor treeview. Diepere niveaus kunnen geladen worden wanneer ze nodig zijn." -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "Interval voor update" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "Hoe vaak te controleren op updates (nul om uit te schakelen)" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Automatische backup" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Automatische back-up van database- en mediabestanden inschakelen" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Automatische backup interval" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "Geef het aantal dagen op tussen geautomatiseerde backup" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "Interval Taak Verwijderen" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "Resultaten van achtergrondtaken worden verwijderd na het opgegeven aantal dagen" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "Error Log Verwijderings Interval" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "Resultaten van achtergrondtaken worden verwijderd na het opgegeven aantal dagen" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "Interval Verwijderen Notificatie" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "Meldingen van gebruikers worden verwijderd na het opgegeven aantal dagen" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Streepjescodeondersteuning" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "Barcode Invoer Vertraging" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "Barcode invoerverwerking vertraging" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "Barcode Webcam Ondersteuning" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "Barcode via webcam scannen in browser toestaan" -#: common/models.py:1395 +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 msgid "Part Revisions" msgstr "Herzieningen onderdeel" -#: common/models.py:1396 +#: common/models.py:1407 msgid "Enable revision field for Part" msgstr "Revisieveld voor onderdeel inschakelen" -#: common/models.py:1401 +#: common/models.py:1412 msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1402 +#: common/models.py:1413 msgid "Allow deletion of parts which are used in an assembly" msgstr "" -#: common/models.py:1407 +#: common/models.py:1418 msgid "IPN Regex" msgstr "" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "Regulier expressiepatroon voor het overeenkomende Onderdeel IPN" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Duplicaat IPN toestaan" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "Toestaan dat meerdere onderdelen dezelfde IPN gebruiken" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "Bewerken IPN toestaan" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "Sta het wijzigen van de IPN toe tijdens het bewerken van een onderdeel" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "Kopieer Onderdeel Stuklijstgegevens" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "Kopieer standaard stuklijstgegevens bij het dupliceren van een onderdeel" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "Kopieer Onderdeel Parametergegevens" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "Parametergegevens standaard kopiëren bij het dupliceren van een onderdeel" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "Kopieer Onderdeel Testdata" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "Testdata standaard kopiëren bij het dupliceren van een onderdeel" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "Kopiëer Categorieparameter Sjablonen" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "Kopieer categorieparameter sjablonen bij het aanmaken van een onderdeel" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Sjabloon" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "Onderdelen zijn standaard sjablonen" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Samenstelling" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "Onderdelen kunnen standaard vanuit andere componenten worden samengesteld" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "Onderdelen kunnen standaard worden gebruikt als subcomponenten" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Koopbaar" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "Onderdelen kunnen standaard gekocht worden" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Verkoopbaar" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Onderdelen kunnen standaard verkocht worden" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Volgbaar" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "Onderdelen kunnen standaard gevolgd worden" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Virtueel" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Onderdelen zijn standaard virtueel" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "Toon Import in Weergaven" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "Toon de importwizard in sommige onderdelenweergaven" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Verwante onderdelen tonen" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "Verwante onderdelen voor een onderdeel tonen" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "Initiële voorraadgegevens" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "Aanmaken van eerste voorraad toestaan bij het toevoegen van een nieuw onderdeel" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Initiële leveranciergegevens" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "Aanmaken van eerste leveranciersgegevens toestaan bij het toevoegen van een nieuw onderdeel" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "Onderdelennaam Weergaveopmaak" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "Opmaak om de onderdeelnaam weer te geven" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "Standaardicoon voor onderdeel catagorie" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "Standaardicoon voor onderdeel catagorie (leeg betekent geen pictogram)" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "Forceer Parameter Eenheden" -#: common/models.py:1529 +#: common/models.py:1540 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/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "Minimaal aantal prijs decimalen" -#: common/models.py:1537 +#: common/models.py:1548 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/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "Maximum prijs decimalen" -#: common/models.py:1550 +#: common/models.py:1561 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/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "Gebruik leveranciersprijzen" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Prijsvoordelen leveranciers opnemen in de totale prijsberekening" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "Aankoopgeschiedenis overschrijven" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Historische order prijzen overschrijven de prijzen van de leverancier" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "Gebruik voorraaditem prijzen" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Gebruik prijzen van handmatig ingevoerde voorraadgegevens voor prijsberekeningen" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "Voorraad artikelprijs leeftijd" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Voorraaditems ouder dan dit aantal dagen uitsluiten van prijsberekeningen" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "Gebruik variantprijzen" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "Variantenprijzen opnemen in de totale prijsberekening" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "Alleen actieve varianten" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "Gebruik alleen actieve variantonderdelen voor het berekenen van variantprijzen" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "Prijzen Herbouw interval" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "Aantal dagen voordat de prijzen voor onderdelen automatisch worden bijgewerkt" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Interne Prijzen" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "Inschakelen van interne prijzen voor onderdelen" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "Interne prijs overschrijven" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "Indien beschikbaar, interne prijzen overschrijven berekeningen van prijsbereik" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Printen van labels Inschakelen" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "Printen van labels via de webinterface inschakelen" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "Label Afbeelding DPI" -#: common/models.py:1639 +#: common/models.py:1650 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/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Activeer Rapportages" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "Activeer het genereren van rapporten" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Foutopsporingsmodus" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "Rapporten genereren in debug modus (HTML uitvoer)" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Paginagrootte" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Standaard paginagrootte voor PDF rapporten" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "Activeer Testrapporten" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "Activeer het genereren van testrapporten" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "Testrapporten Toevoegen" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Bij het afdrukken van een Testrapport, voeg een kopie van het Testrapport toe aan het bijbehorende Voorraadartikel" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "Globaal unieke serienummers" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "Serienummers voor voorraaditems moeten globaal uniek zijn" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "Serienummers automatisch invullen" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "Automatisch invullen van serienummer in formulieren" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "Verwijder uitgeputte voorraad" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "Batchcode Sjabloon" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "Sjabloon voor het genereren van standaard batchcodes voor voorraadartikelen" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "Verlopen Voorraad" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "Verlopen voorraad functionaliteit inschakelen" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "Verkoop Verlopen Voorraad" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "Verkoop verlopen voorraad toestaan" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "Voorraad Vervaltijd" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "Aantal dagen voordat voorraadartikelen als verouderd worden beschouwd voor ze verlopen" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "Produceer Verlopen Voorraad" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "Sta productie met verlopen voorraad toe" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "Voorraad Eigenaar Toezicht" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "Eigenaarstoezicht over voorraadlocaties en items inschakelen" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "Voorraadlocatie standaard icoon" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "Standaard locatie pictogram (leeg betekent geen icoon)" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "Geïnstalleerde voorraad items weergeven" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "Geïnstalleerde voorraadartikelen in voorraadtabellen tonen" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "Productieorderreferentiepatroon" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "Vereist patroon voor het genereren van het Bouworderreferentieveld" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "Retourorders inschakelen" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "Retourorder functionaliteit inschakelen in de gebruikersinterface" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "Retourorder referentie patroon" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "Bewerk voltooide retourorders" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "Bewerken van retourorders toestaan nadat deze zijn voltooid" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "Verkooporderreferentiepatroon" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "Vereist patroon voor het genereren van het Verkooporderreferentieveld" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "Standaard Verzending Verkooporder" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "Aanmaken standaard verzending bij verkooporders inschakelen" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "Bewerk voltooide verkooporders" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "Bewerken van verkooporders toestaan nadat deze zijn verzonden of voltooid" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "Inkooporderreferentiepatroon" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "Vereist patroon voor het genereren van het Inkooporderreferentieveld" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "Bewerk voltooide verkooporders" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "Bewerken van inkooporders toestaan nadat deze zijn verzonden of voltooid" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "Wachtwoord vergeten functie inschakelen" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "Wachtwoord vergeten functie inschakelen op de inlogpagina's" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Registratie inschakelen" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "Zelfregistratie voor gebruikers op de inlogpagina's inschakelen" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "SSO inschakelen" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "SSO inschakelen op de inlogpagina's" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "Schakel gebruikersregistratie met SSO in" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Zelfregistratie voor gebruikers middels SSO op de inlogpagina's inschakelen" -#: common/models.py:1913 -msgid "Email required" -msgstr "E-mailadres verplicht" +#: common/models.py:1944 +msgid "Enable SSO group sync" +msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" -msgstr "Vereis gebruiker om e-mailadres te registreren bij aanmelding" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "SSO-gebruikers automatisch invullen" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "Gebruikersdetails van SSO-accountgegevens automatisch invullen" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "E-mail twee keer" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "Bij inschrijving gebruikers twee keer om hun e-mail vragen" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "Wachtwoord tweemaal" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "Laat gebruikers twee keer om hun wachtwoord vragen tijdens het aanmelden" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "Toegestane domeinen" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "Inschrijven beperken tot bepaalde domeinen (komma-gescheiden, beginnend met @)" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "Groep bij aanmelding" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "Groep waaraan nieuwe gebruikers worden toegewezen bij registratie" - -#: common/models.py:1953 -msgid "Enforce MFA" -msgstr "MFA afdwingen" +#: common/models.py:1952 +msgid "SSO group key" +msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." -msgstr "Gebruikers moeten multifactor-beveiliging gebruiken." +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" -msgstr "Controleer plugins bij het opstarten" +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" -msgstr "Controleer of alle plug-ins zijn geïnstalleerd bij het opstarten - inschakelen in container-omgevingen" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 +msgid "Email required" +msgstr "E-mailadres verplicht" + +#: common/models.py:1977 +msgid "Require user to supply mail on signup" +msgstr "Vereis gebruiker om e-mailadres te registreren bij aanmelding" + +#: common/models.py:1982 +msgid "Auto-fill SSO users" +msgstr "SSO-gebruikers automatisch invullen" + +#: common/models.py:1984 +msgid "Automatically fill out user-details from SSO account-data" +msgstr "Gebruikersdetails van SSO-accountgegevens automatisch invullen" + +#: common/models.py:1990 +msgid "Mail twice" +msgstr "E-mail twee keer" + +#: common/models.py:1991 +msgid "On signup ask users twice for their mail" +msgstr "Bij inschrijving gebruikers twee keer om hun e-mail vragen" + +#: common/models.py:1996 +msgid "Password twice" +msgstr "Wachtwoord tweemaal" + +#: common/models.py:1997 +msgid "On signup ask users twice for their password" +msgstr "Laat gebruikers twee keer om hun wachtwoord vragen tijdens het aanmelden" + +#: common/models.py:2002 +msgid "Allowed domains" +msgstr "Toegestane domeinen" + +#: common/models.py:2004 +msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgstr "Inschrijven beperken tot bepaalde domeinen (komma-gescheiden, beginnend met @)" + +#: common/models.py:2010 +msgid "Group on signup" +msgstr "Groep bij aanmelding" + +#: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" + +#: common/models.py:2018 +msgid "Enforce MFA" +msgstr "MFA afdwingen" + +#: common/models.py:2019 +msgid "Users must use multifactor security." +msgstr "Gebruikers moeten multifactor-beveiliging gebruiken." + +#: common/models.py:2024 +msgid "Check plugins on startup" +msgstr "Controleer plugins bij het opstarten" + +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "Controleer of alle plug-ins zijn geïnstalleerd bij het opstarten - inschakelen in container-omgevingen" + +#: common/models.py:2034 +msgid "Check for plugin updates" +msgstr "" + +#: common/models.py:2035 +msgid "Enable periodic checks for updates to installed plugins" +msgstr "" + +#: common/models.py:2041 msgid "Enable URL integration" msgstr "Activeer URL-integratie" -#: common/models.py:1977 +#: common/models.py:2042 msgid "Enable plugins to add URL routes" msgstr "Plugins toestaan om URL-routes toe te voegen" -#: common/models.py:1983 +#: common/models.py:2048 msgid "Enable navigation integration" msgstr "Activeer navigatie integratie" -#: common/models.py:1984 +#: common/models.py:2049 msgid "Enable plugins to integrate into navigation" msgstr "Plugins toestaan om te integreren in navigatie" -#: common/models.py:1990 +#: common/models.py:2055 msgid "Enable app integration" msgstr "Activeer app integratie" -#: common/models.py:1991 +#: common/models.py:2056 msgid "Enable plugins to add apps" msgstr "Activeer plug-ins om apps toe te voegen" -#: common/models.py:1997 +#: common/models.py:2062 msgid "Enable schedule integration" msgstr "Activeer planning integratie" -#: common/models.py:1998 +#: common/models.py:2063 msgid "Enable plugins to run scheduled tasks" msgstr "Activeer plugin om periodiek taken uit te voeren" -#: common/models.py:2004 +#: common/models.py:2069 msgid "Enable event integration" msgstr "Activeer evenement integratie" -#: common/models.py:2005 +#: common/models.py:2070 msgid "Enable plugins to respond to internal events" msgstr "Activeer plugin om op interne evenementen te reageren" -#: common/models.py:2011 +#: common/models.py:2076 msgid "Enable project codes" msgstr "Activeer project codes" -#: common/models.py:2012 +#: common/models.py:2077 msgid "Enable project codes for tracking projects" msgstr "Activeer project codes voor het bijhouden van projecten" -#: common/models.py:2017 +#: common/models.py:2082 msgid "Stocktake Functionality" msgstr "Voorraadcontrole functionaliteit" -#: common/models.py:2019 +#: common/models.py:2084 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Schakel voorraadfunctionaliteit in voor het opnemen van voorraadniveaus en het berekenen van voorraadwaarde" -#: common/models.py:2025 +#: common/models.py:2090 msgid "Exclude External Locations" msgstr "Externe locaties uitsluiten" -#: common/models.py:2027 +#: common/models.py:2092 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Voorraadartikelen op externe locaties uitsluiten van voorraadberekeningen" -#: common/models.py:2033 +#: common/models.py:2098 msgid "Automatic Stocktake Period" msgstr "Automatische Voorraadcontrole Periode" -#: common/models.py:2035 +#: common/models.py:2100 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Aantal dagen tussen automatische voorraadopname (ingesteld op nul om uit te schakelen)" -#: common/models.py:2041 +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "Rapport Verwijdering Interval" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Voorraadrapportage zal worden verwijderd na het opgegeven aantal dagen" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "Instellingssleutel (moet uniek zijn - hoofdletter ongevoelig" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "Inactieve Onderdelen Verbergen" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Verberg inactieve delen bij items op de homepage" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "Toon geabonneerde onderdelen" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "Toon geabonneerde onderdelen op de homepage" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "Toon geabonneerde categorieën" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "Toon geabonneerde onderdeel categorieën op de startpagina" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "Toon laatste onderdelen" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "Toon laatste onderdelen op de startpagina" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "Laat BOMs zien die wachten op validatie op de startpagina" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "Toon recente voorraadwijzigingen" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "Toon recent aangepaste voorraadartikelen op de startpagina" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "Toon lage voorraad" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "Toon lage voorraad van artikelen op de startpagina" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "Toon lege voorraad" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "Toon lege voorraad van artikelen op de startpagina" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "Toon benodigde voorraad" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "Toon benodigde voorraad van artikelen voor productie op de startpagina" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "Toon verlopen voorraad" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "Toon verlopen voorraad van artikelen op de startpagina" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "Toon verouderde voorraad" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "Toon verouderde voorraad van artikelen op de startpagina" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "Toon openstaande producties" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "Toon openstaande producties op de startpagina" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "Toon achterstallige productie" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "Toon achterstallige producties op de startpagina" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "Toon uitstaande PO's" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "Toon uitstaande PO's op de startpagina" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "Toon achterstallige PO's" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "Toon achterstallige PO's op de startpagina" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "Toon uitstaande SO's" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "Toon uitstaande SO's op de startpagina" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "Toon achterstallige SO's" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "Toon achterstallige SO's op de startpagina" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "Toon in behandeling SO verzendingen" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "Toon in behandeling zijnde SO verzendingen op de startpagina" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "Nieuws tonen" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "Nieuws op de startpagina weergeven" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "Inline labelweergave" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "PDF-labels in browser weergeven, in plaats van als bestand te downloaden" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "Standaard label printer" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "Instellen welke label printer standaard moet worden geselecteerd" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "Inline rapport weergeven" -#: common/models.py:2246 +#: common/models.py:2311 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/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "Zoek Onderdelen" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "Onderdelen weergeven in zoekscherm" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "Zoek leveranciersonderdelen" -#: common/models.py:2259 +#: common/models.py:2324 msgid "Display supplier parts in search preview window" msgstr "Leveranciersonderdelen weergeven in zoekscherm" -#: common/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "Fabrikant onderdelen zoeken" -#: common/models.py:2265 +#: common/models.py:2330 msgid "Display manufacturer parts in search preview window" msgstr "Fabrikant onderdelen weergeven in zoekscherm" -#: common/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "Inactieve Onderdelen Verbergen" -#: common/models.py:2271 +#: common/models.py:2336 msgid "Excluded inactive parts from search preview window" msgstr "Inactieve verkooporders weglaten in het zoekvenster" -#: common/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "Zoek categorieën" -#: common/models.py:2277 +#: common/models.py:2342 msgid "Display part categories in search preview window" msgstr "Toon onderdeelcategorieën in zoekvenster" -#: common/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "Zoek in Voorraad" -#: common/models.py:2283 +#: common/models.py:2348 msgid "Display stock items in search preview window" msgstr "Toon voorraad items in zoekvenster" -#: common/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "Verberg niet beschikbare voorraad items" -#: common/models.py:2290 +#: common/models.py:2355 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/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "Locaties doorzoeken" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "Toon voorraadlocaties in zoekvenster" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "Zoek bedrijven" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "Toon bedrijven in zoekvenster" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "Zoek Bouworders" -#: common/models.py:2309 +#: common/models.py:2374 msgid "Display build orders in search preview window" msgstr "Toon bouworders in zoekvenster" -#: common/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "Inkooporders Zoeken" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "Toon inkooporders in het zoekvenster" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "Inactieve Inkooporders Weglaten" -#: common/models.py:2322 +#: common/models.py:2387 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inactieve inkooporders weglaten in het zoekvenster" -#: common/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "Verkooporders zoeken" -#: common/models.py:2329 +#: common/models.py:2394 msgid "Display sales orders in search preview window" msgstr "Toon verkooporders in het zoekvenster" -#: common/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "Inactieve Verkooporders Weglaten" -#: common/models.py:2336 +#: common/models.py:2401 msgid "Exclude inactive sales orders from search preview window" msgstr "Inactieve verkooporders weglaten in het zoekvenster" -#: common/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "Zoek retourorders" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "Toon bouworders in zoekvenster" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "Inactieve retourbestellingen weglaten" -#: common/models.py:2350 +#: common/models.py:2415 msgid "Exclude inactive return orders from search preview window" msgstr "Inactieve retourorders uitsluiten in zoekvenster" -#: common/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "Zoekvoorbeeld resultaten" -#: common/models.py:2358 +#: common/models.py:2423 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/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "Regex zoeken" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "Schakel reguliere expressies in zoekopdrachten in" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "Hele woorden zoeken" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "Zoekopdrachten geven resultaat voor hele woord overeenkomsten" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "Toon hoeveelheid in formulieren" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "Hoeveelheid beschikbare onderdelen in sommige formulieren weergeven" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "Escape-toets sluit formulieren" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "Gebruik de Escape-toets om standaard formulieren te sluiten" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "Vaste navigatiebalk" -#: common/models.py:2389 +#: common/models.py:2454 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/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "Datum formaat" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "Voorkeursindeling voor weergave van datums" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Onderdeel planning" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "Toon informatie voor het plannen van onderdelen" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Voorraadcontrole onderdeel" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Toon voorraadinformatie van onderdeel (als voorraadcontrole functionaliteit is ingeschakeld)" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "Tabel tekenreekslengte" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "Standaard sjabloon product onderdeel" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "Het onderdeellabelsjabloon dat automatisch wordt geselecteerd" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "Standaard sjabloon voorraad onderdeel" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "Standaard label van voorraadlocatie" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "Foutrapportages ontvangen" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "Meldingen ontvangen van systeemfouten" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Gebruiker" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Prijs" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "Eindpunt" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "Eindpunt waarop deze webhook wordt ontvangen" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "Naam van deze webhook" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Actief" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "Is deze webhook actief" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "Token voor toegang" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "Geheim" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "Gedeeld geheim voor HMAC" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "Bericht ID" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "Koptekst" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "Koptekst van dit bericht" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "Berichtinhoud" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "Inhoud van dit bericht" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "Aan gewerkt" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Titel" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "Titel" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "Gepubliceerd" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "Samenvatting" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "Gelezen" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "Afbeelding" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "Afbeelding" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Symbool" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definitie" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Bijlage" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Ontbrekend bestand" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Externe link ontbreekt" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Bestand als bijlage selecteren" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Opmerking" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Bestandsnaam" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "Geïmporteerde onderdelen" msgid "Previous Step" msgstr "Vorige Stap" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Bedrijf" @@ -3843,8 +3993,9 @@ msgstr "Telefoonnummer voor contact" msgid "Contact email address" msgstr "Contact e-mailadres" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" -msgstr "is klant" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" -msgstr "is leverancier" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" -msgstr "is fabrikant" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "Fabriceert dit bedrijf onderdelen?" msgid "Default currency used for this company" msgstr "Standaardvaluta die gebruikt wordt voor dit bedrijf" -#: company/models.py:366 -msgid "Select company" -msgstr "" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Adres" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "Fabrikant onderdeel" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Basis onderdeel" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "Onderdeel selecteren" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Fabrikant" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Fabrikant selecteren" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Fabrikant artikel nummer (MPN)" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "URL voor externe link van het fabrikant onderdeel" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "Omschrijving onderdeel fabrikant" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Parameternaam" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Waarde" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Parameterwaarde" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "Eenheden" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "Parameter eenheden" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "Leveranciersonderdeel" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "Gekoppeld fabrikant onderdeel moet verwijzen naar hetzelfde basis onderdeel" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Leverancier" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Leverancier selecteren" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "Selecteer fabrikant onderdeel" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Opmerking" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "basisprijs" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimale kosten (bijv. voorraadkosten)" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "meerdere" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "Order meerdere" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Klant" @@ -4278,13 +4448,6 @@ msgstr "Klant" msgid "Uses default currency" msgstr "Gebruik standaard valuta" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Adres" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Telefoon" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "Fabrikant onderdeel verwijderen" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "Intern onderdeel" @@ -4474,7 +4638,7 @@ msgstr "Geen fabrikanten informatie beschikbaar" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "Nieuwe Parameter" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "Toegewezen Voorraadartikelen" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "Verwijder leveranciers onderdeel" msgid "No supplier information available" msgstr "Geen leveranciersinformatie beschikbaar" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Nieuw Bedrijf" msgid "Placed" msgstr "Geplaatst" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "Totaalprijs" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "Inkooporder" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "Link naar externe pagina" @@ -4895,15 +5207,15 @@ msgstr "Order referentiecode van leverancier" msgid "received by" msgstr "ontvangen door" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "Datum van uitgifte" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "Order uitgegeven op datum" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "Order voltooid op datum" @@ -4919,15 +5231,15 @@ msgstr "Hoeveelheid moet een positief getal zijn" msgid "Company to which the items are being sold" msgstr "Bedrijf waaraan de artikelen worden verkocht" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "Klantreferentie " -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "Klant order referentiecode" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "Additionele context voor deze regel" msgid "Unit price" msgstr "Stukprijs" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "Leveranciersonderdeel moet overeenkomen met leverancier" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "verwijderd" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "Leveranciersonderdeel" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "Leveranciersonderdeel" msgid "Received" msgstr "Ontvangen" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "Aantal ontvangen artikelen" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "Inkoopprijs" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "Aankoopprijs per stuk" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "Waar wil de inkoper dat dit artikel opgeslagen wordt?" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "Virtueel onderdeel kan niet worden toegewezen aan een verkooporder" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "Alleen verkoopbare onderdelen kunnen aan een verkooporder worden toegewezen" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "Verkoopprijs" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "Prijs per stuk" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Verzonden" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "Verzonden hoeveelheid" -#: order/models.py:1672 +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "Datum van verzending" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "Gecontroleerd door" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "Gebruiker die deze zending gecontroleerd heeft" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "Zending" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "Zendingsnummer" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "Volgnummer" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "Zending volginformatie" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "Factuurnummer" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "Referentienummer voor bijbehorende factuur" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "Verzending is al verzonden" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "Zending heeft geen toegewezen voorraadartikelen" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "Voorraadartikel is niet toegewezen" -#: order/models.py:1863 +#: order/models.py:1889 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:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "Kan voorraad niet toewijzen aan een regel zonder onderdeel" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Toewijzingshoeveelheid kan niet hoger zijn dan de voorraadhoeveelheid" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "Hoeveelheid moet 1 zijn voor geserialiseerd voorraadartikel" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "Verkooporder komt niet overeen met zending" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "Verzending komt niet overeen met verkooporder" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "Regel" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "Verzendreferentie verkooporder" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "Artikel" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "Selecteer voorraadartikel om toe te wijzen" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "Voer voorraadtoewijzingshoeveelheid in" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "Artikelen" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "Order kan niet worden geannuleerd" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "Order is niet open" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "Valuta Inkoopprijs" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "Intern Onderdeelnummer" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "Leveranciersonderdeel moet worden gespecificeerd" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "Inkooporder moet worden gespecificeerd" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "De leverancier moet overeenkomen met de inkooporder" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "Inkooporder moet overeenkomen met de leverancier" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "Artikel" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "Artikelregel komt niet overeen met inkooporder" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "Selecteer bestemmingslocatie voor ontvangen artikelen" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "Voer serienummers in voor inkomende voorraadartikelen" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "Streepjescode is al in gebruik" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "Hoeveelheid als geheel getal vereist voor traceerbare onderdelen" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "Artikelen moeten worden opgegeven" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "Bestemmingslocatie moet worden opgegeven" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "Geleverde streepjescodewaarden moeten uniek zijn" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "Valuta verkoopprijs" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "Geen verzenddetails opgegeven" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "Artikelregel is niet gekoppeld aan deze bestelling" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "Hoeveelheid moet positief zijn" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "Voer serienummers in om toe te wijzen" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "Verzending is al verzonden" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "Zending is niet gekoppeld aan deze bestelling" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "Geen overeenkomst gevonden voor de volgende serienummers" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "De volgende serienummers zijn al toegewezen" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "Klantreferentie" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "{part} stukprijs bijgewerkt naar {price}" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "{part} stukprijs bijgewerkt naar {price} en aantal naar {qty}" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "Onderdeel-id" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "Onderdeel naam" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "Onderdeel omschrijving" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Onderdelen" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "Binnenkomende Inkooporder" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "Uitgaande Verkooporder" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "Geproduceerde voorraad door Productieorder" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "Voorraad vereist voor Productieorder" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "Standaard locatie" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "Totale Voorraad" @@ -6034,7 +6375,7 @@ msgstr "Totale Voorraad" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Onderdeel Categorie" @@ -6049,7 +6390,7 @@ msgstr "Onderdeel Categorieën" msgid "Default location for parts in this category" msgstr "Standaard locatie voor onderdelen in deze categorie" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Onderdeel naam" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "Onderdeel Categorie" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "Intern Onderdeelnummer" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "Standaardleverancier" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "Eenheden voor dit onderdeel" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "Onderdeel voor voorraadcontrole" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "Datum" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "Aantal onderdelen" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Ingeschakeld" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "De template van de parameter moet uniek zijn" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "Parameternaam" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "Parameterwaarde" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "Standaard Parameter Waarde" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "Geen onderdelen geselecteerd" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "Afbeelding kopiëren" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "Afbeelding kopiëren van het oorspronkelijke onderdeel" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "Parameters kopiëren" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "Parameter data kopiëren van het originele onderdeel" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "Ongeldige hoeveelheid" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "Label afdrukken" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "Voorraad" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "Onvoldoende voorraad beschikbaar" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "Totaal" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "Voorraadlocatie" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "Voorraadlocaties" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "Inkooporder Bron" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "Inkooporder voor dit voorraadartikel" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "Bestemming Verkooporder" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "Voorraadartikel is toegewezen aan een verkooporder" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Sublocaties" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "Artikel is toegewezen aan een verkooporder" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "Artikel is toegewezen aan een productieorder" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "Product" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "Geen fabrikant geselecteerd" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Verwijderen" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "De volgende onderdelen hebben een lage vereiste voorraad" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "Vereiste Hoeveelheid" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/no/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/no/LC_MESSAGES/django.po index 6d544c763b..9e6da5e990 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API-endepunkt ikke funnet" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Brukeren har ikke rettigheter til å se denne modellen" @@ -56,21 +56,21 @@ msgstr "Feildetaljer kan finnes i admin-panelet" msgid "Enter date" msgstr "Oppgi dato" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Registrering er deaktivert." @@ -348,8 +348,8 @@ msgstr "Kinesisk (tradisjonell)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Logg inn på appen" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Utvidelse-metadata" msgid "JSON metadata field, for use by external plugins" msgstr "JSON-metadatafelt, for bruk av eksterne utvidelser" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Uriktig formatert mønster" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Ukjent formatnøkkel spesifisert" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Mangler nødvendig formatnøkkel" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Referansefeltet kan ikke være tomt" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Referansen må samsvare påkrevd mønster" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Referansenummeret er for stort" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Duplikatnavn kan ikke eksistere under samme overordnede" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Ugyldig valg" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Ugyldig valg" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Navn" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Navn" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Navn" msgid "Description" msgstr "Beskrivelse" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Beskrivelse (valgfritt)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Sti" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Markdown-notater (valgfritt)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Strekkodedata" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Tredjeparts strekkodedata" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Strekkode-hash" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Unik hash av strekkodedata" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Eksisterende strekkode funnet" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Serverfeil" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "En feil har blitt logget av serveren." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Må være et gyldig tall" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Valuta" msgid "Select currency from available options" msgstr "Velg valuta ut fra tilgjengelige alternativer" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "Brukernavn" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "Fornavn" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "Etternavn" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Aktiv" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Du har ikke tillatelse til å endre denne brukerrollen." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Bare superbrukere kan opprette nye brukere" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Din konto er opprettet." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Vennligst bruk funksjonen for å tilbakestille passord for å logge inn" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Velkommen til InvenTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Ugyldig verdi" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Datafil" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Velg datafil for opplasting" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Filtypen støttes ikke" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Filen er for stor" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Ingen kolonner funnet i filen" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Ingen datarader funnet i fil" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Ingen datarader oppgitt" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Ingen datakolonner angitt" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Mangler påkrevd kolonne: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Dupliaktkolonne: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Eksternt bilde" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URLtil ekstern bildefil" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Nedlasting av bilder fra ekstern URL er ikke aktivert" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Sjekk av bakgrunnsarbeider mislyktes" @@ -654,47 +711,48 @@ msgstr "Systeminformasjon" msgid "About InvenTree" msgstr "Om InvenTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "Produksjonen må avbrytes før den kan slettes" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Forbruksvare" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Valgfritt" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Spores" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Tildelt" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Tilgjengelig" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Produksjonsordre" msgid "Build Orders" msgstr "Produksjonsordrer" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Ugyldig valg for overordnet produksjon" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "Produksjonsordrens del kan ikke endres" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Produksjonsordre-referanse" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Produksjonsordre-referanse" msgid "Reference" msgstr "Referanse" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Kort beskrivelse av produksjonen (valgfritt)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Overordnet produksjon" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Produksjonsordre som denne produksjonen er tildelt" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Produksjonsordre som denne produksjonen er tildelt" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Produksjonsordre som denne produksjonen er tildelt" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Produksjonsordre som denne produksjonen er tildelt" msgid "Part" msgstr "Del" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Velg del å produsere" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Salgsordrereferanse" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Salgsordren denne produksjonen er tildelt til" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Kildeplassering" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Fullført plassering" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "Velg plassering der fullførte artikler vil bli lagret" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Produksjonsmengde" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Antall lagervarer å produsere" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Fullførte artikler" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Antall lagervarer som er fullført" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Produksjonsstatus" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Produksjonsstatuskode" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Batchkode" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Batchkode for denne produksjonsartikkelen" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Opprettelsesdato" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Forventet sluttdato" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Fullført dato" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "fullført av" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Utstedt av" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Brukeren som utstedte denne produksjonsordren" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Brukeren som utstedte denne produksjonsordren" msgid "Responsible" msgstr "Ansvarlig" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "Bruker eller gruppe ansvarlig for produksjonsordren" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Ekstern lenke" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Lenke til ekstern URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Produksjonsprioritet" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Produksjonsordrens prioritet" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Produksjonsordrens prioritet" msgid "Project Code" msgstr "Prosjektkode" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Prosjektkode for denne produksjonsordren" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Produksjonsordre {build} er fullført" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "En produksjonsordre er fullført" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Ingen produksjonsartikkel spesifisert" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Produksjonsartikkelen er allerede fullført" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "Produksjonsartikkelen samsvarer ikke med produksjonsordren" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "Mengden må være større enn null" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "Kvantitet kan ikke være større enn utgangsantallet" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Produksjonsobjekt" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Produksjonsobjekt" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Produksjonsobjekt" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Produksjonsobjekt" msgid "Quantity" msgstr "Antall" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Påkrevd antall for produksjonsordre" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Lagervaren er overtildelt" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Tildelingsantall må være større enn null" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Mengden må være 1 for serialisert lagervare" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "Valgt lagervare samsvarer ikke med BOM-linjen" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "Valgt lagervare samsvarer ikke med BOM-linjen" msgid "Stock Item" msgstr "Lagervare" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Kildelagervare" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Lagerantall å tildele til produksjonen" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Monteres i" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Lagervare for montering" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "Delnavn" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Produksjonsartikkel" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "Produksjonsartikkel samsvarer ikke med overordnet produksjon" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "Resultatdel samsvarer ikke med produksjonsordredel" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Denne produksjonsartikkelen er allerede fullført" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "Denne produksjonsartikkelen er ikke fullt tildelt" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Angi antall for produksjonsartikkel" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "Heltallsverdi kreves for sporbare deler" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Heltallsverdi kreves, da stykklisten inneholder sporbare deler" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Serienummer" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Angi serienummer for produksjonsartikler" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Angi serienummer for produksjonsartikler" msgid "Location" msgstr "Plassering" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Automatisk tildeling av serienummer" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "Automatisk tildeling av nødvendige artikler med tilsvarende serienummer" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "Følgende serienummer finnes allerede eller er ugyldige" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "En liste over produksjonsartikler må oppgis" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "Lagerplassering for skrotede produksjonsartikler" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "Forkast tildelinger" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "Forkast tildelinger fra skrotede produksjonsartikler" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "Grunn for skroting av produksjonsartikler" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "Plassering for ferdige produksjonsartikler" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "Plassering for ferdige produksjonsartikler" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Godta ufullstendig tildeling" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "Fullfør artikler dersom lagerbeholdning ikke er fullt tildelt" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "Fjern ufullstendige artikler" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "Slett alle produksjonsartikler som ikke er fullført" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Ikke tillatt" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Godta som brukt av denne produksjonsordren" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "Fjern tildeling før produksjonsordren fullføres" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Overtildelt lagerbeholdning" -#: build/serializers.py:680 +#: build/serializers.py:684 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:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "Noen lagervarer har blitt overtildelt" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Godta ikke tildelt" -#: build/serializers.py:696 +#: build/serializers.py:700 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:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "Nøvendig lagerbeholdning er ikke fullt tildelt" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Godta uferdig" -#: build/serializers.py:712 +#: build/serializers.py:716 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:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "Nødvendig produksjonsmengde er ikke nådd" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "Produksjonsordren har uferdige artikler" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Produksjonslinje" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Produksjonsartikkel" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "Produksjonsartikkel må peke til samme produksjon" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "Produksjonsartikkel" -#: build/serializers.py:837 +#: build/serializers.py:841 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:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "Artikkelen må være på lager" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Tilgjengelig antall ({q}) overskredet" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "Produksjonsartikkel må spesifiseres for tildeling av sporede deler" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Produksjonsartikkel kan ikke spesifiseres for tildeling av usporede deler" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "Tildelingsartikler må oppgis" -#: build/serializers.py:1000 +#: build/serializers.py:1004 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:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Eksluderer plassering" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "Ekskluder lagervarer fra denne valgte plasseringen" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "Utskiftbar lagerbeholdning" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Lagervarer ved flere plasseringer kan brukes om hverandre" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Erstatning-lagerbeholdning" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "Tilatt tildelling av erstatningsdeler" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "Valgfrie artikler" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "Tildel valgfrie BOM-artikler til produksjonsordre" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Produsentens varenummer" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "Plasseringsnavn" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "Del -IPN" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Sporbar" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "BOM-artikkel" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "Tildelt lagerbeholdning" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "I bestilling" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "I produksjon" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "Tilgjengelig lagerbeholdning" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Produksjon" msgid "Cancelled" msgstr "Kansellert" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "Lagerbeholdning er ikke fullt tildelt til denne Produksjonsordren" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "Fullførte byggeresultater" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Lagerkilde" msgid "Stock can be taken from any available location." msgstr "Lagervare kan hentes fra alle tilgengelige plasseringer." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Destinasjon" @@ -1827,31 +1956,31 @@ msgstr "Produksjonsordre-detaljer" msgid "Incomplete Outputs" msgstr "Ufullstendige artikler" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "Ingen programtillegg" @@ -1905,1591 +2034,1604 @@ msgstr "Tidsstempel for forrige oppdatering" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Unik prosjektkode" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Prosjektbeskrivelse" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "Bruker eller gruppe ansvarlig for dette prosjektet" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "Innstillingsnøkkel (må være unik - ufølsom for store of små bokstaver)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "Innstillings verdi" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "Valgt verdi er ikke et gyldig alternativ" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "Verdien må være en boolsk verdi" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "Verdien må være et heltall" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "Nøkkelstreng må være unik" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Ingen gruppe" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Omstart kreves" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "En innstilling har blitt endret som krever en omstart av serveren" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "Ventende migrasjoner" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "Antall ventende databasemigreringer" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "Navn på serverinstans" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "Strengbeskrivelse for serverinstansen" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "Bruk instansnavn" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "Bruk instansnavnet på tittellinjen" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "Begrens visning av 'om'" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "Vis `about`-modal kun til superbrukere" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Firmanavn" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Internt firmanavn" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "Base-URL" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "Base-URL for serverinstans" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Standardvaluta" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "Velg grunnvalutaen for prisberegninger" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "Oppdateringsintervall for valuta" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "Hvor ofte valutakurser skal oppdateres (sett til null for å deaktiverere)" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "dager" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "Valutaoppdaterings-plugin" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "Valgt valutaoppdaterings-plugin" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Last ned fra URL" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Tillat nedlastning av eksterne bilder og filer fra ekstern URL" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "Nedlastingsgrense" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "Maksimal tillatt nedlastingsstørrelse for eksternt bilde" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "User-Agent brukt for å laste ned fra URL" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "Tillat overstyring av User-Agent brukt for å laste ned bilder og filer fra eksterne URLer (lå stå blank for standard)" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "Streng URL-validering" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "Krev skjemaspesifikasjon ved validering av URLer" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Krev bekreftelse" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Krev eksplisitt brukerbekreftelse for visse handlinger." -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "Tredybde" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "Standard tredybde for trevisning. Dypere nivåer kan lastes inn ved behov." -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "Intervall for oppdateringssjekk" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "Tidsintervall for å se etter oppdateringer(sett til null for å skru av)" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Automatisk sikkerhetskopiering" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Aktiver automatisk sikkerhetskopiering av database og mediafiler" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Automatisk sikkerhetskopieringsintervall" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "Angi antall dager mellom automatiske sikkerhetskopieringshendelser" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "Slettingsintervall for oppgaver" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "Bakgrunnsoppgaveresultater vil bli slettet etter antall angitte dager" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "Slettingsintervall for feillogg" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "Feilloggene vil bli slettet etter et angitt antall dager" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "Slettingsintervall for varsler" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "Brukervarsler slettes etter angitt antall dager" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Strekkodestøtte" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "Aktiver støtte for strekkodeleser i webgrensesnittet" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "Innlesingsforsinkelse for strekkode" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "Tidsforsinkelse for behandling av strekkode" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "Støtte for strekkodewebkamera" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "Tillat strekkodelesning via webkamera i nettleseren" -#: common/models.py:1395 +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 msgid "Part Revisions" msgstr "Delrevisjoner" -#: common/models.py:1396 +#: common/models.py:1407 msgid "Enable revision field for Part" msgstr "Aktiver revisjonsfeltet for Del" -#: common/models.py:1401 +#: common/models.py:1412 msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1402 +#: common/models.py:1413 msgid "Allow deletion of parts which are used in an assembly" msgstr "" -#: common/models.py:1407 +#: common/models.py:1418 msgid "IPN Regex" msgstr "IPN regex" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "Regulært uttrykksmønster for matching av internt delnummer" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Tilat duplikat av internt delnummer" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "Tillat flere deler å dele samme interne delnummer" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "Tillat redigering av internt delnummer" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "Tillat endring av IPN-verdien mens du redigerer en del" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "Kopier BOM-data fra del" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "Kopier BOM-data som standard når du dupliserer en del" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "Kopier parameterdata fra del" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "Kopier parameterdata som standard ved duplisering av en del" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "Kopier testdata fra del" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "Kopier testdata som standard ved duplisering av en del" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "Kopier designmaler for kategoriparametere" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "Kopier parametermaler for kategori ved oppretting av en del" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Mal" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "Deler er maler som standard" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Sammenstilling" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "Deler kan settes sammen fra andre komponenter som standard" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Komponent" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "Deler kan bli brukt som underkomponenter som standard" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Kjøpbar" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "Deler er kjøpbare som standard" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Salgbar" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Deler er salgbare som standard" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Sporbar" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "Deler er sporbare som standard" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Virtuelle" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Deler er virtuelle som standard" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "Vis import i visninger" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "Vis importveiviseren i noen deler visninger" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Vis relaterte deler" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "Vis relaterte deler i en del" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "Innledende lagerbeholdningsdata" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "Tillat oppretting av innledende lagerbeholdning når en ny del opprettes" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Innledende leverandørdata" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "Tillat oppretting av innledende leverandørdata når en ny del opprettes" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "Visningsformat for delnavn" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "Format for å vise delnavnet" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "Standardikon for delkategorier" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "Standardikon for delkategorier (tomt betyr ingen ikon)" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "Tving parameterenheter" -#: common/models.py:1529 +#: common/models.py:1540 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/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "Minimum antall desimalplasser for priser" -#: common/models.py:1537 +#: common/models.py:1548 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/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "Maksimalt antall desimalplasser for priser" -#: common/models.py:1550 +#: common/models.py:1561 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/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "Bruk leverandørpriser" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Inkluder leverandørprisbrudd i beregninger av totalpriser" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "Innkjøpshistorikkoverstyring" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Historiske innkjøpspriser overstyrer leverandørprisnivåer" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "Bruk lagervarepriser" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Bruk priser fra manuelt innlagte lagervarer for prisberegninger" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "Lagervare prisalder" -#: common/models.py:1587 +#: common/models.py:1598 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/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "Bruk Variantpriser" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "Inkluder variantpriser i beregninger av totale priser" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "Kun aktive varianter" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "Bruk kun aktive variantdeler til beregning av variantprising" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "Intervall for rekalkulering av priser" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "Antall dager før delpriser blir automatisk oppdatert" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Interne Priser" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "Aktiver interne priser for deler" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "Intern prisoverstyring" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "Hvis tilgjengelig, overstyrer interne priser kalkulering av prisområde" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Aktiver etikettutskrift" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "Aktiver utskrift av etiketter fra nettleseren" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "Etikettbilde-DPI" -#: common/models.py:1639 +#: common/models.py:1650 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/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Aktiver Rapporter" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "Aktiver generering av rapporter" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Feilsøkingsmodus" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "Generer rapporter i feilsøkingsmodus (HTML-output)" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Sidestørrelse" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Standard sidestørrelse for PDF-rapporter" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "Aktiver Testrapporter" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "Aktiver generering av testrapporter" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "Legg ved testrapporter" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Når det skrives ut en Testrapport, legg ved en kopi av Testrapporten på den assosierte Lagervaren" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "Globalt Unike Serienummer" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "Serienummer for lagervarer må være globalt unike" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "Automatisk tildeling av Serienummer" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "Aumatisk fyll ut serienummer i skjemaer" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "Slett oppbrukt lagerbeholdning" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "Batchkodemal" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "Mal for generering av standard batchkoder for lagervarer" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "Lagerbeholdning utløper" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "Aktiver funksjonalitet for utløp av lagerbeholdning" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "Selg utløpt lagerbeholdning" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "Tillat salg av utgått lagerbeholdning" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "Foreldet lagerbeholdning tidsintervall" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "Antall dager før lagervarer er ansett som foreldet før utløp" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "Produsér Utløpt Lagerbeholdning" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "Tillat produksjon med utløpt lagerbeholdning" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "Kontroll over eierskap av lagerbeholdning" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "Aktiver eierskap over lagerplasseringer og -varer" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "Lagerplassering standard ikon" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "Lagerplassering standard ikon (tomt betyr ingen ikon)" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "Vis installerte lagervarer" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "Vis installerte lagervarer i lagertabeller" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "Produksjonsordre-referansemønster" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "Nødvendig mønster for å generere Produksjonsordre-referansefeltet" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "Aktiver returordrer" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "Aktiver returordrefunksjonalitet i brukergrensesnittet" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "Returordre-referansemønster" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "Rediger fullførte returordrer" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "Tillat redigering av returordrer etter de er fullført" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "Salgsordre-referansemønster" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "Påkrevd mønster for å generere salgsordrereferansefelt" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "Salgsordre standard fraktmetode" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "Aktiver opprettelse av standard forsendelse med salgsordrer" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "Rediger fullførte salgsordrer" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "Tillat redigering av salgsordrer etter de har blitt sendt eller fullført" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "Referansemønster for innkjøpsordre" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "Obligatorisk mønster for generering av referansefelt for innkjøpsordre" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "Rediger fullførte innkjøpsordre" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "Tillat redigering av innkjøpsordre etter at de har blitt sendt eller fullført" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "Autofullfør innkjøpsordrer" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "Automatisk merk innkjøpsordre som fullført når alle ordrelinjer er mottatt" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "Aktiver passord glemt" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "Ativer funskjon for glemt passord på innloggingssidene" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Aktiver registrering" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "Aktiver egenregistrerting for brukerer på påloggingssidene" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "Aktiver SSO" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "Aktiver SSO på innloggingssidene" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "Aktiver SSO-registrering" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Aktiver selvregistrering via SSO for brukere på innloggingssiden" -#: common/models.py:1913 -msgid "Email required" -msgstr "E-postadresse kreves" +#: common/models.py:1944 +msgid "Enable SSO group sync" +msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" -msgstr "Krevt at brukere angir e-post ved registrering" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "Auto-utfyll SSO-brukere" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "Fyll automatisk ut brukeropplysninger fra SSO-kontodata" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "E-post to ganger" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "Spør brukeren om e-post to ganger ved registrering" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "Passord to ganger" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "Spør brukeren om passord to ganger ved registrering" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "Tillatte domener" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "Begrens registrering til bestemte domener (kommaseparert, begynner med @)" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "Gruppe ved registrering" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "Gruppe nye brukere blir tilknyttet ved registrering" - -#: common/models.py:1953 -msgid "Enforce MFA" -msgstr "Krev MFA" +#: common/models.py:1952 +msgid "SSO group key" +msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." -msgstr "Brukere må bruke flerfaktorsikkerhet." +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" -msgstr "Sjekk utvidelser ved oppstart" +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" -msgstr "Sjekk at alle utvidelser er installert ved oppstart - aktiver i containermiljøer" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 +msgid "Email required" +msgstr "E-postadresse kreves" + +#: common/models.py:1977 +msgid "Require user to supply mail on signup" +msgstr "Krevt at brukere angir e-post ved registrering" + +#: common/models.py:1982 +msgid "Auto-fill SSO users" +msgstr "Auto-utfyll SSO-brukere" + +#: common/models.py:1984 +msgid "Automatically fill out user-details from SSO account-data" +msgstr "Fyll automatisk ut brukeropplysninger fra SSO-kontodata" + +#: common/models.py:1990 +msgid "Mail twice" +msgstr "E-post to ganger" + +#: common/models.py:1991 +msgid "On signup ask users twice for their mail" +msgstr "Spør brukeren om e-post to ganger ved registrering" + +#: common/models.py:1996 +msgid "Password twice" +msgstr "Passord to ganger" + +#: common/models.py:1997 +msgid "On signup ask users twice for their password" +msgstr "Spør brukeren om passord to ganger ved registrering" + +#: common/models.py:2002 +msgid "Allowed domains" +msgstr "Tillatte domener" + +#: common/models.py:2004 +msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgstr "Begrens registrering til bestemte domener (kommaseparert, begynner med @)" + +#: common/models.py:2010 +msgid "Group on signup" +msgstr "Gruppe ved registrering" + +#: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" + +#: common/models.py:2018 +msgid "Enforce MFA" +msgstr "Krev MFA" + +#: common/models.py:2019 +msgid "Users must use multifactor security." +msgstr "Brukere må bruke flerfaktorsikkerhet." + +#: common/models.py:2024 +msgid "Check plugins on startup" +msgstr "Sjekk utvidelser ved oppstart" + +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "Sjekk at alle utvidelser er installert ved oppstart - aktiver i containermiljøer" + +#: common/models.py:2034 +msgid "Check for plugin updates" +msgstr "" + +#: common/models.py:2035 +msgid "Enable periodic checks for updates to installed plugins" +msgstr "" + +#: common/models.py:2041 msgid "Enable URL integration" msgstr "Aktiver URL-integrasjon" -#: common/models.py:1977 +#: common/models.py:2042 msgid "Enable plugins to add URL routes" msgstr "Tillat utvidelser å legge til URL-ruter" -#: common/models.py:1983 +#: common/models.py:2048 msgid "Enable navigation integration" msgstr "Aktiver navigasjonsintegrasjon" -#: common/models.py:1984 +#: common/models.py:2049 msgid "Enable plugins to integrate into navigation" msgstr "Tillat utvidelser å integrere mot navigasjon" -#: common/models.py:1990 +#: common/models.py:2055 msgid "Enable app integration" msgstr "Aktiver app-integrasjon" -#: common/models.py:1991 +#: common/models.py:2056 msgid "Enable plugins to add apps" msgstr "Tillat utvidelser å legge til apper" -#: common/models.py:1997 +#: common/models.py:2062 msgid "Enable schedule integration" msgstr "Aktiver tidsplanintegrasjon" -#: common/models.py:1998 +#: common/models.py:2063 msgid "Enable plugins to run scheduled tasks" msgstr "Tillat utvidelser å kjøre planlagte oppgaver" -#: common/models.py:2004 +#: common/models.py:2069 msgid "Enable event integration" msgstr "Aktiver hendelsesintegrasjon" -#: common/models.py:2005 +#: common/models.py:2070 msgid "Enable plugins to respond to internal events" msgstr "Tillat utvidelser å reagere på interne hendelser" -#: common/models.py:2011 +#: common/models.py:2076 msgid "Enable project codes" msgstr "Aktiver prosjektkoder" -#: common/models.py:2012 +#: common/models.py:2077 msgid "Enable project codes for tracking projects" msgstr "Aktiver prosjektkoder for å spore prosjekter" -#: common/models.py:2017 +#: common/models.py:2082 msgid "Stocktake Functionality" msgstr "Varetellingsfunksjonalitet" -#: common/models.py:2019 +#: common/models.py:2084 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Aktiver varetellingsfunksjonalitet for å registrere lagernivåer og regne ut lagerverdi" -#: common/models.py:2025 +#: common/models.py:2090 msgid "Exclude External Locations" msgstr "Ekskluder eksterne plasseringer" -#: common/models.py:2027 +#: common/models.py:2092 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Eksluder lagervarer i eksterne plasseringer fra varetellinger" -#: common/models.py:2033 +#: common/models.py:2098 msgid "Automatic Stocktake Period" msgstr "Automatisk varetellingsperiode" -#: common/models.py:2035 +#: common/models.py:2100 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Antall dager mellom automatisk varetellingsregistrering (sett til null for å deaktivere)" -#: common/models.py:2041 +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "Rapportslettingsintervall" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Varetellingsrapporter vil slettes etter angitt antall dager" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "Vis brukernes fulle navn" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "Vis brukernes fulle navn istedet for brukernavn" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "Innstillingsnøkkel (må være unik - ufølsom for store og små bokstaver" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "Skjul inaktive elementer" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Skjul inaktive deler i resultater som vises på hjemmesiden" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "Vis abonnerte deler" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "Vis abonnerte deler på startsiden" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "Vis abonnerte kategorier" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "Vis abonnerte delkatekorier på startsiden" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "Vis nyeste deler" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "Vis nyeste deler på startsiden" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "Vis stykklister som venter på validering på startsiden" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "Vis nylige lagerendringer" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "Vis nylig endrede lagervarer på startsiden" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "Vis lav lagerbeholdning" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "Vis lave lagervarer på startsiden" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "Vis tomme lagervarer" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "Vis tom lagerbeholdning på startsiden" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "Vis nødvendig lagerbeholdning" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "Vis lagervarer som trengs for produksjon på startsiden" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "Vis utløpt lagerbeholdning" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "Vis utløpte lagervarer på startsiden" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "Vis foreldet lagerbeholdning" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "Vis foreldet lagerbeholdning på startsiden" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "Vis ventende produksjoner" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "Vi ventende produksjoner på startsiden" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "Vis forfalte produksjoner" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "Vis forfalte produksjoner på startsiden" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "Vis utestående Innkjøpsordrer" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "Vis utestående Innkjøpsordrer på startsiden" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "Vis forfalte Innkjøpsordrer" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "Vis forfalte Innkjøpsordrer på startsiden" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "Vis utestående Salgsordrer" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "Vis utestående Salgsordrer på startsiden" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "Vis forfalte SOer" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "Vis forfalte SOer på startsiden" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "Vis ventende SO-forsendelser" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "Vis ventende SO-forsendelser på startsiden" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "Vis Nyheter" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "Vis nyheter på startsiden" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "Innebygd etikettvisning" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Vis PDF-etiketter i nettleseren fremfor å lastes ned som en fil" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "Standard etikettskriver" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "Konfigurer hvilken etikettskriver som skal være valgt som standard" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "Innebygd rapportvisning" -#: common/models.py:2246 +#: common/models.py:2311 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/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "Søk i Deler" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "Vis deler i forhåndsvsningsvinduet for søk" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "Søk i Leverandørdeler" -#: common/models.py:2259 +#: common/models.py:2324 msgid "Display supplier parts in search preview window" msgstr "Vis leverandørdeler i forhåndsvisningsvinduet for søk" -#: common/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "Søk i Produsentdeler" -#: common/models.py:2265 +#: common/models.py:2330 msgid "Display manufacturer parts in search preview window" msgstr "Vis produsentdeler i forhåndsvisningsvinduet for søk" -#: common/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "Skjul Inaktive Deler" -#: common/models.py:2271 +#: common/models.py:2336 msgid "Excluded inactive parts from search preview window" msgstr "Ekskluder inaktive deler fra forhåndsvisningsvinduet for søk" -#: common/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "Søk i kategorier" -#: common/models.py:2277 +#: common/models.py:2342 msgid "Display part categories in search preview window" msgstr "Vis delkategorier i forhåndsvisningsvinduet for søk" -#: common/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "Søk i lagerbeholdning" -#: common/models.py:2283 +#: common/models.py:2348 msgid "Display stock items in search preview window" msgstr "Vis lagervarer i forhåndsvisningsvinduet for søk" -#: common/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "Skjul utilgjengelige Lagervarer" -#: common/models.py:2290 +#: common/models.py:2355 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/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "Søk i Plasseringer" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "Vis lagerplasseringer i forhåndsvisningsvinduet for søk" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "Søk i Firma" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "Vis firma i forhåndsvsningsvinduet for søk" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "Søk i Produksjonsordrer" -#: common/models.py:2309 +#: common/models.py:2374 msgid "Display build orders in search preview window" msgstr "Vis produksjonsordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "Søk i Innkjøpsordrer" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "Vis innkjøpsordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "Ekskluder inaktive Innkjøpsordrer" -#: common/models.py:2322 +#: common/models.py:2387 msgid "Exclude inactive purchase orders from search preview window" msgstr "Ekskluder inaktive innkjøpsordrer fra forhåndsvisningsvinduet for søk" -#: common/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "Søk i Salgsordrer" -#: common/models.py:2329 +#: common/models.py:2394 msgid "Display sales orders in search preview window" msgstr "Vis salgsordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "Ekskluder Inaktive Salgsordrer" -#: common/models.py:2336 +#: common/models.py:2401 msgid "Exclude inactive sales orders from search preview window" msgstr "Ekskluder inaktive salgsordrer fra forhåndsvisningsvinduet for søk" -#: common/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "Søk i Returordrer" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "Vis returordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "Ekskluder Inaktive Returordrer" -#: common/models.py:2350 +#: common/models.py:2415 msgid "Exclude inactive return orders from search preview window" msgstr "Ekskluder inaktive returordrer fra forhåndsvisningsvinduet for søk" -#: common/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "Forhåndsvisning av søkeresultater" -#: common/models.py:2358 +#: common/models.py:2423 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/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "Regex-søk" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "Aktiver regulære uttrykk i søkeord" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "Helordsøk" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "Søk returnerer resultater for treff med hele ord" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "Vis antall i skjemaer" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "Vis antall tilgjengelige deler i noen skjemaer" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "Escape-knappen lukker skjemaer" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "Bruk Escape-knappen for å lukke modal-skjemaer" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "Fast navigasjonsbar" -#: common/models.py:2389 +#: common/models.py:2454 msgid "The navbar position is fixed to the top of the screen" msgstr "Navigasjonsbarens posisjon er fast på toppen av skjermen" -#: common/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "Datoformat" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "Foretrukket format for å vise datoer" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Delplanlegging" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "Vis delplanleggingsinformasjon" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Lagertelling for Del" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Vis lagertellingsinformasjon for del (om lagertellingsfunksjonalitet er aktivert)" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "Tabellstrenglengde" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "Maksimal lengdegrense for tekst vist i tabeller" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "Standard etikettmal for del" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "Etikettmalen for del som velges automatisk" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "Standard etikettmal for lagervare" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "Etikettmalen for lagervare som velges automatisk" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "Standard etikettmal for lagerplassering" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "Etikettmalen for lagerplassering som velges automatisk" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "Motta feilrapporter" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "Motta varsler om systemfeil" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Bruker" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "Antall for prisbrudd" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Pris" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "Enhetspris på spesifisert antall" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "Endepunkt" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "Endepunktet hvor denne webhooken er mottatt" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "Navn for webhooken" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Aktiv" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "Er webhooken aktiv" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "Sjetong" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "Nøkkel for tilgang" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "Hemmelig" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "Delt hemmlighet for HMAC" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "Melding ID" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "Unik Id for denne meldingen" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "Vert" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "Verten denne meldingen ble mottatt fra" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "Tittel" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "Overskrift for denne meldingen" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "Brødtekst" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "Innholdet i meldingen" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "Endepunktet meldingen ble mottatt fra" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "Arbeidet med" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "Var arbeidet med denne meldingen ferdig?" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Tittel" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "Tittel" msgid "Link" msgstr "Lenke" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "Publisert" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Forfatter" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "Sammendrag" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "Les" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "Er dette nyhetselementet lest?" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "Er dette nyhetselementet lest?" msgid "Image" msgstr "Bilde" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "Bildefil" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "Enhetsnavn må være en gyldig identifikator" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "Enhetsnavn" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "Valgfritt enhetssymbol" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definisjon" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "Enhetsdefinisjon" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Vedlegg" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Fil mangler" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Mangler eksternlenke" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Velg fil å legge ved" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Kommentar" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,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:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "Artikler mottatt" @@ -3646,75 +3796,75 @@ msgstr "Artikler har blitt mottatt mot en returordre" msgid "Error raised by plugin" msgstr "Feil oppstått i utvidelse" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "Kjører" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "Ventende oppgaver" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "Planlagte oppgaver" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "Mislykkede oppgaver" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "Oppgave-ID" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "Unik oppgave-ID" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "Lås" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "Låsetidspunkt" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "Oppgavenavn" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "Funksjon" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "Funksjonsnavn" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "Argumenter" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "Oppgaveargumenter" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "Nøkkelordargumenter" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "Nøkkelordargumenter for oppgave" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Filnavn" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "Deler importert" msgid "Previous Step" msgstr "Forrige trinn" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Firma" @@ -3843,8 +3993,9 @@ msgstr "Kontakt-telefonnummer" msgid "Contact email address" msgstr "Kontakt e-post" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" -msgstr "er kunde" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "Selger du varer til dette firmaet?" #: company/models.py:174 -msgid "is supplier" -msgstr "er leverandør" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "Kjøper du varer fra dette firmaet?" #: company/models.py:180 -msgid "is manufacturer" -msgstr "er produsent" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "Produserer dette firmaet deler?" msgid "Default currency used for this company" msgstr "Standardvaluta brukt for dette firmaet" -#: company/models.py:366 +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Adresse" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Adresser" + +#: company/models.py:372 msgid "Select company" msgstr "Velg selskap" -#: company/models.py:371 +#: company/models.py:377 msgid "Address title" msgstr "Adressetittel" -#: company/models.py:372 +#: company/models.py:378 msgid "Title describing the address entry" msgstr "Tittel som beskriver addressen" -#: company/models.py:378 +#: company/models.py:384 msgid "Primary address" msgstr "Hovedadresse" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "Sett som hovedadresse" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "Linje 1" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "Adresselinje 1" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "Linje 2" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "Adresselinje 2" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "Postnummer" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "Poststed/område" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "Postnummerets by/område" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "Delstat/provins" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "Delstat eller provins" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "Land" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "Adressens land" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "Notater til transportør" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "Notater for transportør" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "Interne fraktnotater" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "Fraktnotater for internt bruk" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "Lenke til adresseinformasjon (ekstern)" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "Produsentdeler" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Basisdel" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "Velg del" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Produsent" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Velg produsent" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Produsentens varenummer" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "URL for ekstern produsentdel-lenke" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "Produsentens delbeskrivelse" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Parameternavn" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Verdi" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Parameterverdi" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "Enheter" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "Parameterenheter" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "Leverandørdel" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "Pakkeenhetene må være komptible med delens basisenhet" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "Pakkeenhet må være mer enn null" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "Den sammenkoblede produsentdelen må referere til samme basisdel" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Leverandør" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Velg leverandør" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "Leverandørens lagerbeholdningsenhet" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "Velg produsentdel" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "URL for ekstern leverandørdel-lenke" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "Leverandørens delbeskrivelse" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Notat" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "grunnkostnad" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimum betaling (f.eks. lageravgift)" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "Emballasje" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "Delemballasje" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "Delemballasje" msgid "Pack Quantity" msgstr "Pakkeantall" -#: company/models.py:841 +#: company/models.py:848 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:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "flere" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "Bestill flere" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "Antall tilgjengelig fra leverandør" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "Tilgjengelighet oppdatert" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "Dato for siste oppdatering av tilgjengelighetsdata" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "Standardvaluta brukt for denne leverandøren" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "På lager" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "Inaktiv" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "Slett bilde" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Kunde" @@ -4278,13 +4448,6 @@ msgstr "Kunde" msgid "Uses default currency" msgstr "Bruker standardvaluta" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Adresse" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Telefon" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "Slett produsentdel" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "Intern del" @@ -4474,7 +4638,7 @@ msgstr "Ingen produsentinformasjon tilgjengelig" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "Nytt Parameter" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "Tildelte lagervarer" msgid "Contacts" msgstr "Kontakter" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "Adresser" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "Slett Leverandørdel" msgid "No supplier information available" msgstr "Ingen leverandørinformasjon tilgjengelig" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Nytt Firma" msgid "Placed" msgstr "Plassert" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "Gyldig" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "Ukjent" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "Total pris" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "Ordrestatus" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "Ingen samsvarende innkjøpsordre funnet" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "Ordre" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "Innkjøpsordre" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "Returordre" msgid "Total price for this order" msgstr "Total pris for denne ordren" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "Ordrevaluta" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "Valuta for denne ordren (la stå tom for å bruke firmastandard)" @@ -4846,7 +5158,7 @@ msgstr "Ordrebeskrivelse (valgfritt)" msgid "Select project code for this order" msgstr "Velg prosjektkode for denne ordren" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "Lenke til ekstern side" @@ -4895,15 +5207,15 @@ msgstr "Leverandørens ordrereferanse" msgid "received by" msgstr "mottatt av" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "Sendt dato" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "Dato bestillingen ble sendt" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "Dato ordre ble fullført" @@ -4919,15 +5231,15 @@ msgstr "Mengde må være positiv" msgid "Company to which the items are being sold" msgstr "Firma som varene selges til" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "Kundereferanse " -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "Kundens ordrereferanse" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "Ytterligere kontekst for denne linjen" msgid "Unit price" msgstr "Enhetspris" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "Delens leverandør må samsvare med leverandør" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "slettet" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "Leverandørdel" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "Leverandørdel" msgid "Received" msgstr "Mottatt" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "Antall enheter mottatt" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "Innkjøpspris" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "Enhet-innkjøpspris" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "Hvor vil innkjøper at artikkelen skal lagres?" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "Virtuell del kan ikke tildeles salgsordre" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "Kun salgbare deler kan tildeles en salgsordre" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "Salgspris" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "Enhets-salgspris" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Sendt" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "Sendt antall" -#: order/models.py:1672 +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "Dato for forsendelse" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "Leveringsdato" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "Dato for levering av forsendelse" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "Sjekket Av" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "Brukeren som sjekket forsendelsen" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "Forsendelse" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "Forsendelsesnummer" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "Sporingsnummer" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "Sporingsinformasjon for forsendelse" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "Fakturanummer" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "Referansenummer for tilknyttet faktura" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "Forsendelsen er allerede sendt" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "Forsendelsen har ingen tildelte lagervarer" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "Lagervarer er ikke blitt tildelt" -#: order/models.py:1863 +#: order/models.py:1889 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:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "Kan ikke tildele lagerbeholdning til en linje uten en del" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Tildelingsantall kan ikke overstige tilgjengelig lagerbeholdning" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "Antall må være 1 for serialisert lagervare" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "Salgsordre samsvarer ikke med forsendelse" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "Forsendelsen samsvarer ikke med salgsordre" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "Linje" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "Forsendelsesreferanse for salgsordre" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "Artikkel" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "Velg lagervare å tildele" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "Angi lagertildelingsmengde" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "Returordre-referanse" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "Firmaet delen skal returneres fra" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "Returordrestatus" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "Kun serialiserte artikler kan tilordnes en Returordre" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "Velg artikkel som skal returneres fra kunde" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "Mottatt Dato" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "Datoen denne returartikkelen ble mottatt" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "Utfall" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "Utfall for dette linjeelementet" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "Kostnad forbundet med retur eller reparasjon for dette linjeelementet" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "Kostnad forbundet med retur eller reparasjon for dette linjeelementet" msgid "Line Items" msgstr "Linjeelementer" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "Ordren kan ikke kanselleres" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "Tillat ordre å lukkes med ufullstendige linjeelementer" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "Ordren har ufullstendige linjeelementer" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "Ordren er ikke åpen" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "Innkjøpsvaluta" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "Internt delnummer" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "Leverandørdel må angis" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "Innkjøpsordre må angis" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "Leverandør må samsvare med innkjøpsordre" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "Innkjøpsordre må samsvare med leverandør" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "Ordrelinje" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "Linjeelementet samsvarer ikke med innkjøpsordre" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "Velg lagerplassering for mottatte enheter" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "Angi batchkode for innkommende lagervarer" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "Angi serienummer for innkommende lagervarer" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Strekkode" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "Skannet strekkode" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "Strekkode allerede i bruk" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "Heltallsverdi må angis for sporbare deler" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "Linjeelementer må være oppgitt" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "Målplassering må angis" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "Angitte strekkodeverdier må være unike" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "Valuta for salgspris" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "Ingen forsendelsesopplysninger oppgitt" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "Linjeelement er ikke knyttet til denne ordren" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "Mengden må være positiv" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "Skriv inn serienummer for å tildele" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "Forsendelsen er allerede sendt" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "Forsendelsen er ikke knyttet til denne ordren" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "Ingen treff funnet for følgende serienummer" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "Følgende serienummer er allerede tildelt" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "Returordrelinje" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "Linjeelementet samsvarer ikke med returordre" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "Linjeelementet er allerede mottatt" -#: order/serializers.py:1665 +#: order/serializers.py:1723 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:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "Valuta for linje" @@ -5695,7 +6047,7 @@ msgstr "Kundereferanse" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "Oppdaterte {part} enhetspris to {price}" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "Oppdaterte {part} enhetspris til {price} og antall til {qty}" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "Del-ID" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "Delnavn" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "Delbeskrivelse" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "Revisjon" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Nøkkelord" @@ -5831,7 +6178,8 @@ msgstr "Del-bilde" msgid "Category ID" msgstr "Kategori-ID" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "Kategorinavn" @@ -5843,11 +6191,11 @@ msgstr "Standard plasserings-ID" msgid "Default Supplier ID" msgstr "Standard leverandør-ID" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "Variant av" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "Minimal lagerbeholdning" @@ -5855,18 +6203,19 @@ msgstr "Minimal lagerbeholdning" msgid "Used In" msgstr "Brukt i" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "Produseres" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "Minimal kostnad" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "Maksimal kostnad" @@ -5883,14 +6232,14 @@ msgstr "Overordnet navn" msgid "Category Path" msgstr "Sti til kategori" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Deler" @@ -5907,125 +6256,117 @@ msgstr "BOM artikkel-ID" msgid "Parent IPN" msgstr "Overodnet IPN" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "Del -IPN" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "Minstepris" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "Makspris" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "Innkommende innkjøpsordre" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "Utgående salgsordre" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "Lagervarer produsert av en produksjonsordre" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "Lagervarer påkrevd for produksjonsordre" -#: part/api.py:881 -msgid "Valid" -msgstr "Gyldig" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "Godkjenn hele Stykklisten" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "Dette alternativet må være valgt" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "Kategori" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "Standard plassering" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "Total lagerbeholdning" @@ -6034,7 +6375,7 @@ msgstr "Total lagerbeholdning" msgid "Input quantity for price calculation" msgstr "Sett inn antall for prisberegning" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Delkategori" @@ -6049,7 +6390,7 @@ msgstr "Delkategorier" msgid "Default location for parts in this category" msgstr "Standardplassering for deler i denne kategorien" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "Standard nøkkelord" msgid "Default keywords for parts in this category" msgstr "Standard nøkkelord for deler i denne kategorien" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "Ikon" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "Ikon (valgfritt)" @@ -6081,1002 +6422,1035 @@ msgstr "Ikon (valgfritt)" 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:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "Ugyldig valg for overordnet del" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, 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:595 +#: part/models.py:599 #, 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:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "IPN må samsvare med regex-mønsteret {pattern}" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "Lagervare med dette serienummeret eksisterer allerede" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "Duplikat av internt delnummer er ikke tillatt i delinnstillinger" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "Del med dette Navnet, internt delnummer og Revisjon eksisterer allerede." -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "Deler kan ikke tilordnes strukturelle delkategorier!" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Delnavn" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "Er Mal" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "Er delen en maldel?" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "Er delen en variant av en annen del?" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "Delbeskrivelse (valgfritt)" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "Del-nøkkelord for å øke synligheten i søkeresultater" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "Delkategori" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "Internt delnummer" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "Delrevisjon eller versjonsnummer" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "Hvor er denne artikkelen vanligvis lagret?" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "Standard leverandør" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "Standard leverandørdel" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "Standard utløp" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "Utløpstid (i dager) for lagervarer av denne delen" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "Minimum tillatt lagernivå" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "Måleenheter for denne delen" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "Kan denne delen bygges fra andre deler?" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "Kan denne delen brukes til å bygge andre deler?" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "Har denne delen sporing av unike artikler?" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "Kan denne delen kjøpes inn fra eksterne leverandører?" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "Kan denne delen selges til kunder?" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "Er denne delen aktiv?" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 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:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "Kontrollsum for BOM" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "Lagret BOM-kontrollsum" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "Stykkliste sjekket av" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "Stykkliste sjekket dato" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "Opprettingsbruker" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "Eier ansvarlig for denne delen" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "Siste lagertelling" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "Selg flere" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "Valuta som brukes til å bufre prisberegninger" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "Minimal BOM-kostnad" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "Minste kostnad for komponentdeler" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "Maksimal BOM-kostnad" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "Maksimal kostnad for komponentdeler" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "Minimal innkjøpskostnad" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "Minimal historisk innkjøpskostnad" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "Maksimal innkjøpskostnad" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "Maksimal historisk innkjøpskostnad" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "Minimal intern pris" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "Minimal kostnad basert på interne prisbrudd" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "Maksimal intern pris" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "Maksimal kostnad basert på interne prisbrudd" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "Minimal leverandørpris" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "Minimumspris for del fra eksterne leverandører" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "Maksimal leverandørpris" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "Maksimalpris for del fra eksterne leverandører" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "Minimal Variantkostnad" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "Beregnet minimal kostnad for variantdeler" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "Maksimal Variantkostnad" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "Beregnet maksimal kostnad for variantdeler" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "Overstyr minstekostnad" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "Overstyr maksimal kostnad" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "Beregnet samlet minimal kostnad" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "Beregnet samlet maksimal kostnad" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "Minimal salgspris" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "Minimal salgspris basert på prisbrudd" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "Maksimal Salgspris" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "Maksimal salgspris basert på prisbrudd" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "Minimal Salgskostnad" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "Minimal historisk salgspris" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "Maksimal Salgskostnad" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "Maksimal historisk salgspris" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "Del for varetelling" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "Antall" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "Antall individuelle lagerenheter på tidspunkt for varetelling" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "Total tilgjengelig lagerbeholdning på tidspunkt for varetelling" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "Dato" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "Dato for utført lagertelling" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "Flere notater" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "Bruker som utførte denne lagertellingen" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "Minimal lagerkostnad" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "Estimert minimal kostnad for lagerbeholdning" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "Maksimal lagerkostnad" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "Estimert maksimal kostnad for lagerbeholdning" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "Rapport" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "Lagertellingsrapportfil (generert internt)" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "Antall deler" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "Antall deler dekket av varetellingen" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "Bruker som forespurte varetellingsrapporten" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "Valg må være unike" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "Testmaler kan bare bli opprettet for sporbare deler" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "Testnavn" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "Angi et navn for testen" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "Testbeskrivelse" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "Legg inn beskrivelse for denne testen" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Aktivert" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "Påkrevd" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "Er det påkrevd at denne testen bestås?" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "Krever verdi" -#: part/models.py:3515 +#: part/models.py:3531 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:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "Krever vedlegg" -#: part/models.py:3522 +#: part/models.py:3538 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:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "Valg" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "Sjekkboksparameter kan ikke ha enheter" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "Sjekkboksparameter kan ikke ha valg" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "Navn på parametermal må være unikt" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "Parameternavn" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "Fysisk enheter for denne parameteren" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "Parameterbeskrivelse" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "Sjekkboks" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "Er dette parameteret en sjekkboks?" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "Gyldige valg for denne parameteren (kommaseparert)" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "Ugyldig valg for parameterverdi" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "Overordnet del" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Parametermal" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "Parameterverdi" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Standardverdi" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "Standard Parameterverdi" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "Del-ID eller delnavn" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "Unik del-ID-verdi" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "Delens interne delnummerverdi" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "Nivå" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "BOM-nivå" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "Velg overordnet del" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "Underordnet del" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "Velg del som skal brukes i BOM" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "BOM-antall for denne BOM-artikkelen" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "Denne BOM-artikkelen er valgfri" -#: part/models.py:4071 +#: part/models.py:4156 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:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Svinn" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Forventet produksjonssvinn (absolutt eller prosent)" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "BOM-artikkelreferanse" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "BOM-artikkelnotater" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "Kontrollsum" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "BOM-linje kontrollsum" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "Godkjent" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "Denne BOM-artikkelen er godkjent" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "Arves" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Denne BOM-artikkelen er arvet fra stykkliste for variantdeler" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "Tillat Varianter" -#: part/models.py:4119 +#: part/models.py:4204 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:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "Antall må være heltallsverdi for sporbare deler" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "Underordnet del må angis" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "BOM-artikkel erstatning" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "Erstatningsdel kan ikke være samme som hoveddelen" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "Overordnet BOM-artikkel" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "Erstatningsdel" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "Del 1" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "Del 2" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "Velg relatert del" -#: part/models.py:4440 +#: part/models.py:4525 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:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "Duplikatforhold eksisterer allerede" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Underkategorier" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "Innkjøpsvaluta for lagervaren" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "Ingen deler valgt" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "Velg kategori" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "Original Del" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "Velg original del å duplisere" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "Kopier Bilde" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "Kopier bilde fra originaldel" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Kopier Stykkliste" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "Kopier stykkliste fra original del" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "Kopier parametere" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "Kopier parameterdata fra originaldel" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "Kopier notater" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "Kopier notater fra originaldel" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "Innledende lagerbeholdning" -#: part/serializers.py:485 +#: part/serializers.py:503 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:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "Innledende lagerplassering" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "Angi initiell lagerplasering for denne delen" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "Velg leverandør (eller la stå tom for å hoppe over)" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "Velg produsent (eller la stå tom for å hoppe over)" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "Produsentens delenummer" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "Valgt firma er ikke en gyldig leverandør" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "Valgt firma er ikke en gyldig produsent" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "Produsentdel som matcher dette MPN-et, finnes allerede" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "Leverandørdel som matcher denne SKU-en, finnes allerede" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "Dupliser del" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "Kopier innledende data fra en annen del" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Innledende lagerbeholdning" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "Lag en del med innledende lagermengde" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "Leverandøropplysninger" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "Legg til innledende leverandørinformasjon for denne delen" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "Kopier kategoriparametre" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "Kopier parametermaler fra valgt delkategori" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "Eksisterende bilde" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "Filnavn for et eksisterende del-bilde" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "Bildefilen finnes ikke" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "Begrens lagerbeholdningsrapport til en bestemt del og enhver variant av delen" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "Begrens lagerbeholdningsrapport til en bestemt delkategori og alle underkategorier" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "Begrens lagerbeholdningsrapport til en bestemt plasering og eventuelle underplasseringer" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "Ekskluder ekstern lagerbeholdning" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "Ekskluder lagervarer i eksterne lokasjoner" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "Generer rapport" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "Genererer rapport som inneholder beregnede lagerdata" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "Oppdater deler" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "Oppdater spesifiserte deler med beregnede lagerbeholdningsdata" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "Lagerbeholdningsfunksjonalitet er ikke aktivert" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "Overstyr beregnet verdi for minimumspris" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "Valuta for minstepris" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "Overstyr beregnet verdi for maksimal pris" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "Valuta for maksimal pris" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "Oppdater" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "Oppdater priser for denne delen" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, 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:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "Minsteprisen kan ikke være større enn maksimal pris" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "Maksimal pris kan ikke være mindre enn minstepris" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "Velg del å kopiere BOM fra" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "Fjern eksisterende data" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "Fjern eksisterende BOM-artikler før kopiering" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "Inkluder arvede" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "Inkluder BOM-artikler som er arvet fra maldeler" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "Hopp over ugyldige rader" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "Aktiver dette alternativet for å hoppe over ugyldige rader" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "Kopier erstatningsdeler" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "Kopier erstatningsdeler når BOM-elementer dupliseres" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "Nullstill eksisterende BOM" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "Fjern eksisterende BOM-artikler før opplastning" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "Ingen del-kolonne angitt" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "Flere samsvarende deler funnet" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "Ingen samsvarende del funnet" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "Delen er ikke betegnet som en komponent" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "Antall ikke oppgitt" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "Ugyldig antall" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "Minst en BOM-artikkel kreves" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "Totalt Antall" @@ -7394,7 +7768,7 @@ msgstr "Abonner på varsler for denne delen" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "Skriv ut etikett" @@ -7416,7 +7790,7 @@ msgstr "Tell delbeholdning" msgid "Transfer part stock" msgstr "Overfør delbeholdning" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "Delhandlinger" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "Minimalt lagerbeholdningsnivå" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "Varianter" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "Lagerbeholdning" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "Ingen lagerbeholdning" @@ -7847,7 +8221,7 @@ msgstr "Strekkoden samsvarer ikke med eksisterende lagervare" msgid "Stock item does not match line item" msgstr "Lagervare samsvarer ikke med linjeelement" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "Utilstrekkelig lagerbeholdning" @@ -7942,7 +8316,7 @@ msgstr "Forsendelsen er allerede levert" msgid "Quantity to allocate" msgstr "Antall å tildele" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "Utskrift av etikett mislyktes" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "Testresultater" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "Resultat" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "Ingen resultat" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "Installerte artikler" @@ -8720,10 +9094,6 @@ msgstr "company_image-taggen krever en Company-instans" msgid "Location ID" msgstr "Plasserings-ID" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "Plasseringsnavn" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "Leverandørnavn" msgid "Customer ID" msgstr "Kunde-ID" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "Installert i" @@ -8782,7 +9152,7 @@ msgstr "Gjennomgang kreves" msgid "Delete on Deplete" msgstr "Slett når oppbrukt" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "Ekstern plassering" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "Del-tre" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "Utløpsdato før" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "Utløpsdato etter" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "Foreldet" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "Antall kreves" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "Gyldig del må oppgis" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "Oppgitt leverandørdel eksisterer ikke" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "Leverandørdelen har en pakkestørrelse definert, men flagget \"use_pack_size\" er ikke satt" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "Serienumre kan ikke angis for en ikke-sporbar del" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "Lagerplasseringstype" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "Lagerplasseringstyper" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "Standard ikom for alle plasseringer som ikke har satt et ikon (valgfritt)" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "Lagerplassering" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "Lagerplasseringer" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "Eier" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "Velg eier" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "Lagervarer kan ikke knyttes direkte mot en strukturell lagerplassering, men kan knyttes mot underplasseringer." -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "Ekstern" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "Dette er en ekstern lagerplassering" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "Plasseringstype" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "Lagerplasseringstype for denne plasseringen" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "De kan ikke gjøre denne plasseringen strukturell, da noen lagervarer allerede er plassert i den!" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "Lagervarer kan ikke plasseres i strukturelle plasseringer!" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "Lagervare kan ikke opprettes for virtuelle deler" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "Deltype ('{self.supplier_part.part}') må være {self.part}" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "Antall må være 1 for produkt med et serienummer" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "Serienummeret kan ikke angis hvis antall er større enn 1" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "Elementet kan ikke tilhøre seg selv" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "Elementet må ha en produksjonsrefereanse om is_building=True" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "Produksjonsreferanse peker ikke til samme del-objekt" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "Overordnet lagervare" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "Basisdel" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "Velg en tilsvarende leverandørdel for denne lagervaren" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "Hvor er denne lagervaren plassert?" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "Inpakningen denne lagervaren er lagret i" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "Er denne artikkelen montert i en annen artikkel?" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "Serienummer for denne artikkelen" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "Batchkode for denne lagervaren" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "Lagerantall" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "Kildeproduksjon" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "Produksjon for denne lagervaren" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "Brukt av" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "Produksjonsordren som brukte denne lagervaren" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "Kildeinnkjøpsordre" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "Innkjøpsordre for denne lagervaren" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "Tildelt Salgsordre" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "Utløpsdato for lagervare. Lagerbeholdning vil bli ansett som utløpt etter denne datoen" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "Slett når oppbrukt" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "Slett lagervaren når beholdningen er oppbrukt" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "Innkjøpspris per enhet på kjøpstidspunktet" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "Konvertert til del" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "Delen er ikke angitt som sporbar" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "Antall må være heltall" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "Antall kan ikke overstige tilgjengelig lagerbeholdning ({self.quantity})" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "Serienumre må være en liste over tall" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "Antallet stemmer ikke overens med serienumrene" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "Seriernummer eksisterer allerede" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "Lagervare har blitt tildelt en salgsordre" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "Lagervare er montert i en annen artikkel" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "Lagervare inneholder andre artikler" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "Lagervare har blitt tildelt til en kunde" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "Lagervare er for tiden i produksjon" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "Serialisert lagerbeholdning kan ikke slås sammen" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "Duplisert lagervare" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "Lagervarer må referere til samme del" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "Lagervarer må referere til samme leverandørdel" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "Lagerstatuskoder må være like" -#: stock/models.py:1901 +#: stock/models.py:1936 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:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "Oppføringsnotater" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "Verdi må angis for denne testen" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "Vedlegg må lastes opp for denne testen" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "Testresultat" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "Testens verdi" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "Vedlegg til testresultat" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "Testnotater" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "Serienummeret er for høyt" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "Overodnet element" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "Bruk pakningsstørrelse når du legger til: antall definert er antall pakker" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "Utløpt" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "Underordnede artikler" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "Innkjøpspris for denne lagervaren, per enhet eller forpakning" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "Angi antall lagervarer som skal serialiseres" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "Antall kan ikke overstige tilgjengelig lagerbeholdning ({q})" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "Angi serienummer for nye artikler" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "Til Lagerplassering" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "Valgfritt notatfelt" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "Serienummer kan ikke tilordnes denne delen" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "Velg lagervare å montere" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "Antall å installere" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "Angi antallet elementer som skal installeres" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "Legg til transaksjonsnotat (valgfritt)" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "Antall å installere må være minst 1" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "Lagervaren er utilgjengelig" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "Valgt del er ikke i stykklisten" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "Antall å installere må ikke overskride tilgjengelig antall" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "Lagerplassering for den avinstallerte artikkelen" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "Velg del å konvertere lagervare til" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "Valgt del er ikke et gyldig alternativ for konvertering" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "Kan ikke konvertere lagerprodukt med tildelt leverandørdel" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "Lagerplassering for returnert artikkel" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "Velg lagervarer for å endre status" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "Ingen lagervarer valgt" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Underplasseringer" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "Delen må være salgbar" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "Artikkelen er tildelt en salgsordre" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "Artikkelen er tildelt en produksjonsordre" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "Kunde å tilordne lagervarer" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "Valgt firma er ikke en kunde" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "Lagervare-tildelignsnotater" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "En liste av lagervarer må oppgis" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "Notater om lagersammenslåing" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "Tillat forskjellige leverandører" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "Tillat lagervarer med forskjellige leverandørdeler å slås sammen" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "Tillat forskjellig status" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "Tillat lagervarer med forskjellige statuskoder å slås sammen" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "Minst to lagervarer må oppgis" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "Lagervare primærnøkkel verdi" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "Lagervare statuskode" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "Lager transaksjonsnotater" @@ -9648,10 +10061,6 @@ msgstr "Slett lagervare" msgid "Build" msgstr "Produksjon" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "Overodnet element" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "Ingen produsent valgt" @@ -9727,11 +10136,6 @@ msgstr "Denne lagervaren har ikke bestått alle påkrevde tester" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "Denne lagervaren utløp %(item.expiry_date)s" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "Utløpt" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "Sporing av lager" msgid "Allocations" msgstr "Tildelinger" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "Underordnede artikler" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "Tilgang nektet" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Slett" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "Kontoinnstillinger" msgid "Change Password" msgstr "Endre passord" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "Brukernavn" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "Fornavn" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "Etternavn" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "Følgende e-postadresser er tilknyttet din konto:" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "Følgende deler har for lav lagerbeholdning" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "Antall som kreves" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "Klikk på følgende lenke for å se denne delen" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "Minimum antall" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "Send" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "Legg til" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "Sist gang tokenet ble brukt" msgid "Revoked" msgstr "Tilbakekalt" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "Tillatelse satt" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Gruppe" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Visning" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Tillatelse til å se elementer" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Tillatelse til å legge til elementer" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Endre" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Tillatelse til å endre elementer" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Tillatelse til å slette elementer" diff --git a/src/backend/InvenTree/locale/pl/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/pl/LC_MESSAGES/django.po index 2393d660c8..5608559051 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "Nie znaleziono punktu końcowego API" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Użytkownik nie ma uprawnień do przeglądania tego modelu" @@ -56,21 +56,21 @@ msgstr "Szczegóły błędu można znaleźć w panelu administracyjnym" msgid "Enter date" msgstr "Wprowadź dane" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Rejestracja jest wyłączona." @@ -348,8 +348,8 @@ msgstr "chiński (tradycyjny)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Logowanie do aplikacji" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Wtyczka Metadane" msgid "JSON metadata field, for use by external plugins" msgstr "Pole metadanych JSON, do użycia przez wtyczki zewnętrzne" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Nieprawidłowo sformatowany wzór" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Określono nieznany format klucza" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Brak wymaganego formatu klucza" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Pole odniesienia nie może być puste" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Odniesienie musi być zgodne z wymaganym wzorem" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Numer odniesienia jest zbyt duży" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Duplikaty nazw nie mogą istnieć pod tym samym rodzicem" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Błędny wybór" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Błędny wybór" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Nazwa" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Nazwa" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Nazwa" msgid "Description" msgstr "Opis" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Opis (opcjonalny)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Ścieżka" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Notatki Markdown (opcjonalne)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Dane kodu kreskowego" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Dane kodu kreskowego stron trzecich" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Hasz kodu kreskowego" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Unikalny hasz danych kodu kreskowego" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Znaleziono istniejący kod kreskowy" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Błąd serwera" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Błąd został zapisany w logach serwera." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Numer musi być prawidłowy" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Waluta" msgid "Select currency from available options" msgstr "Wybierz walutę z dostępnych opcji" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Aktywny" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Nie masz uprawnień do zmiany tej roli użytkownika." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Tylko superużytkownicy mogą tworzyć nowych użytkowników" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Twoje konto zostało utworzone." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Zresetuj hasło" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Witamy w InvenTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Nieprawidłowa wartość" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Plik danych" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Wybierz plik danych do przesłania" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Nieobsługiwany typ pliku" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Plik jest zbyt duży" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Nie znaleziono kolumn w pliku" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Nie znaleziono wierszy danych w pliku" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Nie podano wierszy danych" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Nie podano kolumn danych" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Brakuje wymaganej kolumny: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Zduplikowana kolumna: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Obrazek zewnętrzny" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "Adres URL zdalnego pliku obrazu" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Pobieranie obrazów ze zdalnego URL nie jest włączone" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Sprawdzenie robotnika w tle nie powiodło się" @@ -654,47 +711,48 @@ msgstr "Informacja systemowa" msgid "About InvenTree" msgstr "O InvenTree" -#: build/api.py:255 +#: build/api.py:248 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:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Materiał eksploatacyjny" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Opcjonalne" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Śledzony" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Przydzielono" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Dostępne" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Zlecenie Budowy" msgid "Build Orders" msgstr "Zlecenia budowy" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Nieprawidłowy wybór kompilacji nadrzędnej" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "Odpowiedzialny użytkownik lub grupa muszą być określone" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "Nie można zmienić elementu kompletacji" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Odwołanie do zamówienia wykonania" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Odwołanie do zamówienia wykonania" msgid "Reference" msgstr "Referencja" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Krótki opis produkcji (opcjonalny)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Budowa nadrzędna" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Zamówienie budowy, do którego budowa jest przypisana" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Zamówienie budowy, do którego budowa jest przypisana" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Zamówienie budowy, do którego budowa jest przypisana" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Zamówienie budowy, do którego budowa jest przypisana" msgid "Part" msgstr "Komponent" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Wybierz część do budowy" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Odwołanie do zamówienia sprzedaży" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Zamówienie sprzedaży, do którego budowa jest przypisana" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Lokalizacja źródła" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Lokalizacja docelowa" -#: build/models.py:272 +#: build/models.py:294 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:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Ilość do stworzenia" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Ilość przedmiotów do zbudowania" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Ukończone elementy" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Ilość produktów magazynowych które zostały ukończone" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Status budowania" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Kod statusu budowania" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Kod partii" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Kod partii dla wyjścia budowy" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Data utworzenia" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Docelowy termin zakończenia" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Data zakończenia" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "zrealizowane przez" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Wydany przez" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Użytkownik, który wydał to zamówienie" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Użytkownik, który wydał to zamówienie" msgid "Responsible" msgstr "Odpowiedzialny" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "Użytkownik lub grupa odpowiedzialna za te zlecenie produkcji" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Link Zewnętrzny" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Link do zewnętrznego adresu URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Priorytet budowy" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Priorytet tego zamówienia produkcji" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Priorytet tego zamówienia produkcji" msgid "Project Code" msgstr "Kod projektu" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Kod projektu dla tego zlecenia produkcji" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Kolejność kompilacji {build} została zakończona" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "Kolejność kompilacji została zakończona" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Nie określono danych wyjściowych budowy" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Budowanie wyjścia jest już ukończone" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "Skompilowane dane wyjściowe nie pasują do kolejności kompilacji" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "Ilość musi być większa niż zero" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "Ilość nie może być większa niż ilość wyjściowa" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, 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:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Zbuduj obiekt" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Zbuduj obiekt" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Zbuduj obiekt" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Zbuduj obiekt" msgid "Quantity" msgstr "Ilość" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Wymagana ilość dla zlecenia produkcji" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Pozycja magazynowa jest nadmiernie przydzielona" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Alokowana ilość musi być większa niż zero" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Ilość musi wynosić 1 dla serializowanych zasobów" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "Wybrana pozycja magazynowa nie pasuje do pozycji w zestawieniu BOM" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "Wybrana pozycja magazynowa nie pasuje do pozycji w zestawieniu BOM" msgid "Stock Item" msgstr "Element magazynowy" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Lokalizacja magazynowania przedmiotu" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Ilość zapasów do przydzielenia do produkcji" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Zainstaluj do" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Docelowa lokalizacja magazynowa przedmiotu" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "Nazwa komponentu" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Numer seryjny" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "Lokalizacja" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Automatycznie przydzielaj numery seryjne" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "Automatycznie przydzielaj wymagane elementy z pasującymi numerami seryjnymi" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "Poniższe numery seryjne już istnieją lub są nieprawidłowe" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "Odrzuć przydziały" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Zaakceptuj niekompletną alokację" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "Usuń produkcje, które nie zostały zakończone" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Niedozwolone" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Zaakceptuj jako zużyte przez zlecenie produkcji" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Nadmierny przydział zasobów" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Zaakceptuj nieprzydzielone" -#: build/serializers.py:696 +#: build/serializers.py:700 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:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "Wymagany stan nie został w pełni przypisany" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Akceptuj niekompletne" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "Towar musi znajdować się w magazynie" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 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:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Wyklucz lokalizację" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "Wyklucz produkty magazynowe z wybranej lokalizacji" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Towary magazynowe w wielu lokalizacjach mogą być stosowane zamiennie" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Zastępczy magazyn" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "Przedmiot opcjonalny" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Numer producenta komponentu" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "IPN komponentu" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Możliwość śledzenia" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "Element BOM" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "W Zamówieniu" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "W produkcji" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "Dostępna ilość" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Produkcja" msgid "Cancelled" msgstr "Anulowano" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Źródło magazynu" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Przeznaczenie" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "Brak wtyczki" @@ -1905,1591 +2034,1604 @@ msgstr "Data ostatniej aktualizacji" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Unikalny kod projektu" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Opis projektu" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "Użytkownik lub grupa odpowiedzialna za to zamówienie" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "Klucz ustawień (musi być unikalny - niewrażliwy na wielkość liter)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "Ustawienia wartości" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "Wybrana wartość nie jest poprawną opcją" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "Wartość musi być wartością binarną" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "Wartość musi być liczbą całkowitą" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "Ciąg musi być unikatowy" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Brak grupy" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Wymagane ponowne uruchomienie" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "Zmieniono ustawienie, które wymaga restartu serwera" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "Oczekujące migracje" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "Liczba oczekujących migracji bazy danych" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "Nazwa instancji serwera" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "Użyj nazwy instancji" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Nazwa firmy" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Wewnętrzna nazwa firmy" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "Bazowy URL" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "Bazowy adres URL dla instancji serwera" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Domyślna waluta" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "Interwał aktualizacji waluty" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "Jak często aktualizować kursy wymiany walut (ustaw zero aby wyłączyć)" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "dni" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "Wtyczka aktualizacji waluty" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Pobierz z adresu URL" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Zezwól na pobieranie zewnętrznych obrazów i plików z zewnętrznego URL" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "Limit rozmiaru pobierania" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "Ścisła weryfikacja adresu URL" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "Wymagaj specyfikacji schematu podczas sprawdzania poprawności adresów URL" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Wymagaj potwierdzenia" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Wymagaj wyraźnego potwierdzenia dla określonych działań." -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "Głębokość drzewa" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "Domyślna głębokość drzewa dla widoku drzewa. Głębsze poziomy mogą być leniwe, gdy są potrzebne." -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "Częstotliwość sprawdzania aktualizacji" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "Jak często aktualizować kursy wymiany walut (ustaw zero aby wyłączyć)" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Automatyczna kopia zapasowa" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Włącz automatyczną kopię zapasową bazy danych i plików multimedialnych" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Interwał automatycznego tworzenia kopii zapasowych" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "Określ liczbę dni między zdarzeniami automatycznej kopii zapasowej" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "Interwał usuwania zadań" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Obsługa kodu kreskowego" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 +msgid "Enable revision field for Part" +msgstr "" + +#: common/models.py:1412 +msgid "Allow Deletion from Assembly" +msgstr "" + +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" +msgstr "" + +#: common/models.py:1418 msgid "IPN Regex" msgstr "Wyrażenie regularne IPN" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Zezwól na powtarzający się IPN" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "Zezwól na edycję IPN" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "Skopiuj BOM komponentu" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Szablon" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Złożenie" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Komponent" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Możliwość zakupu" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "Części są domyślnie z możliwością zakupu" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Możliwość sprzedaży" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Części są domyślnie z możliwością sprzedaży" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Możliwość śledzenia" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "Części są domyślnie z możliwością śledzenia" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Wirtualny" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Części są domyślnie wirtualne" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Pokaż powiązane części" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "Użyj cennika dostawcy" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "Nadpisanie historii zakupów" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Ceny wewnętrzne" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Włącz drukowanie etykiet" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "Włącz drukowanie etykiet z interfejsu WWW" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "DPI etykiety" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Włącz raporty" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Tryb Debugowania" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Rozmiar strony" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Domyślna wielkość strony dla raportów PDF" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "Włącz generowanie raportów testów" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "Automatycznie wypełniaj zlecenia zakupu" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "Automatycznie oznacz zlecenia jako zakończone po odebraniu wszystkich pozycji" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "Włącz opcję zapomnianego hasła" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "Włącz funkcję zapomnianego hasła na stronach logowania" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Włącz rejestrację" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "Włącz samodzielną rejestrację dla użytkowników na stronach logowania" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "Włącz SSO" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "Włącz SSO na stronach logowania" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" -msgstr "Adres e-mail jest wymagany" - -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "Autouzupełnianie użytkowników SSO" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "Automatycznie wypełnij dane użytkownika z danych konta SSO" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "E-mail dwa razy" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "Przy rejestracji dwukrotnie zapytaj użytkowników o ich adres e-mail" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "Hasło dwukrotnie" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "Przy rejestracji dwukrotnie zapytaj użytkowników o ich hasło" - -#: common/models.py:1939 -msgid "Allowed domains" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" -#: common/models.py:1947 -msgid "Group on signup" -msgstr "Grupuj przy rejestracji" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" -msgstr "Wymuś MFA" - #: common/models.py:1954 -msgid "Users must use multifactor security." -msgstr "Użytkownicy muszą używać zabezpieczeń wieloskładnikowych." - -#: common/models.py:1959 -msgid "Check plugins on startup" -msgstr "Sprawdź wtyczki przy starcie" - -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" + +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" + +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" -msgstr "Włącz integrację URL" +msgid "Email required" +msgstr "Adres e-mail jest wymagany" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" -msgstr "Włącz wtyczki, aby dodać ścieżki URL" - -#: common/models.py:1983 -msgid "Enable navigation integration" +msgid "Require user to supply mail on signup" msgstr "" +#: common/models.py:1982 +msgid "Auto-fill SSO users" +msgstr "Autouzupełnianie użytkowników SSO" + #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" -msgstr "" +msgid "Automatically fill out user-details from SSO account-data" +msgstr "Automatycznie wypełnij dane użytkownika z danych konta SSO" #: common/models.py:1990 -msgid "Enable app integration" -msgstr "Włącz integrację z aplikacją" +msgid "Mail twice" +msgstr "E-mail dwa razy" #: common/models.py:1991 -msgid "Enable plugins to add apps" -msgstr "Włącz wtyczki, aby dodać aplikacje" +msgid "On signup ask users twice for their mail" +msgstr "Przy rejestracji dwukrotnie zapytaj użytkowników o ich adres e-mail" + +#: common/models.py:1996 +msgid "Password twice" +msgstr "Hasło dwukrotnie" #: common/models.py:1997 -msgid "Enable schedule integration" -msgstr "" +msgid "On signup ask users twice for their password" +msgstr "Przy rejestracji dwukrotnie zapytaj użytkowników o ich hasło" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" -msgstr "Włącz wtyczki, aby uruchamiać zaplanowane zadania" +#: common/models.py:2002 +msgid "Allowed domains" +msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" -msgstr "" +#: common/models.py:2010 +msgid "Group on signup" +msgstr "Grupuj przy rejestracji" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" -msgstr "" +#: common/models.py:2018 +msgid "Enforce MFA" +msgstr "Wymuś MFA" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." +msgstr "Użytkownicy muszą używać zabezpieczeń wieloskładnikowych." + +#: common/models.py:2024 +msgid "Check plugins on startup" +msgstr "Sprawdź wtyczki przy starcie" + +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" -msgstr "" - -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" -msgstr "" - -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 +msgid "Enable URL integration" +msgstr "Włącz integrację URL" + +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" +msgstr "Włącz wtyczki, aby dodać ścieżki URL" + +#: common/models.py:2048 +msgid "Enable navigation integration" +msgstr "" + +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" +msgstr "Włącz integrację z aplikacją" + +#: common/models.py:2056 +msgid "Enable plugins to add apps" +msgstr "Włącz wtyczki, aby dodać aplikacje" + +#: common/models.py:2062 +msgid "Enable schedule integration" +msgstr "" + +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" +msgstr "Włącz wtyczki, aby uruchamiać zaplanowane zadania" + +#: common/models.py:2069 +msgid "Enable event integration" +msgstr "" + +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" +msgstr "" + +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "Klucz ustawień (musi być unikalny - niewrażliwy na wielkość liter" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "Pokaż obserwowane części" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "Pokaż obserwowane części na stronie głównej" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "Pokaż obserwowane kategorie" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "Pokaż obserwowane kategorie części na stronie głównej" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "Pokaż najnowsze części" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "Pokaż najnowsze części na stronie głównej" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "Pokaż niski stan magazynowy" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "Pokaż elementy o niskim stanie na stronie głównej" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "Pokaż wymagany stan zapasów" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "" -#: common/models.py:2246 +#: common/models.py:2311 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "Szukaj części" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2259 +#: common/models.py:2324 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2265 +#: common/models.py:2330 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "Ukryj nieaktywne części" -#: common/models.py:2271 +#: common/models.py:2336 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "" -#: common/models.py:2277 +#: common/models.py:2342 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "" -#: common/models.py:2283 +#: common/models.py:2348 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2290 +#: common/models.py:2355 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "" -#: common/models.py:2309 +#: common/models.py:2374 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "Wyszukaj zlecenia zakupu" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "Wyklucz nieaktywne zlecenia zakupu" -#: common/models.py:2322 +#: common/models.py:2387 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2329 +#: common/models.py:2394 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2336 +#: common/models.py:2401 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2350 +#: common/models.py:2415 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "" -#: common/models.py:2358 +#: common/models.py:2423 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "Pokaż ilość w formularzach" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "Stały pasek nawigacyjny" -#: common/models.py:2389 +#: common/models.py:2454 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "Format daty" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "Preferowany format wyświetlania dat" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Planowanie komponentów" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Użytkownik" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Cena" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "Punkt końcowy" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Aktywny" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "Sekret" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "Współdzielony sekret dla HMAC" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "Id wiadomości" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "Unikalny identyfikator dla tej wiadomości" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "Host, od którego otrzymano tę wiadomość" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "Nagłówek" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "Nagłówek tej wiadomości" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "Zawartość" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "Łącze" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Autor" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "Obraz" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Załącznik" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Brak pliku" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Brak zewnętrznego odnośnika" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Wybierz plik do załączenia" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Komentarz" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "Jest uruchomiony" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "Oczekujce zadania" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "Zaplanowane zadania" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "Zadania zakończone błędem" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "ID zadania" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "Unikalny identyfikator zadania" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "Blokada" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "Czas blokady" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "Nazwa zadania" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "Funkcja" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "Nazwa funkcji" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "Argumenty" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "Argumenty zadania" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Nazwa pliku" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "Komponenty zaimportowane" msgid "Previous Step" msgstr "Poprzedni krok" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "Komponent jest aktywny" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "Producent jest aktywny" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Firma" @@ -3843,8 +3993,9 @@ msgstr "Numer telefonu kontaktowego" msgid "Contact email address" msgstr "Kontaktowy adres e-mail" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" -msgstr "jest klientem" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "Czy sprzedajesz produkty tej firmie?" #: company/models.py:174 -msgid "is supplier" -msgstr "jest dostawcą" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "Czy kupujesz przedmioty od tej firmy?" #: company/models.py:180 -msgid "is manufacturer" -msgstr "jest producentem" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "Czy to przedsiębiorstwo produkuje części?" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" -msgstr "" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Adres" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "Kod pocztowy miasto/region" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "Stan/Województwo" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "Stan lub województwo" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "Kraj" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "Notatki przewozowe kuriera" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "Notatki dla kuriera" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "Wewnętrzne notatki przewozowe" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "Notatki wysyłkowe do użytku wewnętrznego" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "Komponent producenta" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Część bazowa" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "Wybierz część" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Producent" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Wybierz producenta" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Numer producenta komponentu" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Nazwa parametru" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Wartość" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Wartość parametru" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "Jednostki" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "Jednostki parametru" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Dostawca" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Wybierz dostawcę" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Uwaga" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "koszt podstawowy" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "Opakowanie" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "Opakowanie części" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "Opakowanie części" msgid "Pack Quantity" msgstr "Ilość w opakowaniu" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "wielokrotność" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "Zamów wiele" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "Dostępność zaktualizowana" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "Domyślna waluta używana dla tego dostawcy" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "Na stanie" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "Nieaktywny" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "Usuń obraz" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Klient" @@ -4278,13 +4448,6 @@ msgstr "Klient" msgid "Uses default currency" msgstr "Używa domyślnej waluty" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Adres" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Telefon" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "Usuń komponent producenta" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "Komponent wewnętrzny" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "Nowy parametr" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Nowa firma" msgid "Placed" msgstr "Umieszczony" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "Dane" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "Ważny" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "Kopie" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "Liczba kopii do wydrukowania dla każdej etykiety" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "Połączono" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "Nieznany" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "Drukowanie" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "Brak mediów" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "Rozłączono" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "Drukarka etykiet" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "Bezpośrednio wydrukuj etykiety dla różnych elementów." -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "Lokalizacja drukarki" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "Brak błędów" msgid "Initialized" msgstr "Zainicjalizowany" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "Cena całkowita" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "Status zamówienia" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "Posiada ceny" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "Nie znaleziono pasującego zlecenia zakupu" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "Zamówienie" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "Zamówienie oczekujące" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "Zamówienie oczekujące" msgid "Purchase Order" msgstr "Zlecenie zakupu" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "Link do zewnętrznej witryny" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "odebrane przez" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "Data wydania" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "Data wystawienia zamówienia" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "Wartość musi być liczbą dodatnią" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "Odebrane" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "Cena zakupu" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "Cena zakupu jednostkowego" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "Gdzie kupujący chce przechowywać ten przedmiot?" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "Cena sprzedaży" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "Jednostkowa cena sprzedaży" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Wysłane" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "Wysłana ilość" -#: order/models.py:1672 +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "Data wysyłki" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "Sprawdzone przez" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "Użytkownik, który sprawdził tę wysyłkę" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "Przesyłka" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "Numer przesyłki" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "Numer śledzenia" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "Informacje o śledzeniu przesyłki" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "Przesyłka została już wysłana" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Zarezerwowana ilość nie może przekraczać ilości na stanie" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "Linia" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "Komponent" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "Zamówienie nie może zostać anulowane" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "Zlecenie zakupu musi być określone" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "Dostawca musi być zgodny ze zleceniem zakupu" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "Zlecenie zakupu musi być zgodne z dostawcą" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "Pozycja nie pasuje do zlecenia zakupu" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Kod kreskowy" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "ID komponentu" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "Nazwa komponentu" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "Wersja" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Słowa kluczowe" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "ID kategorii" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "Wariant" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "Minimalny stan magazynowy" @@ -5855,18 +6203,19 @@ msgstr "Minimalny stan magazynowy" msgid "Used In" msgstr "Użyte w" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "Ścieżka kategorii" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Części" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "IPN komponentu" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "Nadchodzące zlecenie zakupu" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "Ważny" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "Ta opcja musi być zaznaczona" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "Kategoria" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "Domyślna lokalizacja" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Kategoria komponentu" @@ -6049,7 +6390,7 @@ msgstr "Kategorie części" msgid "Default location for parts in this category" msgstr "Domyślna lokalizacja dla komponentów w tej kategorii" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "Domyślne słowa kluczowe" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "Nieprawidłowy wybór dla części nadrzędnej" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Nazwa komponentu" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "Czy szablon" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "Czy ta część stanowi szablon części?" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "Czy ta część jest wariantem innej części?" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "Domyślne wygasanie" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "Czy ten komponent może być zbudowany z innych komponentów?" -#: part/models.py:1059 +#: part/models.py:1063 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:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "Czy ta część wymaga śledzenia każdego towaru z osobna?" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "Czy ta część jest aktywna?" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 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:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "Tworzenie użytkownika" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "Ostatnia inwentaryzacja" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "Sprzedaj wiele" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "Data" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "Nazwa testu" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "Testowy opis" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "Wprowadź opis do tego testu" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Aktywne" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "Wymagane" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "Wymaga wartości" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "Wymaga załącznika" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "Część nadrzędna" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "Dane" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "Wartość parametru" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Wartość domyślna" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "Unikalny wartość ID komponentu" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "Wartość IPN części" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "Poziom" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "Wybierz część nadrzędną" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "Podczęść" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "Ten element BOM jest opcjonalny" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "Notatki pozycji BOM" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "Suma kontrolna" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "Zatwierdzone" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "Zezwalaj na warianty" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "Część zastępcza" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "Część 1" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "Część 2" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "Wybierz powiązaną część" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Podkategorie" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "Waluta zakupu tego towaru" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "Kopiuj obraz" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Kopiuj BOM" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "Kopiuj parametry" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "Duplikuj część" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "Usuń istniejące dane" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "Pomiń nieprawidłowe wiersze" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "Włącz tę opcję, aby pominąć nieprawidłowe wiersze" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "Wyczyść istniejący BOM" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "Nie podano ilości" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "Nieprawidłowa ilość" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "Włącz powiadomienia dla tej części" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "Drukuj etykietę" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "Minimalny poziom stanu magazynowego" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "Warianty" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "Stan" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "Brak w magazynie" @@ -7847,7 +8221,7 @@ msgstr "Kod kreskowy nie pasuje do istniejących pozycji magazynowych" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "Razem" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "Wynik" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "Zainstalowane elementy" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "ID lokalizacji" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "Zainstalowane w" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "Lokacje stanu magazynowego" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "Właściciel" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "Wybierz właściciela" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "Nadrzędny towar" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "Część podstawowa" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "Wybierz pasującą część dostawcy dla tego towaru" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "Ilość w magazynie" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "Wyszukaj zlecenie zakupu" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "Zlecenie zakupu dla tego towaru" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "Usuń po wyczerpaniu" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "Ilość musi być liczbą całkowitą" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "Numer seryjny już istnieje" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "Notatki do wpisu" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "Należy podać wartość dla tego testu" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "Wynik testu" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "Element nadrzędny" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "Termin minął" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "Elementy podrzędne" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Podlokalizacje" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "Część musi być dostępna do sprzedaży" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "Budowa" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "Element nadrzędny" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "Nie ustawiono producenta" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "Termin minął" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "Elementy podrzędne" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "Odmowa dostępu" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Usuń" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "Ustawienia konta" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "Wymagana ilość" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "Minimalna ilość" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "Zatwierdź" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "Dodaj" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "Uprawnienia nadane" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Grupa" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Widok" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Uprawnienie do wyświetlania przedmiotów" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Uprawnienie do dodawania przedmiotów" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Zmień" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Uprawnienie do edycji przedmiotów" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Uprawnienie do usuwania przedmiotów" diff --git a/src/backend/InvenTree/locale/pt/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/pt/LC_MESSAGES/django.po index 8bb188ccf9..54c7d4bc2a 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -56,21 +56,21 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/ro/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ro/LC_MESSAGES/django.po index 7407b6c0a4..b055c251b9 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:57\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -56,21 +56,21 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/ru/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ru/LC_MESSAGES/django.po index 3a1a5a3211..b9e39649a2 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "Конечная точка API не обнаружена" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "У пользователя недостаточно прав для просмотра этой модели!" @@ -56,21 +56,21 @@ msgstr "Подробности об ошибке можно найти в пан msgid "Enter date" msgstr "Введите дату" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "Указанный основной адрес электронной п msgid "The provided email domain is not approved." msgstr "Указанный домен электронной почты не утверждён." -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Регистрация отключена." @@ -348,8 +348,8 @@ msgstr "Китайский (Традиционный)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Войти в приложение" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Метаданные плагина" msgid "JSON metadata field, for use by external plugins" msgstr "Поле метаданных JSON для использования внешними плагинами" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Неправильно отформатированный шаблон" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Указан неизвестный ключ формата" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Отсутствует требуемый ключ формата" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Ссылочный идентификатор не может быть пустым" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Ссылка должна соответствовать шаблону {pattern}" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Номер ссылки слишком большой" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Повторяющиеся имена не могут существовать под одним и тем же родителем" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Неверный выбор" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Неверный выбор" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Название" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Название" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Название" msgid "Description" msgstr "Описание" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Описание (необязательно)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Путь" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Записи о скидке (необязательно)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Данные штрих-кода" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Данные стороннего штрих-кода" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Хэш штрих-кода" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Уникальный хэш данных штрих-кода" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Обнаружен существующий штрих-код" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Ошибка сервера" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Сервер зарегистрировал ошибку." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Должно быть действительным номером" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Валюта" msgid "Select currency from available options" msgstr "Выберите валюту из доступных вариантов" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "Имя пользователя" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "Имя" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "Фамилия" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Активный" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "У вас недостаточно прав для изменения роли этого пользователя." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Только суперпользователи могут создавать новых пользователей" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Ваша учётная запись была успешно создана." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Пожалуйста, используйте функцию сброса пароля для входа" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Добро пожаловать в InvenTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Неверное значение" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Файл данных" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Выберите файл данных для загрузки" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Неподдерживаемый тип файла" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Файл слишком большой" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Столбцы в файле не найдены" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Строки данных в файле не найдены" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Строки данных в файле не найдены" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Столбцы данных не предоставлены" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Отсутствует обязательный столбец: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Повторяющийся столбец: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Удаленное изображение" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "ССЫЛКА файла изображения на удаленном сервере" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Загрузка изображений с удаленного URL-адреса не включена" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Проверка фонового работника не удалась" @@ -654,47 +711,48 @@ msgstr "Информация о системе" msgid "About InvenTree" msgstr "О программе InvenTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "Заказ на производство должен быть отменен перед удалением" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Расходники" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Необязательно" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Отслеживается" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Зарезервировано" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Доступно" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Заказ на производство" msgid "Build Orders" msgstr "Заказы на производство" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Неверный выбор для родительской сборки" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "Должен быть указан ответственный пользователь или группа" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "Деталь заказа на производства не может быть изменена" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Ссылка на заказ на производство" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Ссылка на заказ на производство" msgid "Reference" msgstr "Отсылка" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Краткое описание заказа на производство (необязательно)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Родительский заказ на производство" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Заказ на производство, которому принадлежит этот заказ на производство" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Заказ на производство, которому принад #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Заказ на производство, которому принад #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Заказ на производство, которому принад msgid "Part" msgstr "Деталь" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Выберите деталь для производства" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Ссылка на заказ" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Заказ на продажу, которому принадлежит этот заказ на производство" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Место хранения - источник" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "Выберите место хранения для этого заказа на производство (оставьте пустым, чтобы взять с любого места на складе)" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Место хранения результата" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "Выберите место хранения завершенных элементов" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Количество производимых деталей" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Количество складских позиций для производства" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Произведенные детали" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Количество складских позиций, которые были произведены" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Статус заказа на производство" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Код статуса заказа на производство" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Код партии" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Код партии для продукции" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Дата создания" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Целевая дата завершения" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Целевая дата для заказа на производства. Заказ будет просрочен после этой даты." -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Дата завершения" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "выполнено" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Создано" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Пользователь, создавший этот заказ на производство" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Пользователь, создавший этот заказ на п msgid "Responsible" msgstr "Ответственный" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "Пользователь, ответственный за этот заказ на производство" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Внешняя ссылка" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Ссылка на внешний URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Приоритет производства" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Приоритет этого заказа на производство" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Приоритет этого заказа на производство msgid "Project Code" msgstr "Код проекта" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Код проекта для этого заказа на производство" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "Не удалось выгрузить задачу для распределения на сборку" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Заказ на производство {build} был завершен" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "Заказ на производство был завершен" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Продукция не указана" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Продукция уже произведена" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "Продукция не совпадает с заказом на производство" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "Количество должно быть больше нуля" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "Количество не может быть больше количества продукции" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Сборка {serial} не прошла все необходимые тесты" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Объект производства" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Объект производства" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Объект производства" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Объект производства" msgid "Quantity" msgstr "Количество" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Требуемое количество для заказа на производство" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Элемент производства должен указать продукцию, как главную деталь помеченную как отслеживаемая" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Резервируемое количество ({q}) не должно превышать доступное количество на складе ({a})" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Складская позиция перераспределена" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Резервируемое количество должно быть больше нуля" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Количество должно быть 1 для сериализованных запасов" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "Выбранная складская позиция не соответствует позиции в BOM" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "Выбранная складская позиция не соответ msgid "Stock Item" msgstr "Складская позиция" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Исходная складская позиция" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Количество на складе для производства" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Установить в" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Целевая складская позиция" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "Наименование детали" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Выход Продукции" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "Продукция не совпадает с родительским заказом на производство" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "Продукция не соответствует детали заказа на производство" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Эта продукция уже помечена как завершенная" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "Сырье для этой продукции не полностью зарезервировано" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Введите количество продукции" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "Для отслеживаемых деталей должно быть указано целочисленное количество" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "Требуется целое количество, так как материал содержит отслеживаемые детали" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Серийные номера" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Введите серийные номера для продукции" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Введите серийные номера для продукции" msgid "Location" msgstr "Расположение" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Автоматически выделить серийные номера" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "Автоматически зарезервировать необходимые элементы с соответствующими серийными номерами" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "Для отслеживаемых частей должны быть указаны серийные номера" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "Следующие серийные номера уже существуют или недействительны" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "Необходимо представить список выхода деталей" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "Место хранения для списанной продукции" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "Отменить резервирование" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "Отменить все резервы запасов для списанной продукции" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "Причина списания продукции" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "Место хранения для завершенной продукции" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "Место хранения для завершенной продукц msgid "Status" msgstr "Статус" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Разрешить неполное резервирование" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "Завершить продукцию, если запасы не были полностью распределены" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "Удалить незавершенную продукцию" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "Удалить всю незавершенную продукцию" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Запрещено" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "Принять как поглощенный этим заказом на производство" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "Отменить резерв, до завершения заказа на производство" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Перераспределенные запасы" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "Как вы хотите обработать дополнительные складские позиции, назначенные для заказа на производство" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "Некоторые складские позиции были перераспределены" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Разрешить не полное резервирование" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "Подтвердите, что складские позиции не были полностью зарезервированы для этого заказа на производство" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "Необходимые запасы не были полностью зарезервированы" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Разрешить незавершенные производимые детали" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "Допустить, что требуемое кол-во продукции не завершено" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "Требуемое количество деталей не было произведено" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "Заказ на производство имеет незавершенную продукцию" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Позиция для производства" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Выход продукции" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "Продукция должна указывать на тот же производство" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "Позиция для производства" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part должна указывать на ту же часть, что и заказ на производство" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "Элемент должен быть в наличии" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Превышено доступное количество ({q})" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "Продукция должна быть указан для резервирования отслеживаемых частей" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "Продукция не может быть указана для резервирования не отслеживаемых частей" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "Необходимо указать резервируемые элементы" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "Место хранения, где будут зарезервированы детали (оставьте пустым, чтобы забрать их из любого места)" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Исключить место хранения" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "Исключить складские позиции из этого выбранного места хранения" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "Обменный остаток" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "Складские позиции в нескольких местах могут использоваться на взаимозаменяемой основе" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Заменить остатки" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "Разрешить резервирование замещающих деталей" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "Необязательные элементы" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "Зарезервировать необязательные позиции BOM для заказа на производство" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "Не удалось запустить задачу автораспределения" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Код производителя" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "Имя Места Хранения" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "IPN детали" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Отслеживание" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "Позиция BOM" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "Зарезервированные Запасы" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "В заказе" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "В производстве" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "Доступный запас" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Продукция" msgid "Cancelled" msgstr "Отменено" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "Остатки не были полностью зарезервиров #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "Завершенная продукция" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Источник запаса" msgid "Stock can be taken from any available location." msgstr "Остатки не могут быть получены из любого доступного места хранения." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Назначение" @@ -1827,31 +1956,31 @@ msgstr "Подробности Заказа на Производство" msgid "Incomplete Outputs" msgstr "Незавершенная продукция" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "Ссылка" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "Файл" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "У пользователя нет прав на удаление этого вложения" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "Неверный код валюты" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "Код валюты дублируется" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "Не указаны действительные коды валют" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "Нет плагина" @@ -1905,1591 +2034,1604 @@ msgstr "Временная метка последнего обновления" msgid "Site URL is locked by configuration" msgstr "URL сайта заблокирован настройками" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Уникальный код проекта" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Описание проекта" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "Пользователь или группа, ответственные за этот проект" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "Ключ настроек (должен быть уникальным - не чувствителен к регистрам)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "Значения настроек" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "Выбранное значение не является допустимым" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "Значение должно быть булевым" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "Значение должно быть целым числом" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "Строка ключа должна быть уникальной" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Нет группы" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Требуется перезапуск" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "Настройки были изменены, что требует перезапуска сервера" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "Ожидаемые миграции" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "Количество ожидаемых миграций базы данных" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "Название сервера" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "Текстовое описание сервера" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "Название инстанса" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "Имя сервера в заголовке" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "Ограничить отображение `О...`" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "Показать `О...` только суперпользователям" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Название компании" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Внутреннее название компании" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "Базовая ссылка" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "Базовая ссылка для экземпляра сервера" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Валюта по умолчанию" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "Выберите базовую валюту для расчета цены" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "Поддерживаемые валюты" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "Список поддерживаемых кодов валют" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "Интервал обновления курса валют" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "Как часто обновлять курс валют (установите \"ноль\", чтобы выключить)" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "дней" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "Плагин обновления валют" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "Модуль обновления валюты" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Скачать по ссылке" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Разрешить загрузку удаленных изображений и файлов по внешнему URL" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "Ограничение размера загрузки" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "Максимально допустимый размер загрузки для удалённого изображения" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "User-Agent, используемый для загрузки из URL" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "Позволяет переопределить user-Agent, используемый для загрузки изображений и файлов с внешнего URL (оставьте пустым по умолчанию)" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "Строгая проверка URL-адреса" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "Требуется спецификация схемы при проверке URL-адресов" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Требуется подтверждение" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Требовать явное подтверждение пользователя для определенного действия." -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "Глубина дерева" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "Глубина дерева по умолчанию для просмотра дерева. Глубокие уровни загружены по мере необходимости." -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "Интервал проверки обновлений" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "Как часто проверять наличие обновлений (установите ноль чтобы выключить)" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Автоматическое резервное копирование" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Включить автоматическое резервное копирование базы данных и медиа-файлов" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Интервал резервного копирования" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "Укажите количество дней между событиями автоматического резервного копирования" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "Интервал удаления задачи" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "Результаты фоновых задач будут удалены после указанного количества дней" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "Интервал удаления журнала ошибок" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "Журналы ошибок будут удалены после указанного количества дней" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "Интервал удаления уведомления" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "Уведомления пользователя будут удалены после указанного количества дней" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Поддержка штрих-кодов" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "Включить поддержку сканера штрих-кодов в веб-интерфейсе" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "Задержка сканирования штрих-кода" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "Время задержки обработки штрих-кода" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "Поддержка веб-камер штрих-кодов" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "Разрешить сканирование штрих-кода через веб-камеру в браузере" -#: common/models.py:1395 +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 msgid "Part Revisions" msgstr "Ревизия детали" -#: common/models.py:1396 +#: common/models.py:1407 msgid "Enable revision field for Part" msgstr "Включить поле ревизии для элемента" -#: common/models.py:1401 +#: common/models.py:1412 msgid "Allow Deletion from Assembly" msgstr "Разрешить удаление из заказа" -#: common/models.py:1402 +#: common/models.py:1413 msgid "Allow deletion of parts which are used in an assembly" msgstr "Разрешить удаление частей, которые используются в заказе" -#: common/models.py:1407 +#: common/models.py:1418 msgid "IPN Regex" msgstr "Регулярное выражение IPN" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "Шаблон регулярного выражения для сопоставления IPN детали" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Разрешить повторяющиеся IPN" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "Разрешить нескольким элементам использовать один и тот же IPN" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "Разрешить редактирование IPN" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "Разрешить изменение значения IPN при редактировании детали" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "Скопировать данные BOM детали" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "Копировать данные BOM по умолчанию при дублировании детали" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "Скопировать данные параметров детали" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "Копировать данных параметров по умолчанию при дублировании детали" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "Скопировать данные тестирования детали" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "Копировать данные тестирования по умолчанию при дублировании детали" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "Скопировать параметры по шаблону категории" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "Копировать параметры по шаблону категории при создании детали" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Шаблон" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "По умолчанию детали являются шаблонами" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Производимая деталь" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "По умолчанию детали могут быть собраны из других компонентов" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Компонент" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "По умолчанию детали могут использоваться в качестве суб-компонентов" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Можно купить" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "По умолчанию детали являются отслеживаемыми" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Можно продавать" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Детали продаются по умолчанию" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Отслеживание" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "По умолчанию детали являются отслеживаемыми" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Виртуальная" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Детали являются виртуальными по умолчанию" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "Показать Импорт в просмотре" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "Отобразить мастер импорта на некоторых видах деталей" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Показывать связанные детали" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "Отображать связанные детали для элемента" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "Начальные данные о запасах" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "Разрешить создание начального запаса при добавлении новой детали" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Исходные данные о поставщике" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "Разрешить создание исходных данных о поставщике при добавлении новой детали" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "Формат отображения детали" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "Формат для отображения имени детали" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "Значок раздела по умолчанию" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "Значок категории по умолчанию (пустой означает отсутствие значка)" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "Принудительное применение единиц измерения параметров" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "Если введены единицы, значения параметра должны соответствовать указанным единицам измерения" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "Минимальные Цены Десятичные Значки" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "Минимальное количество десятичных знаков при отображении данных о ценах" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "Макс. Цены десятичные знаки" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "Минимальное количество десятичных знаков при отображении данных о ценах" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "Использовать цены поставщика" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "Включить разницу цен поставщиков при расчетах цен" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "Изменить историю покупки" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "Ценообразование по историческим заказам на поставку отменяет различия в ценах поставщиков" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "Использовать цены из складских позиций" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "Использовать расценки из ручного ввода данных о запасах для расчета цен" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "Возраст цен складских позиций" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "Исключить складские позиции старше указанного количества дней с расчёта цен" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "Использовать варианты цен" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "Включить разницу цен поставщиков при расчетах цен" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "Только Активные Варианты" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "Использовать только активные запчасти для расчета стоимости варианта" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "Интервал пересчета цен" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "Количество дней до автоматического обновления цены" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Внутренние цены" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "Разрешить внутренние цены для частей" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "Переопределение внутренней цены" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "При наличии внутренних цен переопределить ценовой диапазон" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Включить печать этикеток" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "Включить печать этикеток из веб-интерфейса" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "Изображение меток DPI" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "Разрешение DPI при создании файлов изображений для печати этикеток плагинов" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Включить отчеты" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "Включить генерацию отчетов" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Режим отладки" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "Генерировать отчеты в режиме отладки (вывод HTML)" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "Журнал ошибок отчета" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "Журнал ошибок, которые возникают при создании отчетов" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Размер страницы" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Размер страницы по умолчанию для PDF отчетов" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "Включить отчеты" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "Включить генерацию отчетов" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "Прикрепить отчеты о тестах" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "При печати отчета о тестировании приложить копию тестового отчета к соответствующему складской позиции" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "Глобально уникальные серийные номера" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "Серийные номера для складских позиций должны быть уникальными глобально" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "Автоматическое заполнение серийных номеров" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "Автоматическое заполнение серийных номеров в формах" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "Удалить исчерпанный запас" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "Определяет поведение по умолчанию, когда складская позиция заканчивается" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "Код партии Шаблона" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "Шаблон для создания кодов партии по умолчанию для складских позиций" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "Срок годности Запасов" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "Включить функцию истечения срока годности" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "Использовать просроченные остатки в производстве" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "Разрешить продажу просроченных запасов" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "Время Залежалости Запасов" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "Количество дней перед тем как складская единица будет считаться просроченной" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "Использовать просроченные остатки в производстве" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "Разрешить использовать просроченные остатки в производстве" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "Контроль за собственными запасами" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "Разрешить владельцу контролировать расположение складов и номенклатуры" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "Значок местоположения по умолчанию" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "Значок местоположения склада по умолчанию (пустой означает отсутствие значка)" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "Показать установленные складские позиции" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "Отображать установленные складские позиции в складских таблицах" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "Проверять спецификацию при установке изделий" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "Установленные единица хранения должны присутствовать в спецификации для родительской детали" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "Разрешить передачу товара, отсутствующего на складе" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "Разрешить перемещение товаров, которых нет на складе, между складами" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "Паттерн ссылки заказа на производство" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "Поле требуемого паттерна для создания ссылки заказа на производство" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "Требуется ответственный владелец" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "Ответственный владелец должен быть назначен для каждого заказа" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "Запретить вывод сборки до тех пор, пока не пройдут все необходимые тесты" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "Включить заказы на возврат" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "Включите функцию заказа на возврат в пользовательском интерфейсе" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "Шаблон заказа на возврат товара" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "Необходимый шаблон для создания поля «Возврат заказа»" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "Редактировать завершенные возвратные заказы" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "Разрешить редактирование возвращенных заказов после их завершения" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "Шаблон заказа на возврат товара" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "Необходимый шаблон для создания поля «Возврат заказа»" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "Редактировать завершенные заказы на покупку" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "Включить SSO" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" -msgstr "Необходимо указать EMail" - -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" -#: common/models.py:1927 -msgid "Mail twice" -msgstr "Написать дважды" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "Пароль дважды" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "Разрешенные домены" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" -msgstr "Принудительное MFA" - #: common/models.py:1954 -msgid "Users must use multifactor security." -msgstr "Пользователи должны использовать многофакторную безопасность." - -#: common/models.py:1959 -msgid "Check plugins on startup" -msgstr "Проверять плагины при запуске" - -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" + +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" + +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" -msgstr "" +msgid "Email required" +msgstr "Необходимо указать EMail" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" -msgstr "" +msgid "Mail twice" +msgstr "Написать дважды" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" msgstr "" +#: common/models.py:1996 +msgid "Password twice" +msgstr "Пароль дважды" + #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" -msgstr "" +#: common/models.py:2002 +msgid "Allowed domains" +msgstr "Разрешенные домены" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" + +#: common/models.py:2018 +msgid "Enforce MFA" +msgstr "Принудительное MFA" + +#: common/models.py:2019 +msgid "Users must use multifactor security." +msgstr "Пользователи должны использовать многофакторную безопасность." + +#: common/models.py:2024 +msgid "Check plugins on startup" +msgstr "Проверять плагины при запуске" + +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:2034 +msgid "Check for plugin updates" +msgstr "" + +#: common/models.py:2035 +msgid "Enable periodic checks for updates to installed plugins" +msgstr "" + +#: common/models.py:2041 +msgid "Enable URL integration" +msgstr "" + +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" +msgstr "" + +#: common/models.py:2048 +msgid "Enable navigation integration" +msgstr "" + +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" +msgstr "" + +#: common/models.py:2056 +msgid "Enable plugins to add apps" +msgstr "" + +#: common/models.py:2062 +msgid "Enable schedule integration" +msgstr "" + +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" +msgstr "" + +#: common/models.py:2069 +msgid "Enable event integration" +msgstr "" + +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" +msgstr "" + +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:2017 +#: common/models.py:2082 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:2019 +#: common/models.py:2084 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2025 +#: common/models.py:2090 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2027 +#: common/models.py:2092 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Исключить складские позиции во внешних местах хранения из инвентаризации" -#: common/models.py:2033 +#: common/models.py:2098 msgid "Automatic Stocktake Period" msgstr "Автоматический период инвентаризации" -#: common/models.py:2035 +#: common/models.py:2100 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Количество дней между автоматической записью запасов (установите нулевое значение для отключения)" -#: common/models.py:2041 +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "Интервал удаления журнала ошибок" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Журналы ошибок будут удалены после указанного количества дней" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "Показывать полные имена пользователей" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "Отображать полные имена пользователей вместо логинов" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "Включить данные тестовой станции" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "Включить сбор данных с тестовой станции для получения результатов тестирования" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "Ключ настроек (должен быть уникальным - не чувствителен к регистру)" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "Скрыть неактивные детали" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Скрывать неактивные части в результатах, отображаемых на главной странице," -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "Показывать детали, на которые включены уведомления" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "Показывать детали, на которые включены уведомления, на главной странице" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "Показывать категории, на которые включены уведомления" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "Показывать категории, на которые включены уведомления, на главной странице" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "Показывать последние детали" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "Показывать последние детали на главной странице" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "Показывать недопустимые спецификации" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "Показывать BOMы, ожидающие проверки, на главной странице" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "Показывать изменившиеся складские запасы" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "Показывать складские позиции с недавно изменившимися запасами на главной странице" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "Показывать низкие складские запасы" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "Показывать складские позиции с низкими запасами на главной странице" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "Показывать закончившиеся складские позиции" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "Показывать закончившиеся складские позиции на главной странице" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "Показывать требуемые складские позиции" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "Показывать требуемые для производства складские позиции на главной странице" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "Показывать складские позиции с истекшим сроком годности" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "Показывать складские позиции с истёкшим сроком годности на главной странице" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "Показывать залежалые складские позиции" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "Показывать складские позиции с истекающим сроком годности на главной странице" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "Показывать незавершённые производства" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "Показывать незавершённые производства на главной странице" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "Показывать просроченные производства" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "Показывать просроченные производства на главной странице" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "Показать невыполненные заказы" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "Покажите невыполненные заказы на покупку на главной странице" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "Показать просроченные заказы на производство" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "Показывать просроченные сборки на главной странице" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "Показать невыполненные заказы" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "Покажите невыполненные заказы на покупку на главной странице" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "Показать просроченные заказы на продажу" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "Показывать просроченные заказы на покупку на главной странице" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "Показывать новости" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Отображение PDF-этикетки в браузере вместо загрузки в виде файла" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "Принтер этикетки по умолчанию" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "Настроить принтер этикеток по умолчанию" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "Отображение встроенного отчета" -#: common/models.py:2246 +#: common/models.py:2311 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Отображение PDF-этикетки в браузере вместо загрузки в виде файла" -#: common/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "Поиск Деталей" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "Отображение деталей в окне предварительного просмотра поиска" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "Поиск деталей поставщика" -#: common/models.py:2259 +#: common/models.py:2324 msgid "Display supplier parts in search preview window" msgstr "Отображение деталей поставщика в окне предварительного просмотра поиска" -#: common/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "Новая деталь производителя" -#: common/models.py:2265 +#: common/models.py:2330 msgid "Display manufacturer parts in search preview window" msgstr "Отображение деталей поставщика в окне предварительного просмотра поиска" -#: common/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "Скрыть неактивные детали" -#: common/models.py:2271 +#: common/models.py:2336 msgid "Excluded inactive parts from search preview window" msgstr "Исключить неактивные детали из окна предварительного просмотра поиска" -#: common/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "Категории поиска" -#: common/models.py:2277 +#: common/models.py:2342 msgid "Display part categories in search preview window" msgstr "Отображение деталей в окне предварительного просмотра поиска" -#: common/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "Поиск Запасов" -#: common/models.py:2283 +#: common/models.py:2348 msgid "Display stock items in search preview window" msgstr "Отображать складские позиции в окне предварительного просмотра поиска" -#: common/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "Скрыть недоступные складские позиции" -#: common/models.py:2290 +#: common/models.py:2355 msgid "Exclude stock items which are not available from the search preview window" msgstr "Исключить недоступные складские позиции из окна предварительного просмотра поиска" -#: common/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "Поиск мест хранения" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "Отображать места хранения в окне предварительного просмотра поиска" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "Поиск компаний" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "Поиск заказов на производство" -#: common/models.py:2309 +#: common/models.py:2374 msgid "Display build orders in search preview window" msgstr "Отображать заказы на производство в окне предварительного просмотра поиска" -#: common/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "Поиск заказов на покупку" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2322 +#: common/models.py:2387 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "Поиск заказов на продажу" -#: common/models.py:2329 +#: common/models.py:2394 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2336 +#: common/models.py:2401 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "Поиск заказов на возврат" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2350 +#: common/models.py:2415 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "" -#: common/models.py:2358 +#: common/models.py:2423 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "Поиск по Regex" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "Фиксированная панель навигации" -#: common/models.py:2389 +#: common/models.py:2454 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "Формат даты" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Планирование деталей" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Инвентаризация детали" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "Шаблон складской позиции по умолчанию" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "Шаблон метки складской позиции для автоматического выбора" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Пользователь" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Цена" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "Конечная точка" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Активный" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "Токен" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "Токен для доступа" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "Секрет" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "ID Сообщения" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "Хост" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "Заголовок" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "Тело" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "Работал над" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "Код" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Заголовок" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "Заголовок" msgid "Link" msgstr "Ссылка" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "Опубликовано" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Автор" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "Итого" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "Читать" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "Изображение" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "Файл изображения" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "Название единицы" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Символ" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Определение" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Вложения" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Файл не найден" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Отсутствует внешняя ссылка" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Выберите файл для вложения" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Комментарий" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "Полученные элементы" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "Запущен" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "Ожидающие задачи" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "Запланированные задания" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "Невыполненные Задачи" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "Код задачи" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "Уникальный ID задачи" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "Заблокировать" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "Время блокировки" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "Название задачи" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "Функция" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "Имя функции" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "Аргументы" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "Аргументы задачи" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Имя файла" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "Детали импортированы" msgid "Previous Step" msgstr "Предыдущий шаг" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Компания" @@ -3843,8 +3993,9 @@ msgstr "Контактный телефон" msgid "Contact email address" msgstr "Контактный EMail" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" -msgstr "покупатель" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "Вы продаёте детали этой компании?" #: company/models.py:174 -msgid "is supplier" -msgstr "поставщик" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "Вы закупаете детали у этой компании?" #: company/models.py:180 -msgid "is manufacturer" -msgstr "производитель" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "Является ли компания производителем де msgid "Default currency used for this company" msgstr "Для этой компании используется валюта по умолчанию" -#: company/models.py:366 +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Адрес" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Адреса" + +#: company/models.py:372 msgid "Select company" msgstr "Выберите компанию" -#: company/models.py:371 +#: company/models.py:377 msgid "Address title" msgstr "Заголовок адреса" -#: company/models.py:372 +#: company/models.py:378 msgid "Title describing the address entry" msgstr "" -#: company/models.py:378 +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "Строка 1" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "Адресная строка 1" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "Строка 2" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "Адресная строка 2" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "Почтовый индекс" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "Город/Регион" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "Регион/Область" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "Страна" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "Страна адреса" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "Записи отправления" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "Записи для курьера" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "Внутренние записи отправления" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "Записи отправления для внутреннего пользования" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "Деталь производителя" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Базовая деталь" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "Выберите деталь" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Производитель" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Выберите производителя" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Код производителя" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "Ссылка на сайт производителя" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Наименование параметра" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Значение" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Значение параметра" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "Ед.изм" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "Единицы измерения параметра" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "Деталь поставщика" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Поставщик" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Выберите поставщика" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "Код поставщика" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "Выберите производителя части" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "Ссылка на сайт поставщика" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Запись" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "базовая стоимость" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "Упаковка" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "Упаковка детали" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "Упаковка детали" msgid "Pack Quantity" msgstr "Кол-во в упаковке" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "множественные" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "Кратность заказа" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "Валюта по умолчанию для этого поставщика" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "На складе" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "Неактивный" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "Удалить изображение" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Покупатель" @@ -4278,13 +4448,6 @@ msgstr "Покупатель" msgid "Uses default currency" msgstr "Использовать валюту по умолчанию" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Адрес" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Телефон" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "Внутренняя деталь" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "Новый параметр" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "Добавить параметр" @@ -4519,10 +4683,6 @@ msgstr "Назначенные складские позиции" msgid "Contacts" msgstr "Контакты" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "Адреса" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Новая компания" msgid "Placed" msgstr "Размещены" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "Столбцы" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "Данные" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "Корректный" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "Неизвестно" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "Общая стоимость" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "Статсу заказа" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "Имеет цену" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "Заказ" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "Заказ на закупку" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "Заказ на возврат" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "Валюта Заказа" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "Описание заказа (дополнительно)" msgid "Select project code for this order" msgstr "Выберите код проекта для этого заказа" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "получил" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "Дата создания" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "Компания, которой детали продаются" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "Дополнительный контекст для этой строк msgid "Unit price" msgstr "Цена за единицу" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "удалено" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "Деталь поставщика" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "Деталь поставщика" msgid "Received" msgstr "Получено" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "Закупочная цена" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "Цена продажи" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "Цена последней продажи" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Доставлено" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "Отгруженное кол-во" -#: order/models.py:1672 +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "Дата отправления" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "Дата доставки" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "Проверн" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "Отправление" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "Номер отправления" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "Номер отслеживания" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "Информация об отслеживании доставки" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "Номер счета" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "Отправка не имеет зарезервированных складских позиций" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "Складская позиция не была назначена" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "Невозможно зарезервировать складскую позицию в позицию другой детали" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "Количество должно быть 1 для сериализированных складских позиций" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "Строка" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "Элемент" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "Выберите складскую позицию для резервирования" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "Укажите резервируемое количество" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "Выберите позицию, возвращаемую от клиента" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "Дата получения" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "Результат" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "Позиции" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "Заказ не открыт" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "Валюта цены закупки" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "Внутренний код детали" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "Позиция" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "Выберите место назначения для полученных элементов" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "Введите код партии для поступающих складских позиций" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "Введите серийные номера для входящих складских позиций" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Штрих-код" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "Сканированный штрих-код" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "Для отслеживаемых деталей должно быть указано целочисленное количество" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "Валюта цены продажи" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "Введите серийные номера для резервирования" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "Код детали" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "Наименование детали" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "Описание детали" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "Ревизия" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Ключевые слова" @@ -5831,7 +6178,8 @@ msgstr "Изображение Детали" msgid "Category ID" msgstr "Код категории" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "Название категории" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "Разновидность" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "Минимальный запас" @@ -5855,18 +6203,19 @@ msgstr "Минимальный запас" msgid "Used In" msgstr "Используется в" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "Производится" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "Минимальная Стоимость" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "Максимальная Стоимость" @@ -5883,14 +6232,14 @@ msgstr "Имя родителя" msgid "Category Path" msgstr "Путь к категории" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Детали" @@ -5907,125 +6256,117 @@ msgstr "ID Элемента BOM" msgid "Parent IPN" msgstr "Родительский IPN" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "IPN детали" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "Минимальная цена" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "Максимальная цена" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "Остатки произведенные заказом на производство" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "Остатки требуемые для заказов на производство" -#: part/api.py:881 -msgid "Valid" -msgstr "Корректный" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "Необходимо выбрать эту опцию" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "Категория" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "Место хранения по умолчанию" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "Общий запас" @@ -6034,7 +6375,7 @@ msgstr "Общий запас" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Категория детали" @@ -6049,7 +6390,7 @@ msgstr "Категория детали" msgid "Default location for parts in this category" msgstr "Место хранения по умолчанию для деталей этой категории" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "Ключевые слова по умолчанию" msgid "Default keywords for parts in this category" msgstr "Ключевые слова по умолчанию для деталей этой категории" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "Иконка" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "Иконка (необязательно)" @@ -6081,1002 +6422,1035 @@ msgstr "Иконка (необязательно)" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "Складская позиция с этим серийным номером уже существует" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Наименование детали" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "Шаблон" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "Эта деталь является шаблоном?" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "Эта деталь является разновидностью другой детали?" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "Описание детали (необязательно)" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "Ключевые слова для улучшения видимости в результатах поиска" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "Категория" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "Внутренний код детали" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "Ревизия или серийный номер детали" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "Где обычно хранится эта деталь?" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "Поставщик по умолчанию" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "Срок действия по умолчанию" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "Срок годности (в днях) для складских позиций этой детали" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "Минимально допустимый складской запас" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "Единицы измерения этой детали" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "Может ли эта деталь быть создана из других деталей?" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "Может ли эта деталь использоваться для создания других деталей?" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "Является ли каждый экземпляр этой детали уникальным, обладающим серийным номером?" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "Может ли эта деталь быть закуплена у внешних поставщиков?" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "Может ли эта деталь быть продана покупателям?" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "Эта деталь активна?" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "Эта деталь виртуальная, как программный продукт или лицензия?" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "Контрольная сумма BOM" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "BOM проверил" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "Дата проверки BOM" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "Создатель" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "Последняя инвентаризация" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "Продать несколько" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "Минимальная Стоимость BOM" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "Максимальная Стоимость BOM" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "Количество Элементов" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "Дата" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "Дополнительные Записи" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "Отчет" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "Количество Деталей" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "Шаблоны тестирования могут быть созданы только для отслеживаемых деталей" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "Название теста" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "Введите имя для теста" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "Описание теста" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "Введите описание для этого теста" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Включено" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "Требуется" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "Требуется значение" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "Варианты" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "Название параметра" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "Чекбокс" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "Родительская деталь" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Шаблон параметра" -#: part/models.py:3801 -msgid "Data" -msgstr "Данные" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "Значение Параметра" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Значение по умолчанию" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "Код или наименование детали" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "Значение IPN" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "Уровень" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "Уровень BOM" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "Выберите родительскую деталь" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "Суб-деталь" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "Выбрать деталь для использования в BOM" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Эта позиция - расходник. (она не отслеживается в заказах на производство)" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Перерасход" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Расчетное количество перерасходов производства (абсолютное или процентное)" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "Записи о позиции BOM" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "Контрольная сумма" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "Проверен" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "Разрешить разновидности" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Складские позиции для разновидностей деталей могут быть использованы для этой позиции BOM" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "Для отслеживаемых деталей количество должно быть целым числом" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "Позиция BOM-родителя" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "Замена детали" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "Часть 1" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "Часть 2" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "Выберите связанную часть" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Подкатегории" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "Валюта закупки складской позиции" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "Не выбрана ни одна деталь" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "Выберите категорию" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "Оригинальная деталь" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "Копировать Изображение" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Скопировать BOM" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "Скопировать параметры" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "Копировать Записи" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "Скопировать записи из оригинальной детали" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "Выберите поставщика (или оставьте поле пустым, чтобы пропустить)" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "Выберите поставщика (или оставьте поле пустым, чтобы пропустить)" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "Код производителя" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "Дублировать деталь" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Начальный запас" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "Копировать параметры категории" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "Копировать шаблоны параметров из выбранной категории деталей" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "Существующее изображение" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "Исключить складские позиции в внешних местах хранения" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "Создать отчет" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "Обновить детали" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "Обновить" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "Подходящая деталь не найдена" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "Некорректное количество" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "Общее количество" @@ -7394,7 +7768,7 @@ msgstr "Включить уведомления для данной детали #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "Печать этикетки" @@ -7416,7 +7790,7 @@ msgstr "Установить запасы детали" msgid "Transfer part stock" msgstr "Переместить запасы детали" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "Действия с деталью" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "Минимальный складской запас" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "Разновидности" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "Склад" @@ -7702,8 +8076,8 @@ msgstr "Обновить цены" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "Нет запасов" @@ -7847,7 +8221,7 @@ msgstr "Штрих-код не соответствует существующи msgid "Stock item does not match line item" msgstr "Складская позиция не соответствует позиции" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "Всего" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "Результаты тестирования" msgid "Test" msgstr "Тестирование" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "Результат" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "Нет результата" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "Установленные элементы" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "Код места хранения" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "Имя Места Хранения" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "Имя поставщика" msgid "Customer ID" msgstr "ID Клиента" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "Установлено в" @@ -8782,7 +9152,7 @@ msgstr "Требуется рецензия" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "Древо Деталей" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "Залежалый" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "Необходимо указать количество" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "Место хранения" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "Места хранения" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "Владелец" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "Выберите владельца" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "Складские позиции не могут находиться в структурных местах хранения, но могут находиться в дочерних местах хранения." -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "Внешний" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "Тип Места Хранения" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "Вы не можете сделать это место хранение структурным, потому, что некоторые складские позиции уже находятся в нем!" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "Складские позиции не могут находиться в структурных местах хранения!" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "Складская позиция не может быть создана для виртуальных деталей" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "Элемент должен иметь ссылку на производство, если is_building=True" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "Ссылка на производство не указывает на тот же элемент" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "Складская позиция" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "Базовая деталь" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "Выберите соответствующего поставщика детали для этой складской позиции" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "Где находиться эта складская позиция?" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "Упаковка этой складской позиции хранится в" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "Код партии для этой складской позиции" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "Количество на складе" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "Исходное производство" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "Производства для этой складской позиции" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "Поглощен" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "Заказ на производство, который поглотил эту складскую позицию" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "Заказ на закупку для этой складской позиции" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "Дата истечения срока годности для складской позиции. Остатки будут считаться просроченными после этой даты" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "Удалить при обнулении" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "Удалить эту складскую позицию при обнулении складского запаса" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "Деталь не является отслеживаемой" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "Серийные номера уже существуют" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "Складская позиция была назначена заказу на продажу" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "Складская позиция установлена в другую деталь" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "Складская позиция содержит другие детали" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "Складская позиция была назначена покупателю" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "Складская позиция в производстве" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "Складские позиции должны ссылаться на одну и ту же деталь" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "Складские позиции должны ссылаться на одну и ту же деталь поставщика" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "Результат тестирования" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "Записи Тестирования" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "Родительский элемент" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "Зарезервированное количество" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "Просрочен" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "Дочерние элементы" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "Закупочная цена для этой складской позиции, за единицу или за упаковку" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "Введите количество складских позиций для сериализации" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "Введите серийные номера для новых элементов" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "Опциональное поле записей" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "Выберите складскую позицию для установки" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "Добавить запись к транзакции (необязательно)" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "Складская позиция недоступна" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "Выбранная деталь отсутствует в спецификации" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "Выберите деталь в которую будет преобразована складская позиция" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "Невозможно преобразовать складскую позицию с назначенной деталью поставщика" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "Выберите складские позиции для изменения статуса" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "Не выбрано ни одной складской позиции" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Места хранения" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "Элемент зарезервирован для заказа на производство" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "Покупатель для назначения складских позиций" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "Выбранная компания не является покупателем" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "Записи о назначенных запасах" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "Необходимо предоставить список складских позиций" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "Записи о слияниях запасов" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "Разрешить слияние складских позиций с различными поставщиками" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "Разрешить слияние складских позиций с различными статусами" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "Необходимо предоставить как минимум 2 складские позиции" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "Статус складской позиции" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "Записи о перемещениях запасов" @@ -9648,10 +10061,6 @@ msgstr "Удалить складскую позицию" msgid "Build" msgstr "Производство" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "Родительский элемент" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "Эта складская позиция не прошла требуе msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "Просрочен" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "Запас" msgid "Allocations" msgstr "Места хранения" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "Дочерние элементы" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "Доступ запрещён" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Удалить" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "Редактировать шаблон" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "Удалить шаблон" @@ -10516,18 +10916,6 @@ msgstr "Настройки учётной записи" msgid "Change Password" msgstr "Изменить пароль" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "Имя пользователя" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "Имя" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "Фамилия" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "Следующие адреса электронной почты связаны с вашей учётной записью:" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "Требуемое кол-во" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "Минимальное количество" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "Нет ответа" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "Данные строк" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "Расходник" @@ -11492,7 +11880,7 @@ msgstr "Просмотр BOM" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "Необходимая деталь" @@ -11661,10 +12049,6 @@ msgstr "Удалить Продукцию" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "Зарезервированное количество" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "Зарезервировать Складские Позиции" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "Выбрать" @@ -11809,59 +12193,59 @@ msgstr "Редактировать Резерв" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "строка производства" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "позиция производства" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "Отслеживаемая деталь" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "Количество единиц" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "Расходник" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "Отслеживаемый элемент" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "Запасы производства" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "Заказать запасы" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "Зарезервировать Остатки" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "Заказать детали" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "Деталь-шаблон" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "Производимая Деталь" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "Редактировать параметр" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "Удалить параметр" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "Редактировать параметр" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "Удалить параметр" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "Выбрать элементы" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "Отменить" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "Подтвердить" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "Заголовок Формы" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "Принять" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "Загрузка данных" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "Новости не найдены" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "Код" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "Добавить категорию детали" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "Создать Деталь" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "Редактировать Деталь" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "Деталь изменена" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "Активная Деталь" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "Любые складские позиции для этой запчасти будут удалены" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "Удалить Деталь" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "Низкий запас" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "Требуется" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "Ед. Изм." -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "Виртуальная Деталь" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "Деталь с подпиской" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "Продаваемая деталь" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "Детали не найдены" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "Указать категорию" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "деталь" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "детали" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "Нет категории" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "Отобразить списком" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "Отобразить сеткой" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "Отобразить древом" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "Категория с подпиской" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "результаты" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "Редактировать результаты тестирования" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "Приблизительный" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "Максимальное количество" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "Взять" msgid "Add Stock" msgstr "Добавить Запасы" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "Добавить" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "Подписан" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "Доступный запас" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "Имеет Ед. Изм." -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "Имеет IPN" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "В наличии" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "Можно купить" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "Имеет Варианты" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "Переключить" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "Столбцы" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "Все" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "Отозван" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "Права доступа" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Группа" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Вид" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Разрешение на просмотр элементов" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Разрешение на добавление элементов" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Изменить" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Разрешение на редактирование элементов" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Разрешение на удаление элементов" diff --git a/src/backend/InvenTree/locale/sk/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sk/LC_MESSAGES/django.po index 0014bae02e..c476427bff 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -56,21 +56,21 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/sl/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sl/LC_MESSAGES/django.po index 222b064fcd..fdb9e1c919 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API vmesnik ni najden" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Uporabnik nima dovoljenja pogleda tega modela" @@ -56,21 +56,21 @@ msgstr "Podrobnosti napake so vidne v pogledu administratorja" msgid "Enter date" msgstr "Vnesi datum" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "Podana epošta ni veljavna." msgid "The provided email domain is not approved." msgstr "Domena epošte ni podprta." -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Registracija je onemogočena." @@ -348,8 +348,8 @@ msgstr "Kitajščina (tradicionalno)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Prijavite se v aplikacijo" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Metapodatki vtičnika" msgid "JSON metadata field, for use by external plugins" msgstr "Polje metapodatkov JSON za uporabo pri zunanjih vtičnikih" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Nepravilno nastavljen vzorec" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Nastavljen neprepoznan ključ formata" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Manjka obvezen ključ formata" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Referenčno polje ne sme biti prazno" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Referenca se mora ujemati s vzorcem" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Referenčna številka prevelika" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Podvojena imena ne morejo obstajati pod istim nadrejenim elementom" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Nedovoljena izbira" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Nedovoljena izbira" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Ime" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Ime" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Ime" msgid "Description" msgstr "Opis" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Opis (opcijsko)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Pot" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Markdown opombe (neobvezno)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Podatki čtrne kode" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Podatki črtne kode tretje osebe" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Oznaka črtne kode" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Enolična oznaka podatkov črtne kode" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Črtna koda že obstaja" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Napaka strežnika" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Zaznana napaka na strežniku." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Mora biti veljavna številka" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Valuta" msgid "Select currency from available options" msgstr "Izberite valuto med razpoložljivimi možnostmi" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Nimate dovoljenja za spreminjanje vloge tega uporabnika." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Samo superuporabniki lahko ustvarijo nove uporabnike" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Vaš račun je bil ustvarjen." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Za prijavo uporabite funkcijo ponastavitve gesla" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Dobrodošli v InvenTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Neveljavna vrednost" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Podatki datoteke" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Izberite datoteke za naložiti" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Nepodprta vrsta datotek" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Datoteka je prevelika" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "V datoteki ni bilo najdenih stolpcev" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "V datoteki ni bilo njadenih vrstic" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Niso bile podane vrste s podatki" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Niso bili podani stolpci s podatki" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Manjka obvezni stolpec: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Dvojni stolpec: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Oddaljena slika" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "Povezava do oddaljene slike" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Prenos slik iz oddaljene povezave ni omogočen" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Nadzor dela v ozadju neuspel" @@ -654,47 +711,48 @@ msgstr "Sistemske informacije" msgid "About InvenTree" msgstr "O InvenTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "Izgradnja mora biti najprej preklicana, nato je lahko izbrisana" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Nalog izgradnje" msgid "Build Orders" msgstr "Nalogi izgradnje" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Neveljavna izbira za nadrejeno izgradnjo" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Referenca naloga izgradnje" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Referenca naloga izgradnje" msgid "Reference" msgstr "Referenca" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Nadrejena izgradnja" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Nalog izgradnje na katerega se ta izgradnaj nanaša" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Nalog izgradnje na katerega se ta izgradnaj nanaša" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Nalog izgradnje na katerega se ta izgradnaj nanaša" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Nalog izgradnje na katerega se ta izgradnaj nanaša" msgid "Part" msgstr "Del" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Izberite del za izgradnjo" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Referenca dobavnica" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Dobavnica na katero se navezuje ta izgradnja" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Lokacija vira" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Ciljna lokacija" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "Izberite lokacijo, kjer bodo končne postavke shranjene" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Količina izgradenj" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Število postavk za izgradnjo" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Končane postavke" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Število postavk zaloge, ki so bile končane" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Status izgradnje" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Koda statusa izgradnje" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Številka serije" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Številka serije za to izgradnjo" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Datum ustvarjenja" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Rok dokončanja" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Datom končanja" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "dokončal" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Izdal" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Uporabnik, ki je izdal nalog za izgradnjo" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Uporabnik, ki je izdal nalog za izgradnjo" msgid "Responsible" msgstr "Odgovoren" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Zunanja povezava" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Zunanja povezava" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Nalog izgradnje {build} je dokončan" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "Nalog izgradnej dokončan" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Ni določena izgradnja" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Igradnja je že dokončana" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "Izgradnja se ne ujema s nalogom izdelave" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "Količina" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Preveč zaloge je prestavljene" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Prestavljena količina mora biti večja od 0" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Količina za zalogo s serijsko številko mora biti 1" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "Postavka zaloge" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Izvorna postavka zaloge" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Količina zaloge za prestavljanje za izgradnjo" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Inštaliraj v" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Destinacija postavke zaloge" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Izgradnja" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "Izgradnja se ne ujema z nadrejeno izgradnjo" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "Izhodni del se ne ujema s naročilom sestava" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "Ta sestava je že zaključena" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Proizvodnja" msgid "Cancelled" msgstr "Preklicano" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Uporabnik" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "Povezava" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Priloga" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Manjka datoteka" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Manjka zunanja povezava" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Izberite prilogo" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Komentar" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Ime datoteke" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "Postavljeno" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Poslano" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "Izdelava" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/sr/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sr/LC_MESSAGES/django.po index d0cdbc1259..2de254e4bf 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:05\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:57\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API krajnja tačka nije pronađena" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Korisnik nema dozvolu za pregled ovog modela" @@ -56,21 +56,21 @@ msgstr "Detalji o grešci se mogu naći u admin sekciji" msgid "Enter date" msgstr "Unesite datum" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Registracija je onemogućena." @@ -348,8 +348,8 @@ msgstr "Kineski (Tradicionalni)" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Metapodaci dodatka" msgid "JSON metadata field, for use by external plugins" msgstr "Polje metapodataka JSON, za korištenje eksternih dodataka" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Neispravno formatiran obrazac" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Naveden je ključ nepoznatog formata" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Nedostaje potreban ključ formata" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Polje za reference ne može biti prazno" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Referenca mora odgovarati traženom obrascu" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Broj reference je predugačak" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Dvostruka imena ne mogu postojati pod istom nadredjenom grupom" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Nevažeći izvor" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Nevažeći izvor" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Ime" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Ime" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Ime" msgid "Description" msgstr "Opis" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Opis (Opciono)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Putanja" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Zabeleške (Opciono)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Podaci sa barkoda" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Podaci sa barkoda trećih lica" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Heš barkoda" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Jedinstveni hash barkoda" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Postojeći barkod pronađen" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Greška servera" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Server je zabležio grešku." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Mora biti važeći broj" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Valuta" msgid "Select currency from available options" msgstr "Odaberite valutu među dostupnim opcijama" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Nemate dozvolu za promenu ove korisničke uloge." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Samo superkorisnici mogu kreirati nove korisnike" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Nevažeća vrednost" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Datoteka" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Odaberite datoteku za učitavanje" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Nije podržan tip datoteke" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Prevelika datoteka" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Nisu pronađene kolone podataka u datoteci" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Nisu pronađeni redovi podataka u datoteci" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Nisu navedeni redovi podataka" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Nisu obezbeđene kolone podataka" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Nedostaje potrebna kolona: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplicirana kolona: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Udaljena slika" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URL udaljene slike" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Preuzimanje slika s udaljenog URL-a nije omogućeno" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Provera pozadinskog radnika nije uspjela" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Nalog za izradu" msgid "Build Orders" msgstr "Nalozi za izradu" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Nevažeći izbor za nadređenu verziju" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "Deo u nalogu za izradu ne može se izmeniti" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Reference naloga za pravljenje" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Reference naloga za pravljenje" msgid "Reference" msgstr "Referenca" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Kratak opis izrade (nije obavezno)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Link za eksterni URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "Otkazano" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Korisnik" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Prilog" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Nedostaje datoteka" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Nedostaje eksterni link" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Izaberite datoteku za prilog" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Komentar" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Ime datoteke" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "Postavljen" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Poslato" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/sv/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sv/LC_MESSAGES/django.po index 7623cdf051..6681a2ac8b 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API-slutpunkt hittades inte" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Användaren har inte behörighet att se denna modell" @@ -56,21 +56,21 @@ msgstr "Information om felet finns under Error i adminpanelen" msgid "Enter date" msgstr "Ange datum" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Registrering är stängd." @@ -348,8 +348,8 @@ msgstr "Kinesiska (Traditionell)" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Felaktigt formaterat mönster" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Okänd formatnyckel angiven" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Obligatorisk formatnyckel saknas" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Textfältet kan inte lämnas tomt" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Referensen måste matcha obligatoriskt mönster" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Referensnumret är för stort" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Ogiltigt val" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Ogiltigt val" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Namn" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Namn" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Namn" msgid "Description" msgstr "Beskrivning" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Beskrivning (valfritt)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Sökväg" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Streckkodsdata" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Befintlig streckkod hittades" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Serverfel" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Ett fel har loggats av servern." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Måste vara ett giltigt nummer" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Valuta" msgid "Select currency from available options" msgstr "Välj valuta från tillgängliga alternativ" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "Användarnamn" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "Förnamn" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "Efternamn" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Ditt konto har skapats." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Välkommen till InvenTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Ogiltigt värde" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Datafil" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Välj fil för uppladdning" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Filtypen stöds inte" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Filen är för stor" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Inga kolumner hittades i filen" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Inga rader hittades i filen" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Inga rader angivna" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Inga datakolumner har angetts" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Saknar obligatorisk kolumn: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplicerad kolumn: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URL för fjärrbildsfil" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "Nedladdning av bilder från fjärr-URL är inte aktiverad" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Kontroll av bakgrundsarbetare misslyckades" @@ -654,47 +711,48 @@ msgstr "Systeminformation" msgid "About InvenTree" msgstr "Om InvenTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "Byggnationen måste avbrytas innan den kan tas bort" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Byggorder" msgid "Build Orders" msgstr "Byggordrar" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Ogiltigt val för överordnad bygge" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Byggorderreferens" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Byggorderreferens" msgid "Reference" msgstr "Referens" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Överordnat Bygge" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "Byggorder till vilken detta bygge är tilldelad" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Byggorder till vilken detta bygge är tilldelad" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Byggorder till vilken detta bygge är tilldelad" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Byggorder till vilken detta bygge är tilldelad" msgid "Part" msgstr "Del" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Välj del att bygga" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Försäljningsorderreferens" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Försäljningsorder till vilken detta bygge allokeras" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Källa Plats" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Destinationsplats" -#: build/models.py:272 +#: build/models.py:294 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:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Bygg kvantitet" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Antal lagerobjekt att bygga" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Slutförda objekt" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Antal lagerposter som har slutförts" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Byggstatus" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Bygg statuskod" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Batchkod" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Batch-kod för denna byggutdata" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Skapad" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Datum för slutförande" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "Måldatum för färdigställande. Byggandet kommer att förfallas efter detta datum." -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Slutförandedatum" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "slutfört av" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Utfärdad av" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Användare som utfärdade denna byggorder" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Användare som utfärdade denna byggorder" msgid "Responsible" msgstr "Ansvarig" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Extern länk" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Länk till extern URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "Projektkod" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "Byggorder {build} har slutförts" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "En byggorder har slutförts" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Ingen byggutgång angiven" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Byggutgång är redan slutförd" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "Byggutgång matchar inte bygg order" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "Antal" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Lagerposten är överallokerad" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Allokeringsmängden måste vara större än noll" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Antal måste vara 1 för serialiserat lager" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "Artikel i lager" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Källa lagervara" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Lagersaldo att allokera för att bygga" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Installera till" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Destination lagervara" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Bygg utdata" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "Byggutdata matchar inte överordnad version" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Serienummer" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "Plats" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "Status" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Acceptera ofullständig" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Produktion" msgid "Cancelled" msgstr "Avbruten" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Mål" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 -msgid "Invalid currency code" -msgstr "" - #: common/currency.py:132 +msgid "Invalid currency code" +msgstr "Ogiltig valutakod" + +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Unik projektkod" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Projektbeskrivning" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Ingen grupp" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Omstart krävs" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "Serverinstans (Namn)" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Företagsnamn" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Internt företagsnamn" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "Bas-URL" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "Bas-URL för serverinstans" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Standardvaluta" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "dagar" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Ladda ner från URL" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Tillåt nedladdning av bilder och filer från extern URL" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Kräv bekräftelse" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Kräv uttrycklig användarbekräftelse för vissa åtgärder." -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Stöd för streckkoder" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Mall" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Virtuell" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Delar är virtuella som standard" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "Visa import i vyer" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "Visa importguiden i vissa delvyer" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Visa relaterade delar" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "Visa relaterade delar för en del" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "Visningsformat för delnamn" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "Formatera för att visa artikelnamnet" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Interna priser" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Aktivera etikettutskrift" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "Aktivera etikettutskrift från webbgränssnittet" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "Etikettbild DPI" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Aktivera rapporter" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "Aktivera generering av rapporter" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Debugläge" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Sidstorlek" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Standard sidstorlek för PDF-rapporter" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "Aktivera testrapporter" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Aktivera registrering" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "Tillåtna domäner" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" -msgstr "" +#: common/models.py:2002 +msgid "Allowed domains" +msgstr "Tillåtna domäner" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" -#: common/models.py:2011 -msgid "Enable project codes" -msgstr "Aktivera projektkoder" - #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "Aktivera projektkoder" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" -msgstr "Visa nyheter" +msgid "Show depleted stock items on the homepage" +msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" -msgstr "Sök efter artiklar" +msgid "Show overdue builds on the homepage" +msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" -msgstr "Sök efter leverantörsartikel" +msgid "Show outstanding POs on the homepage" +msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" -msgstr "Sök efter tillverkarartikel" +msgid "Show overdue POs on the homepage" +msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" -msgstr "" +#: common/models.py:2287 +msgid "Show News" +msgstr "Visa nyheter" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" +msgstr "Sök efter artiklar" + +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" -msgstr "" +#: common/models.py:2323 +msgid "Search Supplier Parts" +msgstr "Sök efter leverantörsartikel" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" -msgstr "" - -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" +msgstr "Sök efter tillverkarartikel" + +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" -msgstr "Datumformat" - -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" +msgstr "" + +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" msgstr "" +#: common/models.py:2459 +msgid "Date Format" +msgstr "Datumformat" + #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Användare" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "Länk" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "Bild" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Bilaga" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Saknad fil" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Extern länk saknas" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Välj fil att bifoga" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Kommentar" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" -msgstr "" +msgstr "Filstorlek" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "Schemalagda uppgifter" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Filnamn" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Företag" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,15 +4014,15 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" -msgstr "är kund" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Adress" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Adresser" + +#: company/models.py:372 msgid "Select company" msgstr "Välj företag" -#: company/models.py:371 +#: company/models.py:377 msgid "Address title" msgstr "" -#: company/models.py:372 +#: company/models.py:378 msgid "Title describing the address entry" msgstr "" -#: company/models.py:378 +#: company/models.py:384 msgid "Primary address" msgstr "Primär adress" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "Adressrad 1" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "Adressrad 2" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "Postnummer" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "Land" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Tillverkare" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Leverantör" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Välj leverantör" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "I lager" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "Radera bild" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Kund" @@ -4278,13 +4448,6 @@ msgstr "Kund" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Adress" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Telefon" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "Kontakter" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "Adresser" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Nytt företag" msgid "Placed" msgstr "Placerad" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "Kolumner" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "Orderstatus" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Skickad" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "Leveransdatum" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" +msgstr "Leveransdatum" + +#: order/models.py:1695 +msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "Fakturanummer" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Streckkod" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Nyckelord" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "Kategorinamn" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Artiklar" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "Kategori" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "Ikon" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "Ikon (valfritt)" @@ -6081,1002 +6422,1035 @@ msgstr "Ikon (valfritt)" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "Standardleverantör" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "Datum" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Underkategorier" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "Välj kategori" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "Kopiera bild" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "Generera rapport" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "Uppdatera" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "Leverantörsnamn" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "Bygg" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Radera" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "Redigera mall" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "Radera mall" @@ -10516,18 +10916,6 @@ msgstr "Kontoinställningar" msgid "Change Password" msgstr "Ändra lösenord" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "Användarnamn" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "Förnamn" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "Efternamn" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "Avbryt" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "Skicka" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "Ingen kategori" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "Visa som lista" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "Inga underkategorier hittades" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "Ladda underkategorier" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "resultat" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "Lägg till" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "Kolumner" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "Alla" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/th/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/th/LC_MESSAGES/django.po index 7892a43be6..a56a2201ee 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:05\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "ไม่พบ API endpoint" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -56,21 +56,21 @@ msgstr "" msgid "Enter date" msgstr "ป้อนวันที่" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "ข้อมูลเมตาของปลั๊กอิน" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "ชื่อ" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "ชื่อ" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "ชื่อ" msgid "Description" msgstr "คำอธิบาย" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "ข้อมูลบาร์โค้ด" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "บาร์โค้ดนี้มีในระบบแล้ว" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "เกิดข้อผิดพลาดที่เซิร์ฟเวอร์" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "ต้องเป็นตัวเลข" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "สกุลเงิน" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "ยินดีต้อนรับเข้าสู่ Inventree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "ไฟล์ข้อมูล" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "เลือกไฟล์ข้อมูลที่จะอัปโหลด" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "ไฟล์มีขนาดใหญ่เกินไป" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "ข้อมูลระบบ" msgid "About InvenTree" msgstr "เกี่ยวกับ Inventree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "ออกโดย" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "จำนวนต้องมีค่ามากกว่า 0" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "สถานที่" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "สถานะ" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "ยกเลิกแล้ว" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "ผู้ใช้งาน" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "ลิงก์" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "ไฟล์แนบ" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "ไม่พบไฟล์" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "เลือกไฟล์ที่ต้องการแนบ" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "ความคิดเห็น" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "ชื่อไฟล์" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "จัดส่งแล้ว" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "ชิ้นส่วน" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/tr/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/tr/LC_MESSAGES/django.po index c49f650e8b..8a1c55e82b 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API uç noktası bulunamadı" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "Kullanıcının bu modeli görüntüleme izni yok" @@ -56,21 +56,21 @@ msgstr "Hata detaylarını admin panelinde bulabilirsiniz" msgid "Enter date" msgstr "Tarih giriniz" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Kayıt devre dışı." @@ -348,8 +348,8 @@ msgstr "Çince (Geleneksel)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Uygulamaya giriş yap" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Plugin Metaverileri" msgid "JSON metadata field, for use by external plugins" msgstr "Harici eklentiler tarafından kullanım için JSON metadata alanı" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Yanlış biçimlendirilmiş desen" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Belirtilen bilinmeyen format anahtarı" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Gerekli format anahtarı eksik" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Referans alanı boş olamaz" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "Referans {pattern} deseniyle mutlaka eşleşmeli" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Referans sayısı çok fazla" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "Aynı kaynak altında birden fazla aynı isim kullanılamaz" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Geçersiz seçim" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Geçersiz seçim" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Adı" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Adı" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Adı" msgid "Description" msgstr "Açıklama" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Açıklama (isteğe bağlı)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Yol" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Markdown notları (isteğe bağlı)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Barkod Verisi" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Üçüncü parti barkod verisi" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Barkod Hash" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "Barkod verisinin benzersiz hash'i" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Var olan barkod bulundu" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Sunucu Hatası" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Bir hafta sunucu tarafından kayıt edildi." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Geçerli bir numara olmalı" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Para birimi" msgid "Select currency from available options" msgstr "Var olan seçeneklerden bir döviz birimi seçin" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Aktif" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Bu kullanıcı rolünü değiştirmek için izniniz yok." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Sadece süper kullanıcılar yeni kullanıcı oluşturabilir" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Kullanıcı hesabınız oluşturulmuştur." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Giriş yapmak için lütfen şifre sıfırlama fonksiyonunu kullanınız" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "InvenTree'ye Hoşgeldiniz" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Geçersiz değer" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Veri Dosyası" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Yüklemek istediğiniz dosyayı seçin" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Desteklenmeyen dsoya tipi" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Dosya boyutu çok büyük" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Dosyada kolon bulunamadı" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Dosyada satır bulunamadı" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Dosyada satır bulunamadı" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Dosyada uygun kolon bulunamadı" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Gerekli kolon ismi eksik:'{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Tekrarlanan kolon ismi:'{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Uzaktan Görüntüler" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "Uzaktan görüntü dosya URL'si" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Arka plan çalışanı kontrolü başarısız oldu" @@ -654,47 +711,48 @@ msgstr "Sistem Bilgisi" msgid "About InvenTree" msgstr "InvenTree Hakkında" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Mevcut" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Yapım İşi Emri" msgid "Build Orders" msgstr "Yapım İşi Emirleri" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Yapım İşi Emri Referansı" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Yapım İşi Emri Referansı" msgid "Reference" msgstr "Referans" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Üst Yapım İşi" -#: build/models.py:232 +#: build/models.py:254 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:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Bu yapım işinin tahsis edildiği yapım işi emri" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Bu yapım işinin tahsis edildiği yapım işi emri" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Bu yapım işinin tahsis edildiği yapım işi emri" msgid "Part" msgstr "Parça" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Yapım işi için parça seçin" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Satış Emri Referansı" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "Bu yapım işinin tahsis edildiği satış emri" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Kaynak Konum" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Hedef Konum" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "Tamamlanmış ögelerin saklanacağı konumu seçiniz" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Yapım İşi Miktarı" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Yapım işi stok kalemlerinin sayısı" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Tamamlanmış ögeler" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "Tamamlanan stok kalemlerinin sayısı" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "Yapım İşi Durumu" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Yapım işi durum kodu" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Sıra numarası" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Yapım işi çıktısı için sıra numarası" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Oluşturulma tarihi" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Hedef tamamlama tarihi" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Tamamlama tarihi" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "tamamlayan" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Veren" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "Bu yapım işi emrini veren kullanıcı" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Bu yapım işi emrini veren kullanıcı" msgid "Responsible" msgstr "Sorumlu" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Harici Bağlantı" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Harici URL'ye bağlantı" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Yapım işi çıktısı belirtilmedi" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Yapım işi çıktısı zaten tamamlanmış" -#: build/models.py:855 +#: build/models.py:877 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:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "Miktar" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Stok kalemi fazladan tahsis edilmiş" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "Tahsis edilen miktar sıfırdan büyük olmalıdır" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Seri numaralı stok için miktar bir olmalı" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "Stok Kalemi" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Kaynak stok kalemi" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "Yapım işi için tahsis edilen stok miktarı" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Kurulduğu yer" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Hedef stok kalemi" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Yapım işi çıktısı için miktarını girin" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Seri Numaraları" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "Yapım işi çıktısı için seri numaraları girin" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Yapım işi çıktısı için seri numaraları girin" msgid "Location" msgstr "Konum" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "Durum" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "Gerekli stok tamamen tahsis edilemedi" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "Gerekli yapım işi miktarı tamamlanmadı" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Üretici Parça Numarası" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Takip Edilebilir" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Üretim" msgid "Cancelled" msgstr "İptal edildi" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "Stok, yapım işi emri için tamamen tahsis edilemedi" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Stok Kaynağı" msgid "Stock can be taken from any available location." msgstr "Stok herhangi bir konumdan alınabilir." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Hedef" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "Tamamlanmamış Çıktılar" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "Anahtar dizesi benzersiz olmalı" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Şirket adı" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "Ana URL" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Varsayılan Para Birimi" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "günler" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "URL'den indir" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Harici URL'den resim ve dosyaların indirilmesine izin ver" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Barkod Desteği" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 +msgid "Enable revision field for Part" +msgstr "" + +#: common/models.py:1412 +msgid "Allow Deletion from Assembly" +msgstr "" + +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" +msgstr "" + +#: common/models.py:1418 msgid "IPN Regex" msgstr "DPN Regex" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "Parça DPN eşleştirmesi için Düzenli İfade Kalıbı (Regex)" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Yinelenen DPN'ye İzin Ver" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "Birden çok parçanın aynı DPN'yi paylaşmasına izin ver" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "DPN Düzenlemeye İzin Ver" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "Parçayı düzenlerken DPN değiştirmeye izin ver" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "Kategori Paremetre Sablonu Kopyala" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "Parça oluştururken kategori parametre şablonlarını kopyala" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Şablon" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "Parçaları varsayılan olan şablondur" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Montaj" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "Parçalar varsayılan olarak başka bileşenlerden monte edilebilir" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Bileşen" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "Parçalar varsayılan olarak alt bileşen olarak kullanılabilir" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Satın Alınabilir" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "Parçalar varsayılan olarak satın alınabilir" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Satılabilir" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Parçalar varsayılan olarak satılabilir" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Takip Edilebilir" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "Parçalar varsayılan olarak takip edilebilir" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Sanal" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Parçalar varsayılan olarak sanaldır" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "İlgili parçaları göster" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Hata Ayıklama Modu" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "Raporları hata ayıklama modunda üret (HTML çıktısı)" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Sayfa Boyutu" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "PDF raporlar için varsayılan sayfa boyutu" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "Stok konumu ve ögeler üzerinde sahiplik kontrolünü etkinleştirin" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" -msgstr "Formlarda Miktarı Göster" - -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" +msgstr "" + +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" +msgstr "Formlarda Miktarı Göster" + +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Kullanıcı" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Fiyat" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Aktif" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "Bağlantı" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "Resim" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Ek" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Eksik dosya" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Bozuk dış bağlantı" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Eklenecek dosyayı seç" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Yorum" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Dosya adı" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "İletişim telefon numarası" msgid "Contact email address" msgstr "İletişim e-posta adresi" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" -msgstr "müşteri mi" +msgid "Is customer" +msgstr "" #: company/models.py:169 msgid "Do you sell items to this company?" msgstr "Bu şirkete ürün satıyor musunuz?" #: company/models.py:174 -msgid "is supplier" -msgstr "tedarikçi mi" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "Bu şirketten ürün satın alıyor musunuz?" #: company/models.py:180 -msgid "is manufacturer" -msgstr "üretici mi" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "Bu şirket üretim yapıyor mu?" msgid "Default currency used for this company" msgstr "Bu şirket için varsayılan para birimi" -#: company/models.py:366 -msgid "Select company" -msgstr "" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Adres" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Temel Parça" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "Parça seçin" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Üretici" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Üretici seçin" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "ÜPN" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Üretici Parça Numarası" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Parametre adı" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Değer" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Parametre değeri" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "Tedarikçi Parçası" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Tedarikçi" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Tedarikçi seçin" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Not" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "temel maliyet" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "Paketleme" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "çoklu" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "Pasif" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Müşteri" @@ -4278,13 +4448,6 @@ msgstr "Müşteri" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Adres" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Yeni Şirket" msgid "Placed" msgstr "Sipariş verildi" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "Harici sayfaya bağlantı" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Sevk edildi" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "Tahsis miktarı stok miktarını aşamaz" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "Seri numaralı stok kalemi için miktar bir olmalı" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "Stok tahsis miktarını girin" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "DPN" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "Revizyon" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Anahtar kelimeler" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "Çeşidi" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "Minimum Stok" @@ -5855,18 +6203,19 @@ msgstr "Minimum Stok" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Parçalar" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "Varsayılan Konum" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "Parça Kategorileri" msgid "Default location for parts in this category" msgstr "Bu kategori içindeki parçalar için varsayılan konum" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "Yinelenen DPN'ye parça ayarlarında izin verilmiyor" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Parça adı" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "Şablon Mu" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "Bu parça bir şablon parçası mı?" -#: part/models.py:907 +#: part/models.py:911 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:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "Parça revizyon veya versiyon numarası" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "Varsayılan Tedarikçi" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "Varsayılan tedarikçi parçası" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "Bu parça diğer parçalardan yapılabilir mi?" -#: part/models.py:1059 +#: part/models.py:1063 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:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "Bu parça dış tedarikçilerden satın alınabilir mi?" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "Bu parça müşterilere satılabilir mi?" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "Bu parça aktif mi?" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "Oluşturan Kullanıcı" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "Test şablonları sadece takip edilebilir paçalar için oluşturulabilir" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "Test Adı" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "Test Açıklaması" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Etkin" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "Gerekli" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "Testi geçmesi için bu gerekli mi?" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "Parametre şablon adı benzersiz olmalıdır" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Parametre Şablonu" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 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:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "Çeşide İzin Ver" -#: part/models.py:4119 +#: part/models.py:4204 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:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Alt kategoriler" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "Etiket Yazdır" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "Parça işlemleri" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "Stok" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "Stok Yok" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "Stok Konumu" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "Stok Konumları" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "Seri numarası olan ögenin miktarı bir olmalı" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "Miktar birden büyük ise seri numarası ayarlanamaz" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "Üst Stok Kalemi" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "Bu stok kalemi için tedarikçi parçası seçin" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "Bu öge için seri numarası" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "Seri numaraları tam sayı listesi olmalı" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "Miktar seri numaları ile eşleşmiyor" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "Seri numaraları zaten mevcut" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "Stok kalemi stokta olmadığı için taşınamaz" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "İşlem notu ekle (isteğe bağlı)" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Alt konumlar" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "Yapım İşi" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "Stok kalemi tüm gerekli testleri geçmedi" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "Bu stok kaleminin süresi %(item.expiry_date)s tarihinde sona erdi" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "İzinleri ayarla" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Grup" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Görünüm" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Parçayı görüntüleme izni" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Parça ekleme izni" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Değiştir" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Parçaları düzenleme izni" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Parçaları silme izni" diff --git a/src/backend/InvenTree/locale/uk/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/uk/LC_MESSAGES/django.po index 20a2d48881..9d67298404 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -56,21 +56,21 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" diff --git a/src/backend/InvenTree/locale/vi/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/vi/LC_MESSAGES/django.po index f308c98d48..81dcba6000 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: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "API endpoint không tồn tại" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 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" @@ -56,21 +56,21 @@ msgstr "Chi tiết lỗi có thể được tìm thấy trong bảng quản tr msgid "Enter date" msgstr "Nhập ngày" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ 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/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "Đăng ký bị vô hiệu hóa." @@ -348,8 +348,8 @@ msgstr "Tiếng Trung (Phồn thể)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Đăng nhập vào ứng dụng" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "Phụ trợ siêu dữ liệu" 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:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "Mẫu được định dạng không thích hợp" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "Khóa định dạng không rõ ràng đã được chỉ định" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "Thiếu khóa định dạng cần thiết" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "Trường tham chiếu không thể rỗng" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 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:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "Số tham chiếu quá lớn" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 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:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "Lựa chọn sai" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "Lựa chọn sai" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "Tên" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "Tên" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "Tên" msgid "Description" msgstr "Mô tả" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "Mô tả (tùy chọn)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "Đường dẫn" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "Ghi chú markdown (không bắt buộc)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "Dữ liệu mã vạch" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "Dữ liệu mã vạch của bên thứ ba" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "Dữ liệu băm mã vạch" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 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:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "Mã vạch đã tồn tại" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "Lỗi máy chủ" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "Lỗi đã được ghi lại bởi máy chủ." -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "Phải là một số hợp lệ" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "Tiền tệ" msgid "Select currency from available options" msgstr "Chọn tiền tệ trong các tùy chọn đang có" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "Tên người dùng" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "Tên" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "Họ" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "Hoạt động" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "Bạn không có quyền thay đổi vai trò của người dùng này." -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "Chỉ có siêu người dùng là có thể tạo người dùng mới" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "Tài khoản của bạn đã được tạo." -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "Xin hãy sử dụng chức năng tạo lại mật khẩu để đăng nhập" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "Chào mừng đến với InvenTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "Giá trị không hợp lệ" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "Tập tin dữ liệu" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "Chọn tệp tin để tải lên" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "Loại tệp tin không được hỗ trợ" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "Tệp tin quá lớn" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "Không tìm thấy cột nào trong tệp tin" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "Không tìm thấy dòng nào trong tệp tin" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "Chưa có dữ liệu" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "Chưa cung cấp cột dữ liệu" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Thiếu cột bắt buộc: '{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Nhân bản cột: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "Hình ảnh từ xa" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "URL của tệp hình ảnh bên ngoài" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 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/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "Nhân công chạy ngầm kiểm tra thất bại" @@ -654,47 +711,48 @@ msgstr "Thông tin hệ thống" msgid "About InvenTree" msgstr "Giới thiệu" -#: build/api.py:255 +#: build/api.py:248 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:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "Vật tư tiêu hao" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "Tuỳ chọn" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "Đã theo dõi" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "Đã cấp phát" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "Có sẵn" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "Tạo đơn hàng" msgid "Build Orders" msgstr "Tạo đơn hàng" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "Lựa chọn sai cho bản dựng cha" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 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:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "Tham chiếu đơn đặt bản dựng" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "Tham chiếu đơn đặt bản dựng" msgid "Reference" msgstr "Tham chiếu" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "Mô tả ngắn về phiên bạn (Tùy chọn)" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "Phiên bản cha" -#: build/models.py:232 +#: build/models.py:254 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:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "Đơn đặt bản dựng với bản dựng này đã được phân b #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "Đơn đặt bản dựng với bản dựng này đã được phân b #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "Đơn đặt bản dựng với bản dựng này đã được phân b msgid "Part" msgstr "Nguyên liệu" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "Chọn sản phẩm để xây dựng" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "Tham chiếu đơn đặt bản dựng" -#: build/models.py:254 +#: build/models.py:276 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:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "Địa điểm nguồn" -#: build/models.py:263 +#: build/models.py:285 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:268 +#: build/models.py:290 msgid "Destination Location" msgstr "Địa điểm đích" -#: build/models.py:272 +#: build/models.py:294 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:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "Xây dựng số lượng" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "Số kho hàng để dựng" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "Những mục hoàn thành" -#: build/models.py:285 +#: build/models.py:307 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:289 +#: build/models.py:311 msgid "Build Status" msgstr "Trnạg thái bản dựng" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "Mã trạng thái bản dựng" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "Mã lô hàng" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "Mã lô cho đầu ra bản dựng này" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "Ngày tạo" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "Ngày hoàn thành mục tiêu" -#: build/models.py:314 +#: build/models.py:336 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:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "Ngày hoàn thành" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "hoàn thành bởi" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "Cấp bởi" -#: build/models.py:332 +#: build/models.py:354 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:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "Người dùng người đã được phân công cho đơn đặt bản msgid "Responsible" msgstr "Chịu trách nhiệm" -#: build/models.py:341 +#: build/models.py:363 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:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "Liên kết bên ngoài" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "Liên kết đến URL bên ngoài" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "Độ ưu tiên" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "Độ quan trọng của đơn đặt bản dựng" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "Độ quan trọng của đơn đặt bản dựng" msgid "Project Code" msgstr "Mã dự án" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "Mã dự án cho đơn đặt bản dựng này" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, 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:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "Một đơn đặt bản dựng đã được hoàn thành" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "Không có đầu ra bản dựng đã được chỉ ra" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "Đầu ra bản dựng đã được hoàn thiện" -#: build/models.py:855 +#: build/models.py:877 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:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "Số lượng phải lớn hơn 0" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 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:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "Dựng đối tượng" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "Dựng đối tượng" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "Dựng đối tượng" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "Dựng đối tượng" msgid "Quantity" msgstr "Số lượng" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "Yêu cầu số lượng để dựng đơn đặt" -#: build/models.py:1464 +#: build/models.py:1486 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:1473 +#: build/models.py:1495 #, 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:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "Kho hàng đã bị phân bổ quá đà" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 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:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "Số lượng phải là 1 cho kho sê ri" -#: build/models.py:1554 +#: build/models.py:1576 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:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "Hàng trong kho đã chọn không phù hợp với đường BOM" msgid "Stock Item" msgstr "Kho hàng" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "Kho hàng gốc" -#: build/models.py:1640 +#: build/models.py:1662 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:1648 +#: build/models.py:1670 msgid "Install into" msgstr "Cài đặt vào" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "Kho hàng đích" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "Tên sản phẩm" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "Đầu ra bản dựng" -#: build/serializers.py:168 +#: build/serializers.py:172 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:172 +#: build/serializers.py:176 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:176 +#: build/serializers.py:180 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:187 +#: build/serializers.py:191 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:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "Điền số lượng cho đầu ra bản dựng" -#: build/serializers.py:275 +#: build/serializers.py:279 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:278 +#: build/serializers.py:282 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:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "Số sê-ri" -#: build/serializers.py:294 +#: build/serializers.py:298 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:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "Nhập vào số sêri cho đầu ra bản dựng" msgid "Location" msgstr "Địa điểm" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "Số sêri tự cấp" -#: build/serializers.py:315 +#: build/serializers.py:319 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:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 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:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 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:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "Vị trí kho cho đầu ra phế phẩm" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "Hủy phân bổ" -#: build/serializers.py:448 +#: build/serializers.py:452 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:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "Lý do loại bỏ đầu ra bản dựng" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "Vị trí cho đầu ra bản dựng hoàn thiện" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "Vị trí cho đầu ra bản dựng hoàn thiện" msgid "Status" msgstr "Trạng thái" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "Chấp nhận phân kho dang dở" -#: build/serializers.py:526 +#: build/serializers.py:530 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:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "Xóa toàn bộ đầu ra chưa hoàn thành" -#: build/serializers.py:619 +#: build/serializers.py:623 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:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "Chưa được cấp phép" -#: build/serializers.py:647 +#: build/serializers.py:651 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:648 +#: build/serializers.py:652 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:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "Kho quá tải" -#: build/serializers.py:680 +#: build/serializers.py:684 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:690 +#: build/serializers.py:694 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:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "Chấp nhận chưa phân bổ được" -#: build/serializers.py:696 +#: build/serializers.py:700 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:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 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:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "Chấp nhận không hoàn thành" -#: build/serializers.py:712 +#: build/serializers.py:716 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:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 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:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 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:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "Lộ giới" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "Đầu ra bản dựng" -#: build/serializers.py:787 +#: build/serializers.py:791 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:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "Mục chi tiết bản dựng" -#: build/serializers.py:837 +#: build/serializers.py:841 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:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "Hàng hóa phải trong kho" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "Số lượng có sẵn ({q}) đã bị vượt quá" -#: build/serializers.py:906 +#: build/serializers.py:910 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:913 +#: build/serializers.py:917 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:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "Hàng hóa phân bổ phải được cung cấp" -#: build/serializers.py:1000 +#: build/serializers.py:1004 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:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "Ngoại trừ vị trí" -#: build/serializers.py:1009 +#: build/serializers.py:1013 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:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "Kho trao đổi" -#: build/serializers.py:1015 +#: build/serializers.py:1019 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:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "Kho thay thế" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "Cho phép phân kho sản phẩm thay thế" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "Mục tùy chọn" -#: build/serializers.py:1027 +#: build/serializers.py:1031 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:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "Mã số nhà sản xuất" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "Tên địa điểm" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "IPN sản phẩm" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "Có thể theo dõi" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "Mục BOM" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "Bật đơn hàng" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "Đang sản xuất" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "Số hàng tồn" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "Sản xuất" msgid "Cancelled" msgstr "Đã hủy" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "Kho không được phân bổ đầy đủ với yêu cầu bản dựn #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "Đầu ra hoàn thiện" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "Nguồn kho" msgid "Stock can be taken from any available location." msgstr "Kho có thể được lấy từ bất kỳ địa điểm nào." -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "Đích đến" @@ -1827,31 +1956,31 @@ msgstr "Chi tiết đơn đặt bản dựng" msgid "Incomplete Outputs" msgstr "Đầu ra chưa hoàn thiện" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "Không phần mở rộng" @@ -1905,1591 +2034,1604 @@ msgstr "Nhãn thời gian của lần cập cuối cùng" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "Mã dự án duy nhất" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "Mô tả dự án" -#: common/models.py:148 +#: common/models.py:153 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:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "Khóa thiết lập (phải duy nhất - phân biệt hoa thường)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "Giá trị cài đặt" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "Giá trị đã chọn không hợp lệ" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "Giá trị phải là kiểu boolean" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "Giá trị phải là một số nguyên dương" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "Chuỗi khóa phải duy nhất" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "Không có nhóm" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "Cần khởi động lại" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "Một thiết lập đã bị thay đổi yêu cầu khởi động lại máy chủ" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "Chuyển dữ liệu chờ xử lý" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "Số đợt nâng cấp cơ sở dữ liệu chờ xử lý" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "Tên thực thể máy chủ" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "Mô tả chuỗi cho thực thể máy chủ" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "Sử dụng tên thực thể" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "Sử dụng tên thực thể trên thanh tiêu đề" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "Cấm hiển thị `giới thiệu`" -#: common/models.py:1241 +#: common/models.py:1246 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/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "Tên công ty" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "Tên công ty nội bộ" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "URL cơ sở" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "URL cơ sở cho thực thể máy chủ" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "Tiền tệ mặc định" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "Chọn tiền tệ chính khi tính giá" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "Tần suất cập nhật tiền tệ" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "Mức độ thường xuyên để cập nhật tỉ giá hối đoái (điền 0 để tắt)" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "ngày" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "Phần mở rộng cập nhật tiền tệ" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "Phần mở rộng cập nhật tiền tệ được sử dụng" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "Tải về từ URL" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "Cho phép tải ảnh và tệp tin từ xa theo URL bên ngoài" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "Giới hạn kích thước tải xuống" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "Kích thước tải xuống tối đa với hình ảnh từ xa" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "User-agent được dùng để tải xuống theo URL" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "Cho phép ghi đè user-agent được dùng để tải về hình ảnh và tệp tin từ xa theo URL bên ngoài (để trống nghĩa là dùng mặc định)" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "Yêu cầu xác nhận" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "Yêu cầu người dùng xác nhận rõ ràng với một số chức năng nhất định." -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "Cấp độ cây" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "Độ sâu cây mặc định cho màn hình cây. Cấp độ sâu hơn sẽ sử dụng kỹ thuật tải chậm nếu cần thiết." -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "Thời gian kiểm tra bản cập nhật" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "Mức độ thường xuyên để kiểm tra bản cập nhật (điền 0 để tắt)" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "Sao lưu tự động" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "Bật tính năng sao lưu tự động cơ sở dữ liệu và tệp tin đa phương tiện" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "Khoảng thời gian sao lưu tự động" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "Xác định số ngày giữa các kỳ sao lưu tự động" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "Khoảng thời gian xóa tác vụ" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "Kết quả tác vụ chạy ngầm sẽ bị xóa sau số ngày được chỉ định" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "Khoảng thời gian xóa nhật ký lỗi" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "Nhật ký lỗi sẽ bị xóa sau số ngày được chỉ định" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "Khoảng thời gian xóa thông báo" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "Thông báo sẽ bị xóa sau số ngày được chỉ định" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "Hỗ trợ mã vạch" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "Bật hỗ trợ máy quét mã vạch trong giao diện web" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "Độ trễ quét mã vạch" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "Thời gian trễ xử lý đầu đọc mã vạch" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "Hỗ trợ mã vạch qua webcam" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "Cho phép quét mã vạch qua webcam bên trong trình duyệt" -#: common/models.py:1395 +#: common/models.py:1400 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 msgid "Part Revisions" msgstr "Phiên bản Sản phẩm" -#: common/models.py:1396 +#: common/models.py:1407 msgid "Enable revision field for Part" msgstr "Bật trường phiên bản cho sản phẩm" -#: common/models.py:1401 +#: common/models.py:1412 msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1402 +#: common/models.py:1413 msgid "Allow deletion of parts which are used in an assembly" msgstr "" -#: common/models.py:1407 +#: common/models.py:1418 msgid "IPN Regex" msgstr "Mẫu IPN" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "Mẫu dùng nhanh phổ biến dành cho tìm IPN sản phẩm" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "Cho phép trùng IPN" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "Cho phép nhiều sản phẩm dùng IPN giống nhau" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "Cho phép sửa IPN" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "Cho phép đổi giá trị IPN khi sửa một sản phẩm" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "Sao chép dữ liệu BOM của sản phẩm" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "Sao chép dữ liệu BOM mặc định khi nhân bản 1 sản phẩm" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "Sao chép dữ liệu tham số sản phẩm" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "Sao chép dữ liệu tham số mặc định khi nhân bản 1 sản phẩm" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "Chép thông tin kiểm thử sản phẩm" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "Sao chép dữ liệu kiểm thử mặc định khi nhân bản 1 sản phẩm" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "Sao chéo mẫu tham số danh mục" -#: common/models.py:1442 +#: common/models.py:1453 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/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "Mẫu" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "Sản phẩm là mẫu bởi mặc định" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "Lắp ráp" -#: common/models.py:1454 +#: common/models.py:1465 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/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "Thành phần" -#: common/models.py:1460 +#: common/models.py:1471 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/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "Có thể mua" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "Sản phẩm mặc định có thể mua được" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "Có thể bán" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "Sản phẩm mặc định có thể bán được" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "Có thể theo dõi" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "Sản phẩm mặc định có thể theo dõi được" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "Ảo" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "Sản phẩm mặc định là số hóa" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "Hiển thị Nhập liệu trong khung xem" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "Hiển thị đồ thuật nhập dữ liệu trong một số khung nhìn sản phẩm" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "Hiển thị sản phẩm liên quan" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "Hiện sản phẩm liên quan cho 1 sản phẩm" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "Số liệu tồn kho ban đầu" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "Cho phép tạo tồn kho ban đầu khi thêm 1 sản phẩm mới" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "Dữ liệu nhà cung cấp ban đầu" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "Cho phép tạo dữ liệu nhà cung cấp ban đầu khi thêm 1 sản phẩm mới" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "Định dạng tên sản phẩm hiển thị" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "Định dạng để hiển thị tên sản phẩm" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "Biểu tượng mặc định của danh mục sản phẩm" -#: common/models.py:1523 +#: common/models.py:1534 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/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "Bắt buộc đơn vị tham số" -#: common/models.py:1529 +#: common/models.py:1540 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/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "Vị trí phần thập phân giá bán tối thiểu" -#: common/models.py:1537 +#: common/models.py:1548 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/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "Vị trí phần thập phân giá bán tối đa" -#: common/models.py:1550 +#: common/models.py:1561 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/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "Sử dụng giá bán nhà cung cấp" -#: common/models.py:1563 +#: common/models.py:1574 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/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "Ghi đè lịch sử mua hàng" -#: common/models.py:1571 +#: common/models.py:1582 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/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "Sử dụng giá hàng hóa trong kho" -#: common/models.py:1579 +#: common/models.py:1590 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/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "Tuổi giá kho hàng" -#: common/models.py:1587 +#: common/models.py:1598 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/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "Sử dụng giá biến thể" -#: common/models.py:1595 +#: common/models.py:1606 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/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "Chỉ các biến thể hoạt động" -#: common/models.py:1602 +#: common/models.py:1613 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/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "Tần suất tạo lại giá" -#: common/models.py:1610 +#: common/models.py:1621 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/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "Giá nội bộ" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "Bật giá nội bộ cho sản phẩm" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "Ghi đè giá nội bộ" -#: common/models.py:1625 +#: common/models.py:1636 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/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "Bật in tem nhãn" -#: common/models.py:1632 +#: common/models.py:1643 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/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "DPI hỉnh ảnh tem nhãn" -#: common/models.py:1639 +#: common/models.py:1650 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/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "Bật báo cáo" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "Cho phép tạo báo cáo" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "Chế độ gỡ lỗi" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "Tạo báo cáo trong chế độ gỡ lỗi (đầu ra HTML)" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "Khổ giấy" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "Kích thước trang mặc định cho báo cáo PDF" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "Bật báo cáo kiểm thử" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "Cho phép tạo báo cáo kiểm thử" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "Đính kèm báo cáo kiểm thử" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "Khi in một báo cáo kiểm thử, đính kèm một bản sao của báo cáo kiểm thử với hàng trong kho đã được kết hợp" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "Sê ri toàn cục duy nhất" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "Số sê ri cho hàng trong kho phải là duy nhất trong toàn hệ thống" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "Tự động điền số sê ri" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "Tự động điền số sê ri vào biểu mẫu" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "Xóa kho đã hết hàng" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "Mẫu sinh mã theo lô" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "Mẫu tạo mã theo lô mặc định cho hàng trong kho" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "Quá hạn trong kho" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "Bật chức năng quá hạn tồn kho" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "Bán kho quá hạn" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "Cho phép bán hàng kho quá hạn" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "Thời gian hàng cũ trong kho" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "Số ngày hàng trong kho được xác định là cũ trước khi quá hạn" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "Dựng kho quá hạn" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "Cho phép xây dựng với kho hàng quá hạn" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "Kiểm soát sở hữu kho" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "Bật chức năng kiểm soát sở hữu kho với địa điểm và hàng trong kho" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "Biểu tượng địa điểm kho mặc định" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "Biểu tượng địa điểm kho hàng mặc định (trống nghĩa là không có biểu tượng)" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "Hiển thị hàng hóa đã lắp đặt" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "Hiển thị hàng trong kho đã được lắp đặt trên bảng kho" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "Mã tham chiếu đơn đặt bản dựng" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "Mẫu bắt buộc cho để trường tham chiếu đơn đặt bản dựng" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "Bật đơn hàng trả lại" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "Bật chức năng đơn hàng trả lại trong giao diện người dùng" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "Mẫu tham chiếu đơn hàng trả lại" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "Sửa đơn hàng trả lại đã hoàn thành" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "Cho phép sửa đơn hàng trả lại sau khi đã hoàn thành rồi" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "Mẫu tham chiếu đơn đặt hàng" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "Mẫu bắt buộc để tạo trường tham chiếu đơn đặt hàng" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "Vận chuyển mặc định đơn đặt hàng" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "Cho phép tạo vận chuyển mặc định với đơn đặt hàng" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "Sửa đơn đặt hàng đã hoàn thành" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "Cho phép sửa đơn đặt hàng sau khi đã vận chuyển hoặc hoàn thành" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "Mẫu tham chiếu đơn đặt mua" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "Mẫu bắt buộc cho để trường tham chiếu đơn đặt mua" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "Sửa đơn đặt mua đã hoàn thành" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "Cho phép sửa đơn đặt mua sau khi đã vận chuyển hoặc hoàn thành" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "Tự động hoàn thành đơn đặt mua" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "Bật quên mật khẩu" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "Bật chức năng quên mật khẩu trong trang đăng nhập" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "Bật đăng ký" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "Cho phép người dùng tự đăng ký tại trang đăng nhập" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "Bật SSO" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "Cho phép SSO tại trang đăng nhập" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "Bật đăng ký SSO" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "Cho phép người dùng tự đăng ký SSO tại trang đăng nhập" -#: common/models.py:1913 -msgid "Email required" -msgstr "Yêu cầu email" +#: common/models.py:1944 +msgid "Enable SSO group sync" +msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" -msgstr "Yêu cầu người dùng cung cấp email để đăng ký" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "Người dùng tự động điền SSO" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "Tự động điền thông tin chi tiết từ dữ liệu tài khoản SSO" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "Thư 2 lần" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "Khi đăng ký sẽ hỏi người dùng hai lần thư điện tử của họ" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "Mật khẩu 2 lần" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "Khi đăng ký sẽ hỏi người dùng hai lần mật khẩu của họ" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "Các tên miền được phép" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "Cấm đăng ký với 1 số tên miền cụ thể (dấu phẩy ngăn cách, bắt đầu với dấu @)" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "Nhóm khi đăng ký" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "Nhóm được gán cho người dùng mới khi đăng ký" - -#: common/models.py:1953 -msgid "Enforce MFA" -msgstr "Bắt buộc MFA" +#: common/models.py:1952 +msgid "SSO group key" +msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." -msgstr "Người dùng phải sử dụng bảo mật đa nhân tố." +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" -msgstr "Kiểm tra phần mở rộng khi khởi động" +#: common/models.py:1960 +msgid "SSO group map" +msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" -msgstr "Kiểm tra toàn bộ phần mở rộng đã được cài đặt khi khởi dộng - bật trong môi trường ảo hóa" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" -msgstr "Kiểm tra cập nhật plugin" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" +msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 +msgid "Email required" +msgstr "Yêu cầu email" + +#: common/models.py:1977 +msgid "Require user to supply mail on signup" +msgstr "Yêu cầu người dùng cung cấp email để đăng ký" + +#: common/models.py:1982 +msgid "Auto-fill SSO users" +msgstr "Người dùng tự động điền SSO" + +#: common/models.py:1984 +msgid "Automatically fill out user-details from SSO account-data" +msgstr "Tự động điền thông tin chi tiết từ dữ liệu tài khoản SSO" + +#: common/models.py:1990 +msgid "Mail twice" +msgstr "Thư 2 lần" + +#: common/models.py:1991 +msgid "On signup ask users twice for their mail" +msgstr "Khi đăng ký sẽ hỏi người dùng hai lần thư điện tử của họ" + +#: common/models.py:1996 +msgid "Password twice" +msgstr "Mật khẩu 2 lần" + +#: common/models.py:1997 +msgid "On signup ask users twice for their password" +msgstr "Khi đăng ký sẽ hỏi người dùng hai lần mật khẩu của họ" + +#: common/models.py:2002 +msgid "Allowed domains" +msgstr "Các tên miền được phép" + +#: common/models.py:2004 +msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgstr "Cấm đăng ký với 1 số tên miền cụ thể (dấu phẩy ngăn cách, bắt đầu với dấu @)" + +#: common/models.py:2010 +msgid "Group on signup" +msgstr "Nhóm khi đăng ký" + +#: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" + +#: common/models.py:2018 +msgid "Enforce MFA" +msgstr "Bắt buộc MFA" + +#: common/models.py:2019 +msgid "Users must use multifactor security." +msgstr "Người dùng phải sử dụng bảo mật đa nhân tố." + +#: common/models.py:2024 +msgid "Check plugins on startup" +msgstr "Kiểm tra phần mở rộng khi khởi động" + +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "Kiểm tra toàn bộ phần mở rộng đã được cài đặt khi khởi dộng - bật trong môi trường ảo hóa" + +#: common/models.py:2034 +msgid "Check for plugin updates" +msgstr "Kiểm tra cập nhật plugin" + +#: common/models.py:2035 +msgid "Enable periodic checks for updates to installed plugins" +msgstr "" + +#: common/models.py:2041 msgid "Enable URL integration" msgstr "Bật tích hợp URL" -#: common/models.py:1977 +#: common/models.py:2042 msgid "Enable plugins to add URL routes" msgstr "Bật phần mở rộng để thêm định tuyến URL" -#: common/models.py:1983 +#: common/models.py:2048 msgid "Enable navigation integration" msgstr "Bật tích hợp điều hướng" -#: common/models.py:1984 +#: common/models.py:2049 msgid "Enable plugins to integrate into navigation" msgstr "Bật phần mở rộng để tích hợp thanh định hướng" -#: common/models.py:1990 +#: common/models.py:2055 msgid "Enable app integration" msgstr "Bật tích hợp ứng dụng" -#: common/models.py:1991 +#: common/models.py:2056 msgid "Enable plugins to add apps" msgstr "Bật phần mở rộng để thêm ứng dụng" -#: common/models.py:1997 +#: common/models.py:2062 msgid "Enable schedule integration" msgstr "Cho phép tích hợp lập lịch" -#: common/models.py:1998 +#: common/models.py:2063 msgid "Enable plugins to run scheduled tasks" msgstr "Bật phẩn mở rộng để chạy các tác vụ theo lịch" -#: common/models.py:2004 +#: common/models.py:2069 msgid "Enable event integration" msgstr "Bật tích hợp nguồn cấp sự kiện" -#: common/models.py:2005 +#: common/models.py:2070 msgid "Enable plugins to respond to internal events" msgstr "Bật phần mở rộng để trả lời sự kiện bên trong" -#: common/models.py:2011 +#: common/models.py:2076 msgid "Enable project codes" msgstr "Bật mã dự án" -#: common/models.py:2012 +#: common/models.py:2077 msgid "Enable project codes for tracking projects" msgstr "Bật mã dự án để theo dõi dự án" -#: common/models.py:2017 +#: common/models.py:2082 msgid "Stocktake Functionality" msgstr "Chức năng kiểm kê" -#: common/models.py:2019 +#: common/models.py:2084 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Bật chức năng kiểm kê theo mức độ ghi nhận kho và tính toán giá trị kho" -#: common/models.py:2025 +#: common/models.py:2090 msgid "Exclude External Locations" msgstr "Ngoại trừ vị trí bên ngoài" -#: common/models.py:2027 +#: common/models.py:2092 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Loại trừ hàng trong kho thuộc địa điểm bên ngoài ra khỏi tính toán kiểm kê" -#: common/models.py:2033 +#: common/models.py:2098 msgid "Automatic Stocktake Period" msgstr "Giai đoạn kiểm kê tự động" -#: common/models.py:2035 +#: common/models.py:2100 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Số ngày giữa ghi chép kiểm kê tự động (đặt không để tắt)" -#: common/models.py:2041 +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "Khoảng thời gian xóa báo cáo" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Báo cáo kiểm kê sẽ bị xóa sau số ngày xác định" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "Hiển thị tên đầy đủ của người dùng" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "Hiển thị tên đầy đủ thay vì tên đăng nhập" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2057 +#: common/models.py:2122 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "Khóa thiết lập (phải duy nhất - phân biệt hoa thường" -#: common/models.py:2112 +#: common/models.py:2177 msgid "Hide inactive parts" msgstr "Ẩn sản phẩm ngừng hoạt động" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Ẩn sản phẩm bị tắt trong kết quả trình bày tại trang chủ" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "Hiện sản phẩm đã đăng ký" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "Hiện sản phẩm đã đăng ký trên trang chủ" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "Hiện danh mục đã đăng ký" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "Hiện danh mục sản phẩm đã đăng ký trên trang chủ" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "Hiển thị nguyên liệu mới nhất" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "Hiển thị nguyên liệu mới nhất trên trang chủ" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "Hiện BOM chờ xác thực tại trang chủ" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "Hiện thay đổi kho hàng gần đây" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "Hiện hàng trong kho được thay đổi gần nhất trên trang chủ" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "Hiển thị hàng còn ít" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "Hiển thị hàng hóa còn ít tại trang chủ" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "Hiển thị hết hàng" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "Hiển thị hàng hóa đã bán hết tại trang chủ" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "Hiển thị hàng cần thiết" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "Hiện hàng trong kho cần thiết cho xây dựng tại trang chủ" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "Bán kho quá hạn" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "Hiển thị hàng hóa đã quá hạn trên trang chủ" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "Hiện kho hàng ế" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "Hiện hàng trong kho bị ế trên trang chủ" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "Hiện bản dựng chờ xử lý" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "Hiện bản dựng chờ xử lý trên trang chủ" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "Hiện bản dựng quá hạn" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "Hiện bản dựng quá hạn trên trang chủ" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "Hiện PO nổi bật" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "Hiện PO nổi bật trên trang chủ" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "Hiện PO quá hạn" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "Hiện đơn mua hàng quá hạn trên trang chủ" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "Hiện đơn hàng vận chuyển nổi bật" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "Hiện đơn hàng vận chuyển nổi bật tại trang chủ" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "Hiện đơn vận chuyển quá hạn" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "Hiện đơn vận chuyển quá hạn trên trang chủ" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "Hiện đơn vận chuyển chờ xử lý" -#: common/models.py:2217 +#: common/models.py:2282 msgid "Show pending SO shipments on the homepage" msgstr "Hiện đơn vận chuyển chờ xử lý trên trang chủ" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "Hiện tin tức" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "Hiện tin tức trên trang chủ" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "Hiển thị nhãn cùng dòng" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Hiển thị nhãn PDF trong trình duyệt, thay vì tải về dạng tệp tin" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "Máy in tem nhãn mặc định" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "Cấu hình máy in tem nhãn nào được chọn mặc định" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "Hiển thị báo cáo cùng hàng" -#: common/models.py:2246 +#: common/models.py:2311 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/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "Tìm sản phẩm" -#: common/models.py:2253 +#: common/models.py:2318 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/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "Tìm sản phẩm nhà cung cấp" -#: common/models.py:2259 +#: common/models.py:2324 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/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "Tìm sản phẩm nhà sản xuất" -#: common/models.py:2265 +#: common/models.py:2330 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/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "Ẩn sản phẩm ngừng hoạt động" -#: common/models.py:2271 +#: common/models.py:2336 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/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "Tìm kiếm danh mục" -#: common/models.py:2277 +#: common/models.py:2342 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/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "Tìm kiếm kho" -#: common/models.py:2283 +#: common/models.py:2348 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/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "Ẩn hàng hóa trong kho không có sẵn" -#: common/models.py:2290 +#: common/models.py:2355 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/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "Tìm kiếm vị trí" -#: common/models.py:2297 +#: common/models.py:2362 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/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "Tìm kiếm công ty" -#: common/models.py:2303 +#: common/models.py:2368 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/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "Tìm kiếm đặt hàng xây dựng" -#: common/models.py:2309 +#: common/models.py:2374 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/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "Tìm kiếm đơn đặt mua" -#: common/models.py:2315 +#: common/models.py:2380 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/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "Loại trừ đơn đặt mua không hoạt động" -#: common/models.py:2322 +#: common/models.py:2387 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/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "Tìm đơn đặt hàng người mua" -#: common/models.py:2329 +#: common/models.py:2394 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/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "Loại trừ đơn đặt hàng người mua không hoạt động" -#: common/models.py:2336 +#: common/models.py:2401 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/models.py:2342 +#: common/models.py:2407 msgid "Search Return Orders" msgstr "Tìm kiếm đơn hàng trả lại" -#: common/models.py:2343 +#: common/models.py:2408 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/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "Loại trừ đơn hàng trả lại không hoạt động" -#: common/models.py:2350 +#: common/models.py:2415 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/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "Kết quả xem trước tìm kiếm" -#: common/models.py:2358 +#: common/models.py:2423 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/models.py:2364 +#: common/models.py:2429 msgid "Regex Search" msgstr "Tìm kiếm biểu thức" -#: common/models.py:2365 +#: common/models.py:2430 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/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "Tìm phù hợp toàn bộ chữ" -#: common/models.py:2371 +#: common/models.py:2436 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/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "Hiện số lượng trong biểu mẫu" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "Hiển thị số lượng sản phẩm có sẵn trong một số biểu mẫu" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "Phím escape để đóng mẫu biểu" -#: common/models.py:2383 +#: common/models.py:2448 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/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "Cố định điều hướng" -#: common/models.py:2389 +#: common/models.py:2454 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/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "Định dạng ngày" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "Định dạng ưa chuộng khi hiển thị ngày" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Lập lịch sản phẩm" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "Hiển thị thông tin lịch sản phẩm" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Kiểm kê sản phẩm" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Hiển thị thông tin kiểm kê sản phẩm (nếu chức năng kiểm kê được bật)" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "Độ dài chuỗi trong bảng" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "Giới hạn độ dài tối đa cho chuỗi hiển thị trong kiểu xem bảng biểu" -#: common/models.py:2430 -msgid "Default part label template" -msgstr "Mẫu nhãn sản phẩm mặc định" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "Mẫu nhãn sản phẩm mặc định được chọn tự động" - -#: common/models.py:2436 -msgid "Default stock item template" -msgstr "Mẫu hàng hóa trong khi mặc định" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "Mẫu nhãn hàng hóa trong kho tự động được chọn" - -#: common/models.py:2444 -msgid "Default stock location label template" -msgstr "Mẫu nhãn vị trí kho mặc định" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "Mẫu nhãn vị trí kho được chọn tự động" - -#: common/models.py:2452 -msgid "Default build line label template" -msgstr "" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "Nhận báo cáo lỗi" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "Nhận thông báo khi có lỗi hệ thống" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "Người dùng" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "Số lượng giá phá vỡ" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "Giá" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "Đơn vị giá theo số lượng cụ thể" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "Đầu mối" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "Đầu mối tại điểm webhook được nhận" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "Tên của webhook này" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "Hoạt động" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "Webhook có hoạt động không" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "Chữ ký số" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "Chữ ký số để truy cập" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "Bí mật" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "Mã bí mật dùng chung cho HMAC" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "Mã Tin nhắn" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "Định danh duy nhất cho tin nhắn này" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "Máy chủ" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "Mãy chủ từ tin nhắn này đã được nhận" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "Đầu mục" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "Đầu mục tin nhắn" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "Thân" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "Thân tin nhắn này" -#: common/models.py:2799 +#: common/models.py:2835 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:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "Làm việc vào" -#: common/models.py:2805 +#: common/models.py:2841 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:2931 +#: common/models.py:2967 msgid "Id" msgstr "Mã" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Tiêu đề" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "Tiêu đề" msgid "Link" msgstr "Liên kết" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "Đã công bố" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Tác giả" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "Tóm tắt" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "Đọc" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "Tin này đã được đọc?" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "Tin này đã được đọc?" msgid "Image" msgstr "Hình ảnh" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "Tệp ảnh" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 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:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "Tên đơn vị" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Biểu tượng" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "Biểu tượng đơn vị tùy chọn" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Định nghĩa" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "Định nghĩa đơn vị" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Đính kèm" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "Tập tin bị thiếu" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "Thiếu liên kết bên ngoài" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "Chọn file đính kèm" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Bình luận" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,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:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "Mục đã nhận" @@ -3646,75 +3796,75 @@ msgstr "Hàng đã nhận theo đơn hàng trả lại" msgid "Error raised by plugin" msgstr "Lỗi được thông báo bởi phần mở rộng" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "Đang chạy" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "Công việc chờ xử lý" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "Tác vụ theo lịch" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "Tác vụ thất bại" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "ID tác vụ" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "ID tác vụ duy nhất" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "Khoá" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "Thời gian khóa" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "Tên công việc" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "Chức năng" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "Tên chức năng" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "Đối số" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "Đối số công việc" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "Đối số từ khóa" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "Đối số từ khóa công việc" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "Tên tập tin" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "Hàng hóa đã được nhập vào" msgid "Previous Step" msgstr "Bước trước" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "Doanh nghiêp" @@ -3843,8 +3993,9 @@ msgstr "Số điện thoại liên hệ" msgid "Contact email address" msgstr "Địa chỉ email liên hệ" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,24 +4014,24 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" -msgstr "là khách hàng" +msgid "Is customer" +msgstr "" #: company/models.py:169 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:174 -msgid "is supplier" -msgstr "là nhà cung cấp" +msgid "Is supplier" +msgstr "" #: company/models.py:175 msgid "Do you purchase items from this company?" msgstr "Bạn có mua hàng từ công ty này?" #: company/models.py:180 -msgid "is manufacturer" -msgstr "là nhà sản xuất" +msgid "Is manufacturer" +msgstr "" #: company/models.py:181 msgid "Does this company manufacture parts?" @@ -3890,270 +4041,281 @@ msgstr "Công ty này có sản xuất sản phẩm?" 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:366 +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "Địa chỉ" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "Địa chỉ" + +#: company/models.py:372 msgid "Select company" msgstr "Chọn doanh nghiệp" -#: company/models.py:371 +#: company/models.py:377 msgid "Address title" msgstr "Tiêu đề địa chỉ" -#: company/models.py:372 +#: company/models.py:378 msgid "Title describing the address entry" msgstr "Tiêu đề mô tả mục địa chỉ" -#: company/models.py:378 +#: company/models.py:384 msgid "Primary address" msgstr "Địa chỉ chính" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "Đặt làm địa chỉ chính" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "Dòng 1" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "Địa chỉ dòng 1" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "Dòng 2" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "Địa chỉ dòng 2" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "Mã bưu chính" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "Thành phố/Vùng" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "Mã bưu chính thành phố/vùng" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "Bang/Tỉnh" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "Bang hay tỉnh" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "Quốc gia" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "Địa chỉ quốc gia" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "Ghi chú vận chuyển" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "Ghi chú dành cho chuyển phát nhanh" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "Ghi chú nội bọ chuyển phát nhanh" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "Ghi chú nội bộ sử dụng cho chuyển phát nhanh" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "Liên kết thông tin địa chỉ (bên ngoài)" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "Sản phẩm nhà sản xuất" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "Sản phẩm cơ bản" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "Chọn sản phẩm" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "Nhà sản xuất" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "Chọn nhà sản xuất" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "Mã số nhà sản xuất" - -#: company/models.py:501 +#: company/models.py:507 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:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "Mô tả sản phẩm của nhà sản xuất" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "Tên tham số" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "Giá trị" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "Giá trị tham số" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "Đơn vị" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "Đơn vị tham số" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "Sản phẩm nhà cung cấp" -#: company/models.py:700 +#: company/models.py:707 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:707 +#: company/models.py:714 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:721 +#: company/models.py:728 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:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "Nhà cung cấp" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "Chọn nhà cung cấp" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "Đơn vị quản lý kho nhà cung cấp" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "Chọn sản phẩm của nhà sản xuất" -#: company/models.py:800 +#: company/models.py:807 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:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "Mô tả sản phẩm nhà cung cấp" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "Ghi chú" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "chi phí cơ sở" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "Thu phí tối thiểu (vd: phí kho bãi)" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "Đóng gói" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "Đóng gói sản phẩm" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "Đóng gói sản phẩm" msgid "Pack Quantity" msgstr "Số lượng gói" -#: company/models.py:841 +#: company/models.py:848 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:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "nhiều" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "Đặt hàng nhiều" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "Số lượng có sẵn từ nhà cung cấp" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "Sẵn hàng đã được cập nhật" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "Ngày cập nhật cuối thông tin tồn kho" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 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:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "Còn hàng" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "Không hoạt động" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "Xóa ảnh" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "Khách hàng" @@ -4278,13 +4448,6 @@ msgstr "Khách hàng" msgid "Uses default currency" msgstr "Dùng tiền mặc định" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "Địa chỉ" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "Điện thoại" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "Xóa sản phẩm của nhà sản xuất" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "Sản phẩm nội bộ" @@ -4474,7 +4638,7 @@ msgstr "Chưa có thông tin nhà sản xuất" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "Tham số mới" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "Thêm thông số" @@ -4519,10 +4683,6 @@ msgstr "Hàng trong kho đã được phân bổ" msgid "Contacts" msgstr "Danh bạ" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "Địa chỉ" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "Xóa sản phẩm nhà cung cấp" msgid "No supplier information available" msgstr "Chưa có thông tin nhà cung cấp" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "Cập nhật độ sẵn sàng sản phẩm" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "Doanh nghiệp mới" msgid "Placed" msgstr "Đã đặt" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "Dữ liệu" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "Hợp lệ" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "Không rõ" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "Tổng tiền" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "Trạng thái đặt hàng" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "Không tìm thấy đơn đặt mua phù hợp" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "Đặt hàng" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "Đơn hàng" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "Đơn hàng trả lại" msgid "Total price for this order" msgstr "Tổng tiền cho đơn hàng hàng" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "Tiền tệ đơn đặt hàng" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 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)" @@ -4846,7 +5158,7 @@ msgstr "Mô tả đơn đặt (tùy chọn)" msgid "Select project code for this order" msgstr "Mã dự án đã chọn cho đơn đặt hàng này" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "Liên kết đến trang bên ngoài" @@ -4895,15 +5207,15 @@ msgstr "Mã tham chiếu đơn đặt nhà cung cấp" msgid "received by" msgstr "nhận bởi" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "Ngày phát hành" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "Ngày đặt hàng đã phát hành" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "Ngày đặt hàng đã được hoàn thiện" @@ -4919,15 +5231,15 @@ msgstr "Số lượng phải là số dương" 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:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "Tham chiếu khách hàng " -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "Mã tham chiếu đơn đặt của khách hàng" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "Ngữ cảnh bổ sung" msgid "Unit price" msgstr "Đơn giá" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 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:1387 +#: order/models.py:1392 msgid "deleted" msgstr "đã bị xóa" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "Sản phẩm nhà cung cấp" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "Sản phẩm nhà cung cấp" msgid "Received" msgstr "Đã nhận" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "Số mục đã nhận" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "Giá mua" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "Giá đơn vị mua" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "Có phải người mua hàng muốn mặt hàng này được tích trữ?" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "Không thể gán sản phẩm ảo vào trong đơn đặt bán hàng" -#: order/models.py:1543 +#: order/models.py:1558 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:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "Giá bán" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "Giá bán đơn vị" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "Đã chuyển" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "Số lượng đã vận chuyển" -#: order/models.py:1672 +#: order/models.py:1667 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "Ngày vận chuyển" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "Ngày giao hàng" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "Ngày giao hàng của vận chuyển" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "Kiểm tra bởi" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "Người dùng đã kiểm tra vận chuyển này" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "Vận chuyển" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "Mã vận chuyển" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "Số theo dõi" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "Thông tin theo dõi vận chuyển" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "Mã hóa đơn" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "Số tham chiếu liên kết với hóa đơn" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "Vận đơn đã được gửi đi" -#: order/models.py:1736 +#: order/models.py:1752 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:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "Hàng trong kho chưa được giao" -#: order/models.py:1863 +#: order/models.py:1889 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:1866 +#: order/models.py:1892 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:1869 +#: order/models.py:1895 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:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 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:1891 +#: order/models.py:1917 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:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 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:1900 +#: order/models.py:1926 msgid "Line" msgstr "Dòng" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "Tham chiếu vận đơn của đơn hàng bán" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "Hàng hóa" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "Chọn hàng trong kho để phân bổ" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "Nhập số lượng phân kho" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "Tham chiếu đơn hàng trả lại" -#: order/models.py:2033 +#: order/models.py:2059 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:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "Trạng thái đơn hàng trả lại" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "Chỉ hàng hóa thêo sêri mới có thể được gán vào đơn hàng trả lại" -#: order/models.py:2240 +#: order/models.py:2267 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:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "Ngày nhận được" -#: order/models.py:2247 +#: order/models.py:2274 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:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "Kết quả" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "Kết quả cho hàng hóa dòng này" -#: order/models.py:2266 +#: order/models.py:2293 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/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "Chi phí gắn với hàng trả lại hoặc sửa chữa cho dòng hà msgid "Line Items" msgstr "Mục dòng" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "Đơn đặt không thể bị hủy" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 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:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 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:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "Đơn đặt là không được mở" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "Tiền tệ giá mua" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "Mã sản phẩm nội bộ" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "Sản phẩm nhà cung cấp phải được chỉ định" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "Đơn đặt mua phải được chỉ định" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "Nhà cung cấp phải phù hợp với đơn đặt mua" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "Đơn đặt mua phải phù hợp với nhà cung cấp" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "Mục dòng" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "Mục dòng không phù hợp với đơn đặt mua" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "Chọn vị trí đích cho hàng hóa đã nhận" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "Nhập mã lô cho hàng trong kho đang đến" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "Nhập số sê ri cho hàng trong kho đang đến" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "Mã vạch" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "Mã vạch đã quét" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "Mã vạch đã được dùng" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "Cần điền số nguyên cho sản phẩm có thể theo dõi" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "Dòng hàng hóa phải được cung cấp" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "Vị trí đích phải được chỉ ra" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "Giá trị mã vạch đã cung cấp phải duy nhất" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "Tiền tệ giá bán" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "Chưa cung cấp thông tin vận chuyển" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 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:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "Số lượng phải là số dương" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "Nhập số sê ri để phân bổ" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "Vận đơn đã được chuyển đi" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 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:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "Không tìm thấy số sê ri sau đây" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "Những số sê ri sau đây đã được phân bổ" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "Dòng riêng biệt đơn hàng trả lại" -#: order/serializers.py:1633 +#: order/serializers.py:1691 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:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "Line item đã nhận được" -#: order/serializers.py:1665 +#: order/serializers.py:1723 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:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "Tiền tệ giá đồng hạng" @@ -5695,7 +6047,7 @@ msgstr "Mã khách hàng" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "Cập nhật {part} giá đơn vị đến {price}" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "Cập nhật {part} giá đơn vị đến {price} và số lượng đến {qty}" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "ID sản phẩm" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "Tên sản phẩm" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "Mô tả sản phẩm" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "Phiên bản" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "Từ khóa" @@ -5831,7 +6178,8 @@ msgstr "Ảnh sản phẩm" msgid "Category ID" msgstr "ID danh mục" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "Tên danh mục" @@ -5843,11 +6191,11 @@ msgstr "ID vị trí mặc định" msgid "Default Supplier ID" msgstr "ID nhà cung ứng mặc định" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "Biến thể của" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "Kho tối thiểu" @@ -5855,18 +6203,19 @@ msgstr "Kho tối thiểu" msgid "Used In" msgstr "Sử dụng trong" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "Đang dựng" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "Chi phí tối thiểu" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "Chi phí tối đa" @@ -5883,14 +6232,14 @@ msgstr "Tên cha" msgid "Category Path" msgstr "Đưỡng dẫn danh mục" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "Nguyên liệu" @@ -5907,125 +6256,117 @@ msgstr "ID hàng hóa BOM" msgid "Parent IPN" msgstr "IPN cha" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "IPN sản phẩm" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "Giá thấp nhất" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "Giá cao nhất" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "Đơn đặt mua vào" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "Đơn hàng bán ra" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "Kho sản xuất bởi Đơn đặt bản dựng" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "Kho được yêu cầu cho đơn đặt bản dựng" -#: part/api.py:881 -msgid "Valid" -msgstr "Hợp lệ" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "Xác minh toàn bộ hóa đơn vật liệu" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "Tùy chọn này phải được chọn" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "Danh mục" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "Điểm bán mặc định" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "Tổng số lượng" @@ -6034,7 +6375,7 @@ msgstr "Tổng số lượng" msgid "Input quantity for price calculation" msgstr "Số lượng đầu ra cho tính toán giá bán" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Danh mục sản phẩm" @@ -6049,7 +6390,7 @@ msgstr "Danh mục sản phẩm" 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:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "Từ khóa mặc định" 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:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "Biểu tượng" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "Biểu tượng (tùy chọn)" @@ -6081,1002 +6422,1035 @@ msgstr "Biểu tượng (tùy chọn)" 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:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "Lựa chọn sai cho sản phẩm cha" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, 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:595 +#: part/models.py:599 #, 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:658 +#: part/models.py:662 #, 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:736 +#: part/models.py:740 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:837 +#: part/models.py:841 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:847 +#: part/models.py:851 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:862 +#: part/models.py:866 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:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "Tên sản phẩm" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "Là Mẫu" -#: part/models.py:897 +#: part/models.py:901 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:907 +#: part/models.py:911 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:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "Mô tả (không bắt buộc)" -#: part/models.py:923 +#: part/models.py:927 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:933 +#: part/models.py:937 msgid "Part category" msgstr "Danh mục sản phẩm" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "Mã sản phẩm nội bộ" - -#: part/models.py:948 +#: part/models.py:952 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:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "Hàng hóa này sẽ được cất vào đâu?" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "Nhà cung ứng mặc định" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "Nhà cung ứng sản phẩm mặc định" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "Hết hạn mặc định" -#: part/models.py:1028 +#: part/models.py:1032 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:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "Cấp độ kho tối thiểu được phép" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "Đơn vị đo cho sản phẩm này" -#: part/models.py:1053 +#: part/models.py:1057 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:1059 +#: part/models.py:1063 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:1065 +#: part/models.py:1069 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:1071 +#: part/models.py:1075 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:1077 +#: part/models.py:1081 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:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "Sản phẩm này đang hoạt động?" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 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:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "Giá trị tổng kiểm BOM" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "Giá trị tổng kiểm BOM đã được lưu" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "BOM kiểm tra bởi" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "Ngày kiểm tra BOM" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "Tạo người dùng" -#: part/models.py:1133 +#: part/models.py:1143 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:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "Kiểm kê cuối cùng" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "Bán nhiều" -#: part/models.py:3002 +#: part/models.py:3012 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:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "Chi phí BOM tối thiểu" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "Chi phí thành phần sản phẩm tối thiểu" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "Chi phí BOM tối đa" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "Chi phí thành phần sản phẩm tối đa" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "Chi phí mua vào tối thiểu" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "Chi phí mua vào tối thiểu trong lịch sử" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "Chi phí mua tối đa" -#: part/models.py:3040 +#: part/models.py:3050 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:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "Giá nội bộ tối thiểu" -#: part/models.py:3047 +#: part/models.py:3057 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:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "Giá nội bộ tối đa" -#: part/models.py:3054 +#: part/models.py:3064 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:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "Giá nhà cung ứng tối thiểu" -#: part/models.py:3061 +#: part/models.py:3071 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:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "Giá nhà cung ứng tối đa" -#: part/models.py:3068 +#: part/models.py:3078 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:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "Giá trị biến thể tối thiểu" -#: part/models.py:3075 +#: part/models.py:3085 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:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "Chi phí biến thể tối đa" -#: part/models.py:3082 +#: part/models.py:3092 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:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "Ghi đề chi phí tối thiểu" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "Ghi đề chi phí tối đa" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "Chi phí tối thiểu tính toán tổng thể" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "Chi phí tối đa tính toán tổng thể" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "Giá bán thấp nhất" -#: part/models.py:3117 +#: part/models.py:3127 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:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "Giá bán cao nhất" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "Giá bán cao nhất dựa trên phá giá" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "Chi phí bán hàng tối thiểu" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "Giá bán hàng tối thiểu trong lịch sử" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "Giá bán hàng tối đa" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "Giá bán hàng tối đa trong lịch sử" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "Sản phẩm dành cho kiểm kê" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "Tổng số hàng" -#: part/models.py:3163 +#: part/models.py:3173 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:3171 +#: part/models.py:3181 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:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "Ngày" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "Kiểm kê đã thực hiện" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "Ghi chú bổ sung" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "Người dùng đã thực hiện đợt kiểm kê này" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "Chi phí kho tối thiểu" -#: part/models.py:3201 +#: part/models.py:3211 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:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "Chi phí kho tối đa" -#: part/models.py:3208 +#: part/models.py:3218 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:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "Báo cáo" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "Tệp báo cáo kiểm kê (được sinh nội bộ)" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "Bộ đếm sản phẩm" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "Số sản phẩm đã được bao quát bởi kiểm kê" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "Người dùng đã yêu cầu báo cáo kiểm kê này" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "Lựa chọn phải duy nhất" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "Chỉ có thể tạo mẫu kiểm thử cho sản phẩm có thể theo dõi" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "Tên kiểm thử" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "Nhập tên cho kiểm thử" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "Mô tả kiểm thử" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "Nhập mô tả cho kiểm thử này" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "Đã bật" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "Bắt buộc" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "Kiểm thử này bắt buộc phải đạt?" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "Giá trị bắt buộc" -#: part/models.py:3515 +#: part/models.py:3531 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:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "Yêu cầu đính kèm" -#: part/models.py:3522 +#: part/models.py:3538 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:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "Lựa chọn" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "Tham số hộp kiểm tra không thể có đơn vị" -#: part/models.py:3588 +#: part/models.py:3609 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:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "Tên tham số mẫu phải là duy nhất" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "Tên tham số" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "Đơn vị vật lý cho tham số này" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "Mô tả tham số" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "Ô lựa chọn" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "Tham số này có phải là hộp kiểm tra?" -#: part/models.py:3668 +#: part/models.py:3689 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:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "Lựa chọn sai cho giá trị tham số" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "Sản phẩm cha" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Mẫu tham số" -#: part/models.py:3801 -msgid "Data" -msgstr "Dữ liệu" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "Giá trị tham số" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Giá trị mặc định" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "Giá trị tham số mặc định" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "Tên hoặc mã sản phẩm" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "Giá trị mã sản phẩm duy nhất" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "Giá trị IPN sản phẩm" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "Cấp độ" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "Cấp độ BOM" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "Chọn sản phẩm cha" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "Sản phẩm phụ" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "Chọn sản phẩm được dùng trong BOM" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "Số lượng BOM cho mục BOM này" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "Mục BOM này là tùy chọn" -#: part/models.py:4071 +#: part/models.py:4156 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:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Dư thừa" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Số lượng bản dựng lãng phí ước tính (tuyệt đối hoặc phần trăm)" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "Tham chiếu mục BOM" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "Ghi chú mục BOM" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "Giá trị tổng kiểm" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "Giá trị tổng kiểm dòng BOM" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "Đã xác minh" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "Mục BOM này là hợp lệ" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "Nhận thừa hưởng" -#: part/models.py:4113 +#: part/models.py:4198 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:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "Cho phép biến thể" -#: part/models.py:4119 +#: part/models.py:4204 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:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 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:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "Sản phẩm phụ phải được chỉ định" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "Sảm phẩm thay thế mục BOM" -#: part/models.py:4375 +#: part/models.py:4460 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:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "Hàng hóa BOM cha" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "Sản phẩm thay thế" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "Sản phẩm 1" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "Sản phẩm 2" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "Chọn sản phẩm liên quan" -#: part/models.py:4440 +#: part/models.py:4525 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:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "Đã tồn tại mối quan hệ trùng lặp" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "Phụ mục" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 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:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "Chưa chọn sản phẩm" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "Chọn danh mục" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "Sản phẩm gốc" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "Chọn sản phẩm gốc để nhân bản" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "Sao chép ảnh" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "Sao chép hình ảnh từ sản phẩm gốc" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "Sao chép BOM" -#: part/serializers.py:451 +#: part/serializers.py:469 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:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "Sao chép thông số" -#: part/serializers.py:458 +#: part/serializers.py:476 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:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "Sao chép ghi chú" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "Sao chép ghi chú từ sản phẩm gốc" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "Số liệu tồn kho ban đầu" -#: part/serializers.py:485 +#: part/serializers.py:503 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:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "Vị trí kho ban đầu" -#: part/serializers.py:493 +#: part/serializers.py:511 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:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "Chọn nhà cung cấp (hoặc để trống để bỏ qua)" -#: part/serializers.py:526 +#: part/serializers.py:544 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:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "Mã số nhà sản xuất" -#: part/serializers.py:543 +#: part/serializers.py:561 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:552 +#: part/serializers.py:570 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:563 +#: part/serializers.py:581 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:570 +#: part/serializers.py:588 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:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "Nhân bản sản phẩm" -#: part/serializers.py:870 +#: part/serializers.py:898 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:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "Số liệu kho ban đầu" -#: part/serializers.py:877 +#: part/serializers.py:905 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:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "Thông tin nhà cung cấp" -#: part/serializers.py:884 +#: part/serializers.py:912 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:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "Sao chép thông số nhóm hàng" -#: part/serializers.py:893 +#: part/serializers.py:921 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:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "Ảnh hiện có" -#: part/serializers.py:899 +#: part/serializers.py:927 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:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "Tệp hình ảnh không tồn tại" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "Hạn chế báo cáo kiểm kê với sản phẩm riêng biệt và sản phẩm biến thể bất kỳ" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "Hạn chế báo cáo kiểm kê với danh mục sản phẩm riêng biệt và danh mục con bất kỳ" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "Hạn chế báo cáo kiểm kê với vị trí kho riêng biệt và vị trí con bất kỳ" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "Ngoại trừ kho bên ngoài" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "Loại trừ hàng trong kho của vị trí bên ngoài" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "Tạo báo cáo" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "Tạo tệp báo cáo chứa dữ liệu kiểm kê đã tính toán" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "Cập nhật sản phẩm" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "Cập nhật sản phẩm cụ thể với dữ liệu kiểm kê đã tính" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "Chức năng kiểm kê chưa được bật" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "Giá trị tính toán ghi đè cho giá tối thiểu" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "Tiền tế giá tối thiểu" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "Giá trị tính toán ghi đè cho giá tối đa" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "Tiền tế giá tối đa" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "Cập nhật" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "Cập nhật giá cho sản phẩm này" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, 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:1357 +#: part/serializers.py:1385 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:1360 +#: part/serializers.py:1388 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:1727 +#: part/serializers.py:1759 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:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "Xóa dữ liệu đã tồn tại" -#: part/serializers.py:1736 +#: part/serializers.py:1768 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:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "Bao gồm thừa hưởng" -#: part/serializers.py:1742 +#: part/serializers.py:1774 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:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "Bỏ qua dòng không hợp lệ" -#: part/serializers.py:1748 +#: part/serializers.py:1780 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:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "Sao chép sản phẩm thay thế" -#: part/serializers.py:1754 +#: part/serializers.py:1786 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" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "Dọn dẹp BOM đang tồn tại" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "Xóa mục BOM đang tồn tại trước khi tải lên" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "Chưa chỉ ra cột sản phẩm" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "Tìm thấy nhiều sản phẩm phù hợp" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "Không tìm thấy sản phẩm nào" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "Sản phẩm không được chỉ định như là một thành phần" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "Chưa cung cấp số lượng" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "Số lượng không hợp lệ" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "Buộc phải nhập ít nhất một mục BOM" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "Tổng số lượng" @@ -7394,7 +7768,7 @@ msgstr "Đăng ký nhận thông báo về sản phẩm này" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "In tem nhãn" @@ -7416,7 +7790,7 @@ msgstr "Đếm kho sản phẩm" msgid "Transfer part stock" msgstr "Chuyển kho sản phẩm" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "Chức năng sản phẩm" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "Cấp kho tối thiểu" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "Biến thể" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "Kiện hàng" @@ -7702,8 +8076,8 @@ msgstr "Cập nhập giá bán" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "Hết hàng" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "Kho không đủ hạn mức khả dụng" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "Số lượng cần phân bổ" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "In nhãn thất bại" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "Tổng cộng" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "Kết quả kiểm tra" msgid "Test" msgstr "Thử nghiệm" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "Kết quả" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "Không có kết quả" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "Mục đã cài đặt" @@ -8720,10 +9094,6 @@ msgstr "thẻ company_image yêu cầu một thực thể doanh nghiệp" msgid "Location ID" msgstr "ID địa điểm" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "Tên địa điểm" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "Tên nhà cung cấp" msgid "Customer ID" msgstr "ID Khách hàng" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "Đã cài đặt trong" @@ -8782,7 +9152,7 @@ msgstr "Cần xem xét" msgid "Delete on Deplete" msgstr "Xóa khi thiếu hụt" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "Địa điểm bên ngoài" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "Cây sản phẩm" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "Ngày hết hạn trước đó" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "Ngày hết hạn sau đó" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "Ế" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "Bắt buộc nhập số lượng" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "Phải cung cấp sản phẩm hợp lệ" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "Sản phẩm nhà cung cấp đã đưa không tồn tại" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "Sản phẩm nhà cung cấp có kích thước đóng gói được định nghĩa nhưng cờ use_pack_size chưa được thiết lập" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "Số sê-ri không thê được cung cấp cho sản phẩm không thể theo dõi" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "Loại vị trí kho hàng" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "Loại vị trí kho hàng" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "Biểu tượng mặc định cho vị trí không được đặt biểu tượng (tùy chọn)" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "Kho hàng" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "Vị trí kho hàng" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "Chủ sở hữu" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "Chọn chủ sở hữu" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "Không thể đưa trực tiếp hàng trong kho vào bên trong vị trí kho hàng có cấu trúc, nhưng có thể đặt vào kho con." -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "Bên ngoài" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "Đây là vị trí kho bên ngoài" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "Loại vị trí" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "Loại vị trí kho hàng của địa điểm này" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "Bạn không thể chuyển đổi vị trí kho hàng này thành cấu trúc vì đã có hàng hóa trong kho được đặt vào bên trong nó!" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "Không thể đặt hàng trong kho vào trong địa điểm kho có cấu trúc!" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "Không thể tạo hàng hóa trong kho cho sản phẩm ảo" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "Loại sản phẩm ('{self.supplier_part.part}') phải là {self.part}" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "Số lượng phải là 1 cho hàng hóa với số sê ri" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "Số sê ri không thể đặt được nếu số lượng lớn hơn 1" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "Hàng hóa không thể thuộc về chính nó" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "Hàng hóa phải có 1 tham chiếu bản dựng nếu is_building=True" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "Tham chiếu bản dựng không thể trỏ vào cùng một đối tượng sản phẩm" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "Hàng trong kho cha" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "Sản phẩm cơ bản" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "Chọn sản phẩm nhà cung cấp khớp với hàng hóa trong kho này" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "Hàng trong kho này được đặt ở đâu?" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "Đóng gói hàng hóa này được lưu trữ lại" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "Mục này đã được cài đặt trong mục khác?" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "Số sê ri cho mục này" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "Mã lô cho hàng trong kho này" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "Số lượng tồn kho" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "Bản dựng nguồn" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "Bản dựng cho hàng hóa này" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "Tiêu thụ bởi" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "Đơn đặt bản dựng đã dùng hàng hóa này" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "Đơn đặt mua nguồn" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "Đơn đặt mua cho hàng hóa này" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "Đơn hàng bán đích" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "Ngày hết hạn của hàng hóa này. Kho sẽ được nhắc tình trạng hết hạn sau ngày này" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "Xóa khi thiếu hụt" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "Xóa hàng trong kho này khi kho hàng bị thiếu hụt" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "Giá mua riêng lẻ tại thời điểm mua" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "Đã chuyển đổi sang sản phẩm" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "Chưa đặt sản phẩm thành có thể theo dõi" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "Số lượng phải là số nguyên" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "Số lượng không thể vượt quá số lượng trong kho đang có ({self.quantity})" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "Số sêri phải là một danh sách dãy số nguyên" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "Số lượng không khớp với số sêri" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "Số sêri đã tồn tại" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 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:1638 +#: stock/models.py:1639 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:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "Hàng trong kho chứa hàng hóa khác" -#: stock/models.py:1644 +#: stock/models.py:1645 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:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "Hàng trong kho hiện đang sản xuất" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "Không thể hợp nhất kho nối tiếp" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "Mặt hàng trùng lặp" -#: stock/models.py:1661 +#: stock/models.py:1662 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:1669 +#: stock/models.py:1670 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:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "Mã trạng thái kho phải phù hợp" -#: stock/models.py:1901 +#: stock/models.py:1936 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:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "Ghi chú đầu vào" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 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:2383 +#: stock/models.py:2428 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:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "Kết quả kiểm thử" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "Giá trị đầu ra kiểm thử" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "Đính kèm kết quả kiểm thử" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "Ghi chú kiểm thử" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "Số sêri quá lớn" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "Mục cha" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "Sử dụng kích thước đóng gói khi thêm: Số lượng được định nghĩa là số của gói" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "Đã hết hạn" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "Mục con" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "Giá mua của mặt hàng, theo đơn vị hoặc gói" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "Nhập số của mặt hàng cần tạo số nối tiếp" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format 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:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "Điền số sêri cho hàng hóa mới" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "Vị trí kho đích" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "Trường ghi chú tùy chọn" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "Không thể gán số sêri cho sản phẩm này" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "Chọn mặt hàng để lắp đặt" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "Số lượng để cài đặt" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "Nhập số lượng hàng hóa để cài đặt" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "Thêm ghi chú giao dịch (tùy chọn)" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "Số lượng cần cài đặt phải ít nhất là 1" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "Mặt hàng không khả dụng" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "Sản phẩm đã chọn không có trong hóa đơn vật liệu" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "Số lượng cần lắp đặt phải không vượt quá số lượng đang có" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "Vị trí đích cho hàng hóa bị gỡ bỏ" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "Chọn sản phẩm để chuyển đổi mặt hàng vào bên trong" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "Sản phẩm đã chọn không phải là tùy chọn hợp lệ để chuyển đổi" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "Không thể chuyển đổi hàng hóa với sản phẩm nhà cung cấp đã gán" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "Vị trí đích dành cho hàng hóa trả lại" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "Chọn mặt hàng để đổi trạng thái" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "Không có mặt hàng nào được chọn" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "Kho phụ" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "Sản phẩm phải có thể bán được" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "Hàng hóa được phân bổ đến một đơn hàng bán" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "Hàng hóa được phân bổ đến một đơn đặt bản dựng" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "Khách hàng được gán vào các mặt hàng" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "Công ty đã chọn không phải là khách hàng" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "Ghi chú phân bổ kho" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "Phải cung cấp danh sách mặt hàng" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "Ghi chú gộp kho" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "Cho phép nhiều nhà cung không khớp" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "Cho phép mặt hàng cùng sản phẩm nhà cung cấp khác phải được gộp" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "Cho phép trạng thái không khớp" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "Cho phép mặt hàng với mã trạng thái khác nhau để gộp lại" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "Cần cung cấp ít nhất hai mặt hàng" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "Giá trị khóa chính mặt hàng" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "Mã trạng thái mặt hàng" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "Ghi chú giao dịch kho" @@ -9648,10 +10061,6 @@ msgstr "Xóa mặt hàng" msgid "Build" msgstr "Dựng" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "Mục cha" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "Chưa đặt nhà sản xuất" @@ -9727,11 +10136,6 @@ msgstr "Mặt hàng không đạt toàn bộ yêu cầu thử nghiệm" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "Mặt hàng này hết hạn vào %(item.expiry_date)s" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "Đã hết hạn" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "Theo dõi tồn kho" msgid "Allocations" msgstr "Phân bổ" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "Mục con" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "Quyền truy cập bị từ chối" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "Xóa" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "Cài đặt tài khoản" msgid "Change Password" msgstr "Đổi mật khẩu" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "Tên người dùng" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "Tên" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "Họ" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "Địa chỉ email sau đã được liên kết với tài khoản của bạn:" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "Sản phẩm sau còn ít hàng trong kho yêu cầu" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "Số lượng bắt buộc" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "Nhấp chuột vào liên kết dưới đây để xem sản phẩm này" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "Số lượng tối thiểu" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "Gửi" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "Thêm" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "Lần cuối mã thông báo được sử dụng" msgid "Revoked" msgstr "Đã thu hồi" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "Quyền hạn đã đặt" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "Nhóm" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "Xem" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "Quyền để xem mục" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "Quyền để thêm mục" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "Đổi" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "Quyển để sửa mục" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "Quyền để xóa mục" diff --git a/src/backend/InvenTree/locale/zh/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/zh/LC_MESSAGES/django.po index 786fe8f7fa..3cdfbd30a8 100644 --- a/src/backend/InvenTree/locale/zh/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/zh/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 03:18+0000\n" -"PO-Revision-Date: 2024-06-26 06:04\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" +"PO-Revision-Date: 2024-07-08 14:56\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -56,21 +56,21 @@ msgstr "" msgid "Enter date" msgstr "" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -128,7 +128,7 @@ msgstr "" msgid "The provided email domain is not approved." msgstr "" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -348,8 +348,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -371,42 +371,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -417,25 +417,25 @@ msgstr "" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -444,10 +444,10 @@ msgstr "" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -460,53 +460,53 @@ msgstr "" msgid "Description" msgstr "" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 msgid "Markdown notes (optional)" msgstr "" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -516,85 +516,142 @@ msgstr "" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "" @@ -654,47 +711,48 @@ msgstr "" msgid "About InvenTree" msgstr "" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -703,7 +761,7 @@ msgstr "" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -720,31 +778,43 @@ msgstr "" msgid "Build Orders" msgstr "" -#: build/models.py:133 +#: build/models.py:127 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:134 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:141 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 msgid "Build order part cannot be changed" msgstr "" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -752,27 +822,28 @@ msgstr "" msgid "Reference" msgstr "" -#: build/models.py:223 +#: build/models.py:245 msgid "Brief description of the build (optional)" msgstr "" -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -783,8 +854,8 @@ msgstr "" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -797,8 +868,8 @@ msgstr "" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -816,107 +887,107 @@ msgstr "" msgid "Part" msgstr "" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -927,37 +998,38 @@ msgstr "" msgid "Responsible" msgstr "" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -967,65 +1039,66 @@ msgstr "" msgid "Project Code" msgstr "" -#: build/models.py:362 +#: build/models.py:384 msgid "Project code for this build order" msgstr "" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1369 +#: build/models.py:1391 msgid "Build object" msgstr "" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1035,7 +1108,7 @@ msgstr "" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1046,8 +1119,8 @@ msgstr "" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1067,38 +1140,38 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1384 +#: build/models.py:1406 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1554 +#: build/models.py:1576 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1114,70 +1187,76 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1193,54 +1272,54 @@ msgstr "" msgid "Location" msgstr "" -#: build/serializers.py:300 +#: build/serializers.py:304 msgid "Stock location for build output" msgstr "" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "" -#: build/serializers.py:330 +#: build/serializers.py:334 msgid "Serial numbers must be provided for trackable parts" msgstr "" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "" -#: build/serializers.py:441 +#: build/serializers.py:445 msgid "Stock location for scrapped outputs" msgstr "" -#: build/serializers.py:447 +#: build/serializers.py:451 msgid "Discard Allocations" msgstr "" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 msgid "Reason for scrapping build output(s)" msgstr "" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1252,193 +1331,241 @@ msgstr "" msgid "Status" msgstr "" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "" -#: build/serializers.py:611 +#: build/serializers.py:615 msgid "Consume Allocated Stock" msgstr "" -#: build/serializers.py:612 +#: build/serializers.py:616 msgid "Consume any stock which has already been allocated to this build" msgstr "" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "" -#: build/serializers.py:769 +#: build/serializers.py:773 msgid "Build Line" msgstr "" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "" -#: build/serializers.py:823 +#: build/serializers.py:827 msgid "Build Line Item" msgstr "" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1099 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "" +#: build/serializers.py:1224 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1225 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1226 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1227 part/serializers.py:862 +msgid "External Stock" +msgstr "" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1454,7 +1581,8 @@ msgstr "" msgid "Cancelled" msgstr "" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1587,11 +1715,12 @@ msgstr "" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1624,8 +1753,8 @@ msgid "Completed Outputs" msgstr "" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1675,7 +1804,7 @@ msgstr "" msgid "Stock can be taken from any available location." msgstr "" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "" @@ -1827,31 +1956,31 @@ msgstr "" msgid "Incomplete Outputs" msgstr "" -#: common/api.py:689 +#: common/api.py:690 msgid "Is Link" msgstr "" -#: common/api.py:697 +#: common/api.py:698 msgid "Is File" msgstr "" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 msgid "Invalid currency code" msgstr "" -#: common/currency.py:132 +#: common/currency.py:134 msgid "Duplicate currency code" msgstr "" -#: common/currency.py:137 +#: common/currency.py:139 msgid "No valid currency codes provided" msgstr "" -#: common/currency.py:154 +#: common/currency.py:156 msgid "No plugin" msgstr "" @@ -1905,1591 +2034,1604 @@ msgstr "" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 msgid "Project description" msgstr "" -#: common/models.py:148 +#: common/models.py:153 msgid "User or group responsible for this project" msgstr "" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "" -#: common/models.py:1222 +#: common/models.py:1227 msgid "Pending migrations" msgstr "" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 msgid "List of supported currency codes" msgstr "" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 msgid "Enable barcode scanner support in the web interface" msgstr "" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 -msgid "Part Revisions" -msgstr "" - -#: common/models.py:1396 -msgid "Enable revision field for Part" +#: common/models.py:1400 +msgid "Barcode Show Data" msgstr "" #: common/models.py:1401 -msgid "Allow Deletion from Assembly" +msgid "Display barcode data in browser as text" msgstr "" -#: common/models.py:1402 -msgid "Allow deletion of parts which are used in an assembly" +#: common/models.py:1406 +msgid "Part Revisions" msgstr "" #: common/models.py:1407 -msgid "IPN Regex" -msgstr "" - -#: common/models.py:1408 -msgid "Regular expression pattern for matching Part IPN" -msgstr "" - -#: common/models.py:1411 -msgid "Allow Duplicate IPN" +msgid "Enable revision field for Part" msgstr "" #: common/models.py:1412 -msgid "Allow multiple parts to share the same IPN" +msgid "Allow Deletion from Assembly" msgstr "" -#: common/models.py:1417 -msgid "Allow Editing IPN" +#: common/models.py:1413 +msgid "Allow deletion of parts which are used in an assembly" msgstr "" #: common/models.py:1418 -msgid "Allow changing the IPN value while editing a part" +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1419 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1422 +msgid "Allow Duplicate IPN" msgstr "" #: common/models.py:1423 -msgid "Copy Part BOM Data" +msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1424 -msgid "Copy BOM data by default when duplicating a part" +#: common/models.py:1428 +msgid "Allow Editing IPN" msgstr "" #: common/models.py:1429 -msgid "Copy Part Parameter Data" +msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1430 -msgid "Copy parameter data by default when duplicating a part" +#: common/models.py:1434 +msgid "Copy Part BOM Data" msgstr "" #: common/models.py:1435 -msgid "Copy Part Test Data" +msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1436 -msgid "Copy test data by default when duplicating a part" +#: common/models.py:1440 +msgid "Copy Part Parameter Data" msgstr "" #: common/models.py:1441 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1446 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1447 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 msgid "Enforce Parameter Units" msgstr "" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "" -#: common/models.py:1657 +#: common/models.py:1668 msgid "Log Report Errors" msgstr "" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 msgid "Show Installed Stock Items" msgstr "" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 msgid "Require Responsible Owner" msgstr "" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1796 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1801 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1802 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 msgid "Enable Return Orders" msgstr "" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 msgid "Return Order Reference Pattern" msgstr "" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 msgid "Edit Completed Return Orders" msgstr "" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 msgid "Mark Shipped Orders as Complete" msgstr "" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 msgid "Auto Complete Purchase Orders" msgstr "" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 -msgid "Enable event integration" +msgid "Restrict signup to certain domains (comma-separated, starting with @)" msgstr "" -#: common/models.py:2005 -msgid "Enable plugins to respond to internal events" -msgstr "" - -#: common/models.py:2011 -msgid "Enable project codes" +#: common/models.py:2010 +msgid "Group on signup" msgstr "" #: common/models.py:2012 -msgid "Enable project codes for tracking projects" +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." msgstr "" -#: common/models.py:2017 -msgid "Stocktake Functionality" +#: common/models.py:2018 +msgid "Enforce MFA" msgstr "" #: common/models.py:2019 -msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgid "Users must use multifactor security." msgstr "" -#: common/models.py:2025 -msgid "Exclude External Locations" +#: common/models.py:2024 +msgid "Check plugins on startup" msgstr "" -#: common/models.py:2027 -msgid "Exclude stock items in external locations from stocktake calculations" +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" msgstr "" -#: common/models.py:2033 -msgid "Automatic Stocktake Period" +#: common/models.py:2034 +msgid "Check for plugin updates" msgstr "" #: common/models.py:2035 -msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgid "Enable periodic checks for updates to installed plugins" msgstr "" #: common/models.py:2041 -msgid "Report Deletion Interval" +msgid "Enable URL integration" msgstr "" -#: common/models.py:2043 -msgid "Stocktake reports will be deleted after specified number of days" +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" msgstr "" -#: common/models.py:2050 -msgid "Display Users full names" +#: common/models.py:2048 +msgid "Enable navigation integration" msgstr "" -#: common/models.py:2051 -msgid "Display Users full names instead of usernames" +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" msgstr "" #: common/models.py:2056 -msgid "Enable Test Station Data" +msgid "Enable plugins to add apps" msgstr "" -#: common/models.py:2057 -msgid "Enable test station data collection for test results" +#: common/models.py:2062 +msgid "Enable schedule integration" msgstr "" -#: common/models.py:2069 common/models.py:2479 -msgid "Settings key (must be unique - case insensitive" +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" msgstr "" -#: common/models.py:2112 -msgid "Hide inactive parts" +#: common/models.py:2069 +msgid "Enable event integration" msgstr "" -#: common/models.py:2114 -msgid "Hide inactive parts in results displayed on the homepage" +#: common/models.py:2070 +msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2120 -msgid "Show subscribed parts" +#: common/models.py:2076 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2077 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2082 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2084 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2090 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2092 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2098 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2100 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2106 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2108 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2115 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2116 +msgid "Display Users full names instead of usernames" msgstr "" #: common/models.py:2121 -msgid "Show subscribed parts on the homepage" +msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2126 -msgid "Show subscribed categories" +#: common/models.py:2122 +msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2127 -msgid "Show subscribed part categories on the homepage" +#: common/models.py:2134 common/models.py:2514 +msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2132 -msgid "Show latest parts" +#: common/models.py:2177 +msgid "Hide inactive parts" msgstr "" -#: common/models.py:2133 -msgid "Show latest parts on the homepage" +#: common/models.py:2179 +msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2138 -msgid "Show invalid BOMs" -msgstr "" - -#: common/models.py:2139 -msgid "Show BOMs that await validation on the homepage" -msgstr "" - -#: common/models.py:2144 -msgid "Show recent stock changes" -msgstr "" - -#: common/models.py:2145 -msgid "Show recently changed stock items on the homepage" -msgstr "" - -#: common/models.py:2150 -msgid "Show low stock" -msgstr "" - -#: common/models.py:2151 -msgid "Show low stock items on the homepage" -msgstr "" - -#: common/models.py:2156 -msgid "Show depleted stock" -msgstr "" - -#: common/models.py:2157 -msgid "Show depleted stock items on the homepage" -msgstr "" - -#: common/models.py:2162 -msgid "Show needed stock" -msgstr "" - -#: common/models.py:2163 -msgid "Show stock items needed for builds on the homepage" -msgstr "" - -#: common/models.py:2168 -msgid "Show expired stock" -msgstr "" - -#: common/models.py:2169 -msgid "Show expired stock items on the homepage" -msgstr "" - -#: common/models.py:2174 -msgid "Show stale stock" -msgstr "" - -#: common/models.py:2175 -msgid "Show stale stock items on the homepage" -msgstr "" - -#: common/models.py:2180 -msgid "Show pending builds" -msgstr "" - -#: common/models.py:2181 -msgid "Show pending builds on the homepage" +#: common/models.py:2185 +msgid "Show subscribed parts" msgstr "" #: common/models.py:2186 -msgid "Show overdue builds" +msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2187 -msgid "Show overdue builds on the homepage" +#: common/models.py:2191 +msgid "Show subscribed categories" msgstr "" #: common/models.py:2192 -msgid "Show outstanding POs" +msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2193 -msgid "Show outstanding POs on the homepage" +#: common/models.py:2197 +msgid "Show latest parts" msgstr "" #: common/models.py:2198 -msgid "Show overdue POs" +msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2199 -msgid "Show overdue POs on the homepage" +#: common/models.py:2203 +msgid "Show invalid BOMs" msgstr "" #: common/models.py:2204 -msgid "Show outstanding SOs" +msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2205 -msgid "Show outstanding SOs on the homepage" +#: common/models.py:2209 +msgid "Show recent stock changes" msgstr "" #: common/models.py:2210 -msgid "Show overdue SOs" +msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2211 -msgid "Show overdue SOs on the homepage" +#: common/models.py:2215 +msgid "Show low stock" msgstr "" #: common/models.py:2216 -msgid "Show pending SO shipments" +msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2217 -msgid "Show pending SO shipments on the homepage" +#: common/models.py:2221 +msgid "Show depleted stock" msgstr "" #: common/models.py:2222 -msgid "Show News" +msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2223 -msgid "Show news on the homepage" +#: common/models.py:2227 +msgid "Show needed stock" msgstr "" #: common/models.py:2228 -msgid "Inline label display" +msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2230 -msgid "Display PDF labels in the browser, instead of downloading as a file" +#: common/models.py:2233 +msgid "Show expired stock" msgstr "" -#: common/models.py:2236 -msgid "Default label printer" +#: common/models.py:2234 +msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2238 -msgid "Configure which label printer should be selected by default" +#: common/models.py:2239 +msgid "Show stale stock" msgstr "" -#: common/models.py:2244 -msgid "Inline report display" +#: common/models.py:2240 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2245 +msgid "Show pending builds" msgstr "" #: common/models.py:2246 -msgid "Display PDF reports in the browser, instead of downloading as a file" +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2251 +msgid "Show overdue builds" msgstr "" #: common/models.py:2252 -msgid "Search Parts" +msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2253 -msgid "Display parts in search preview window" +#: common/models.py:2257 +msgid "Show outstanding POs" msgstr "" #: common/models.py:2258 -msgid "Search Supplier Parts" +msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2259 -msgid "Display supplier parts in search preview window" +#: common/models.py:2263 +msgid "Show overdue POs" msgstr "" #: common/models.py:2264 -msgid "Search Manufacturer Parts" +msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2265 -msgid "Display manufacturer parts in search preview window" +#: common/models.py:2269 +msgid "Show outstanding SOs" msgstr "" #: common/models.py:2270 -msgid "Hide Inactive Parts" +msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2271 -msgid "Excluded inactive parts from search preview window" +#: common/models.py:2275 +msgid "Show overdue SOs" msgstr "" #: common/models.py:2276 -msgid "Search Categories" +msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2277 -msgid "Display part categories in search preview window" +#: common/models.py:2281 +msgid "Show pending SO shipments" msgstr "" #: common/models.py:2282 -msgid "Search Stock" +msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2283 -msgid "Display stock items in search preview window" +#: common/models.py:2287 +msgid "Show News" msgstr "" #: common/models.py:2288 -msgid "Hide Unavailable Stock Items" +msgid "Show news on the homepage" msgstr "" -#: common/models.py:2290 -msgid "Exclude stock items which are not available from the search preview window" +#: common/models.py:2293 +msgid "Inline label display" msgstr "" -#: common/models.py:2296 -msgid "Search Locations" +#: common/models.py:2295 +msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2297 -msgid "Display stock locations in search preview window" -msgstr "" - -#: common/models.py:2302 -msgid "Search Companies" +#: common/models.py:2301 +msgid "Default label printer" msgstr "" #: common/models.py:2303 -msgid "Display companies in search preview window" -msgstr "" - -#: common/models.py:2308 -msgid "Search Build Orders" +msgid "Configure which label printer should be selected by default" msgstr "" #: common/models.py:2309 -msgid "Display build orders in search preview window" +msgid "Inline report display" msgstr "" -#: common/models.py:2314 -msgid "Search Purchase Orders" +#: common/models.py:2311 +msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2315 -msgid "Display purchase orders in search preview window" +#: common/models.py:2317 +msgid "Search Parts" msgstr "" -#: common/models.py:2320 -msgid "Exclude Inactive Purchase Orders" +#: common/models.py:2318 +msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2322 -msgid "Exclude inactive purchase orders from search preview window" +#: common/models.py:2323 +msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2328 -msgid "Search Sales Orders" +#: common/models.py:2324 +msgid "Display supplier parts in search preview window" msgstr "" #: common/models.py:2329 -msgid "Display sales orders in search preview window" +msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2334 -msgid "Exclude Inactive Sales Orders" +#: common/models.py:2330 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2335 +msgid "Hide Inactive Parts" msgstr "" #: common/models.py:2336 -msgid "Exclude inactive sales orders from search preview window" +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2341 +msgid "Search Categories" msgstr "" #: common/models.py:2342 -msgid "Search Return Orders" +msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2343 -msgid "Display return orders in search preview window" +#: common/models.py:2347 +msgid "Search Stock" msgstr "" #: common/models.py:2348 -msgid "Exclude Inactive Return Orders" +msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2350 -msgid "Exclude inactive return orders from search preview window" +#: common/models.py:2353 +msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2356 -msgid "Search Preview Results" +#: common/models.py:2355 +msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2358 -msgid "Number of results to show in each section of the search preview window" +#: common/models.py:2361 +msgid "Search Locations" msgstr "" -#: common/models.py:2364 -msgid "Regex Search" +#: common/models.py:2362 +msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2365 -msgid "Enable regular expressions in search queries" +#: common/models.py:2367 +msgid "Search Companies" msgstr "" -#: common/models.py:2370 -msgid "Whole Word Search" +#: common/models.py:2368 +msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2371 -msgid "Search queries return results for whole word matches" +#: common/models.py:2373 +msgid "Search Build Orders" msgstr "" -#: common/models.py:2376 -msgid "Show Quantity in Forms" +#: common/models.py:2374 +msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2377 -msgid "Display available part quantity in some forms" +#: common/models.py:2379 +msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2382 -msgid "Escape Key Closes Forms" +#: common/models.py:2380 +msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2383 -msgid "Use the escape key to close modal forms" +#: common/models.py:2385 +msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2388 -msgid "Fixed Navbar" +#: common/models.py:2387 +msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2389 -msgid "The navbar position is fixed to the top of the screen" +#: common/models.py:2393 +msgid "Search Sales Orders" msgstr "" #: common/models.py:2394 -msgid "Date Format" +msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2395 -msgid "Preferred format for displaying dates" +#: common/models.py:2399 +msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 -msgid "Part Scheduling" +#: common/models.py:2401 +msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2409 -msgid "Display part scheduling information" +#: common/models.py:2407 +msgid "Search Return Orders" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 -msgid "Part Stocktake" +#: common/models.py:2408 +msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2416 -msgid "Display part stocktake information (if stocktake functionality is enabled)" +#: common/models.py:2413 +msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2422 -msgid "Table String Length" +#: common/models.py:2415 +msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2424 -msgid "Maximum length limit for strings displayed in table views" +#: common/models.py:2421 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2423 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2429 +msgid "Regex Search" msgstr "" #: common/models.py:2430 -msgid "Default part label template" +msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2431 -msgid "The part label template to be automatically selected" +#: common/models.py:2435 +msgid "Whole Word Search" msgstr "" #: common/models.py:2436 -msgid "Default stock item template" +msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" +#: common/models.py:2441 +msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2444 -msgid "Default stock location label template" +#: common/models.py:2442 +msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" +#: common/models.py:2447 +msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2452 -msgid "Default build line label template" +#: common/models.py:2448 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2453 +msgid "Fixed Navbar" msgstr "" #: common/models.py:2454 -msgid "The build line label template to be automatically selected" +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2459 +msgid "Date Format" msgstr "" #: common/models.py:2460 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2473 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2474 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2479 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2481 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2487 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2489 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3498,28 +3640,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3529,86 +3671,94 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:2961 +#: common/models.py:2997 msgid "Image file" msgstr "" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 msgid "Target model type for this image" msgstr "" -#: common/models.py:2977 +#: common/models.py:3013 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3018 +#: common/models.py:3035 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3056 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3071 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3037 +#: common/models.py:3090 msgid "Unit name" msgstr "" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3185 +#: common/models.py:3237 msgid "Attachment comment" msgstr "" -#: common/models.py:3201 +#: common/models.py:3253 msgid "Upload date" msgstr "" -#: common/models.py:3202 +#: common/models.py:3254 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size" msgstr "" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3630,7 +3780,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3646,75 +3796,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock time" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:412 msgid "Task name" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function" msgstr "" -#: common/serializers.py:410 +#: common/serializers.py:414 msgid "Function name" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Arguments" msgstr "" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3781,29 +3931,29 @@ msgstr "" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 msgid "Part is Active" msgstr "" -#: company/api.py:148 +#: company/api.py:145 msgid "Manufacturer is Active" msgstr "" -#: company/api.py:281 +#: company/api.py:278 msgid "Supplier Part is Active" msgstr "" -#: company/api.py:285 +#: company/api.py:282 msgid "Internal Part is Active" msgstr "" -#: company/api.py:289 +#: company/api.py:286 msgid "Supplier is Active" msgstr "" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "" @@ -3843,8 +3993,9 @@ msgstr "" msgid "Contact email address" msgstr "" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -3863,7 +4014,7 @@ msgid "Is this company active?" msgstr "" #: company/models.py:168 -msgid "is customer" +msgid "Is customer" msgstr "" #: company/models.py:169 @@ -3871,7 +4022,7 @@ msgid "Do you sell items to this company?" msgstr "" #: company/models.py:174 -msgid "is supplier" +msgid "Is supplier" msgstr "" #: company/models.py:175 @@ -3879,7 +4030,7 @@ msgid "Do you purchase items from this company?" msgstr "" #: company/models.py:180 -msgid "is manufacturer" +msgid "Is manufacturer" msgstr "" #: company/models.py:181 @@ -3890,270 +4041,281 @@ msgstr "" msgid "Default currency used for this company" msgstr "" -#: company/models.py:366 -msgid "Select company" +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" msgstr "" -#: company/models.py:371 -msgid "Address title" +#: company/models.py:315 company/templates/company/sidebar.html:35 +msgid "Addresses" msgstr "" #: company/models.py:372 -msgid "Title describing the address entry" +msgid "Select company" +msgstr "" + +#: company/models.py:377 +msgid "Address title" msgstr "" #: company/models.py:378 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:384 msgid "Primary address" msgstr "" -#: company/models.py:379 +#: company/models.py:385 msgid "Set as primary address" msgstr "" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 msgid "Address line 1" msgstr "" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 msgid "Address line 2" msgstr "" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 msgid "Address country" msgstr "" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 msgid "Internal shipping notes" msgstr "" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 msgid "Link to address information (external)" msgstr "" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "" -#: company/models.py:581 +#: company/models.py:569 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:588 msgid "Parameter name" msgstr "" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 msgid "Pack units must be greater than zero" msgstr "" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 msgid "Is this supplier part active?" msgstr "" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4162,35 +4324,43 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4202,7 +4372,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4261,16 +4431,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "" @@ -4278,13 +4448,6 @@ msgstr "" msgid "Uses default currency" msgstr "" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "" @@ -4464,7 +4627,8 @@ msgid "Delete manufacturer part" msgstr "" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "" @@ -4474,7 +4638,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4495,7 +4659,7 @@ msgid "New Parameter" msgstr "" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "" @@ -4519,10 +4683,6 @@ msgstr "" msgid "Contacts" msgstr "" -#: company/templates/company/sidebar.html:35 -msgid "Addresses" -msgstr "" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4564,9 +4724,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4615,15 +4775,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4658,48 +4818,204 @@ msgstr "" msgid "Placed" msgstr "" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +msgid "Import status" +msgstr "" + +#: importer/models.py:91 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:201 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +msgid "Import Session" +msgstr "" + +#: importer/models.py:385 +msgid "Field" +msgstr "" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 msgid "Number of copies to print for each label" msgstr "" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 msgid "Connected" msgstr "" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 msgid "Printing" msgstr "" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 msgid "Disconnected" msgstr "" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 msgid "Label Printer" msgstr "" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 msgid "Directly print labels for various items." msgstr "" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 msgid "Printer Location" msgstr "" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -4739,10 +5055,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 msgid "Machine status" msgstr "" @@ -4768,44 +5080,44 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 msgid "Order Complete" msgstr "" -#: order/api.py:462 +#: order/api.py:444 msgid "Order Pending" msgstr "" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -4813,8 +5125,8 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -4826,11 +5138,11 @@ msgstr "" msgid "Total price for this order" msgstr "" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 msgid "Order Currency" msgstr "" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -4846,7 +5158,7 @@ msgstr "" msgid "Select project code for this order" msgstr "" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -4895,15 +5207,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -4919,15 +5231,15 @@ msgstr "" msgid "Company to which the items are being sold" msgstr "" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -4989,20 +5301,24 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5011,196 +5327,224 @@ msgstr "" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1532 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 -msgid "Date of shipment" -msgstr "" - -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 -msgid "Delivery Date" -msgstr "" - -#: order/models.py:1679 -msgid "Date of delivery of shipment" -msgstr "" - -#: order/models.py:1687 -msgid "Checked By" +#: order/models.py:1667 +msgid "Sales Order Shipment" msgstr "" #: order/models.py:1688 -msgid "User who checked this shipment" +msgid "Date of shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 -msgid "Shipment" +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" msgstr "" -#: order/models.py:1696 -msgid "Shipment number" +#: order/models.py:1695 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1703 +msgid "Checked By" msgstr "" #: order/models.py:1704 -msgid "Tracking Number" +msgid "User who checked this shipment" msgstr "" -#: order/models.py:1705 -msgid "Shipment tracking information" +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 +msgid "Shipment" msgstr "" #: order/models.py:1712 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1720 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1721 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1857 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 msgid "Return Order reference" msgstr "" -#: order/models.py:2033 +#: order/models.py:2059 msgid "Company from which items are being returned" msgstr "" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 msgid "Select item to return from customer" msgstr "" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5209,163 +5553,171 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 msgid "Completed Lines" msgstr "" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 msgid "Auto Pricing" msgstr "" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 msgid "Merge Items" msgstr "" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:530 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "" -#: order/serializers.py:601 +#: order/serializers.py:650 msgid "Scanned barcode" msgstr "" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 msgid "Line item does not match return order" msgstr "" -#: order/serializers.py:1636 +#: order/serializers.py:1694 msgid "Line item has already been received" msgstr "" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 msgid "Line price currency" msgstr "" @@ -5695,7 +6047,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -5791,34 +6143,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "" @@ -5831,7 +6178,8 @@ msgstr "" msgid "Category ID" msgstr "" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -5843,11 +6191,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "" @@ -5855,18 +6203,19 @@ msgstr "" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -5883,14 +6232,14 @@ msgstr "" msgid "Category Path" msgstr "" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "" @@ -5907,125 +6256,117 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 msgid "Top Level" msgstr "" -#: part/api.py:143 +#: part/api.py:144 msgid "Filter by top-level categories" msgstr "" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 msgid "Parent" msgstr "" -#: part/api.py:181 +#: part/api.py:182 msgid "Filter by parent category" msgstr "" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 msgid "Exclude sub-categories under the specified category" msgstr "" -#: part/api.py:449 +#: part/api.py:442 msgid "Has Results" msgstr "" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6034,7 +6375,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6049,7 +6390,7 @@ msgstr "" msgid "Default location for parts in this category" msgstr "" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6068,12 +6409,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6081,1002 +6422,1035 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:489 msgid "Cannot delete this part as it is still active" msgstr "" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, python-brace-format msgid "IPN must match regex pattern {pattern}" msgstr "" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 msgid "Part description (optional)" msgstr "" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +msgid "Locked" +msgstr "" + +#: part/models.py:1091 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "" -#: part/models.py:1133 +#: part/models.py:1143 msgid "Owner responsible for this part" msgstr "" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3413 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 msgid "Choices must be unique" msgstr "" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 msgid "Parent Category" msgstr "" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 msgid "No parts selected" msgstr "" -#: part/serializers.py:402 +#: part/serializers.py:420 msgid "Select category" msgstr "" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 msgid "Copy Notes" msgstr "" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -msgid "External Stock" -msgstr "" - -#: part/serializers.py:836 +#: part/serializers.py:864 msgid "Unallocated Stock" msgstr "" -#: part/serializers.py:839 +#: part/serializers.py:867 msgid "Variant Stock" msgstr "" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 msgid "Existing Image" msgstr "" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 msgid "Image file does not exist" msgstr "" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 msgid "Exclude stock items in external locations" msgstr "" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 msgid "Minimum price currency" msgstr "" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 msgid "Maximum price currency" msgstr "" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7394,7 +7768,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "" @@ -7416,7 +7790,7 @@ msgstr "" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7488,7 +7862,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7581,8 +7955,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "" @@ -7702,8 +8076,8 @@ msgstr "" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -7847,7 +8221,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -7942,7 +8316,7 @@ msgstr "" msgid "Quantity to allocate" msgstr "" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -8638,8 +9012,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -8669,7 +9043,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -8690,7 +9064,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -8720,10 +9094,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -8757,7 +9127,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -8782,7 +9152,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -8800,7 +9170,7 @@ msgstr "" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 msgid "Parent Location" msgstr "" @@ -8808,578 +9178,621 @@ msgstr "" msgid "Filter by parent location" msgstr "" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 msgid "Part Tree" msgstr "" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 msgid "Stock Location type" msgstr "" -#: stock/models.py:61 +#: stock/models.py:62 msgid "Stock Location types" msgstr "" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 msgid "Location type" msgstr "" -#: stock/models.py:194 +#: stock/models.py:195 msgid "Stock location type of this location" msgstr "" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, python-brace-format msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 msgid "Consumed By" msgstr "" -#: stock/models.py:870 +#: stock/models.py:871 msgid "Build order which consumed this stock item" msgstr "" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1616 +#: stock/models.py:1617 msgid "Test template does not exist" msgstr "" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 msgid "Test station" msgstr "" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2453 +#: stock/models.py:2498 msgid "Finished" msgstr "" -#: stock/models.py:2454 +#: stock/models.py:2499 msgid "The timestamp of the test finish" msgstr "" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 msgid "Select build order" msgstr "" -#: stock/serializers.py:92 +#: stock/serializers.py:94 msgid "Select stock item to generate batch code for" msgstr "" -#: stock/serializers.py:101 +#: stock/serializers.py:103 msgid "Select location to generate batch code for" msgstr "" -#: stock/serializers.py:110 +#: stock/serializers.py:112 msgid "Select part to generate batch code for" msgstr "" -#: stock/serializers.py:119 +#: stock/serializers.py:121 msgid "Select purchase order" msgstr "" -#: stock/serializers.py:126 +#: stock/serializers.py:128 msgid "Enter quantity for batch code" msgstr "" -#: stock/serializers.py:149 +#: stock/serializers.py:151 msgid "Generated serial number" msgstr "" -#: stock/serializers.py:158 +#: stock/serializers.py:160 msgid "Select part to generate serial number for" msgstr "" -#: stock/serializers.py:166 +#: stock/serializers.py:168 msgid "Quantity of serial numbers to generate" msgstr "" -#: stock/serializers.py:228 +#: stock/serializers.py:233 msgid "Test template for this result" msgstr "" -#: stock/serializers.py:247 +#: stock/serializers.py:252 msgid "Template ID or test name must be provided" msgstr "" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +msgid "Allocated Quantity" +msgstr "" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:629 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 msgid "Enter the quantity of items to install" msgstr "" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "" -#: stock/serializers.py:719 +#: stock/serializers.py:777 msgid "Quantity to install must be at least 1" msgstr "" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 msgid "Quantity to install must not exceed available quantity" msgstr "" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 msgid "Select stock items to change status" msgstr "" -#: stock/serializers.py:925 +#: stock/serializers.py:983 msgid "No stock items selected" msgstr "" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 msgid "No Change" msgstr "" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 msgid "Stock item status code" msgstr "" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -9648,10 +10061,6 @@ msgstr "" msgid "Build" msgstr "" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -9727,11 +10136,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -9879,10 +10283,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -10357,8 +10757,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "" @@ -10398,12 +10798,12 @@ msgid "No category parameter templates found" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "" @@ -10516,18 +10916,6 @@ msgstr "" msgid "Change Password" msgstr "" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11048,7 +11436,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11062,15 +11450,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11082,27 +11470,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11114,11 +11502,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11203,7 +11591,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -11298,8 +11686,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -11417,7 +11805,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -11437,30 +11825,30 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 msgid "External stock" msgstr "" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -11492,7 +11880,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -11661,10 +12049,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -msgid "Allocated Quantity" -msgstr "" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "" @@ -11776,9 +12160,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -11809,59 +12193,59 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 msgid "build line" msgstr "" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 msgid "build lines" msgstr "" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 msgid "No build lines found" msgstr "" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 msgid "Unit Quantity" msgstr "" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 msgid "Consumable Item" msgstr "" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 msgid "Tracked item" msgstr "" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 msgid "Remove stock allocation" msgstr "" @@ -12008,7 +12392,7 @@ msgid "Delete Parameters" msgstr "" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "" @@ -12025,34 +12409,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "" @@ -12226,74 +12610,74 @@ msgstr "" msgid "No parts required for builds" msgstr "" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 msgid "Select Items" msgstr "" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 msgid "No items selected for printing" msgstr "" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -12303,7 +12687,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -12384,343 +12768,343 @@ msgstr "" msgid "Add Part Category" msgstr "" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 msgid "Create new category after this one" msgstr "" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 msgid "Part category created" msgstr "" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 msgid "part" msgstr "" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 msgid "parts" msgstr "" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 msgid "No subcategories found" msgstr "" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -13496,7 +13880,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "" @@ -13850,7 +14234,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14005,40 +14389,44 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 msgid "Has Units" msgstr "" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 msgid "Part has defined units" msgstr "" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 msgid "Has Choices" msgstr "" @@ -14110,10 +14498,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -14387,35 +14771,35 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "" 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 b851189f1a..6e7440eeae 100644 --- a/src/backend/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-06-26 03:18+0000\n" +"POT-Creation-Date: 2024-07-08 14:46+0000\n" "PO-Revision-Date: 2023-02-28 22:38\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" @@ -21,7 +21,7 @@ msgstr "" msgid "API endpoint not found" msgstr "未找到 API 端点" -#: InvenTree/api.py:520 +#: InvenTree/api.py:505 msgid "User does not have permission to view this model" msgstr "" @@ -62,21 +62,21 @@ msgstr "在管理面板中可以找到错误详细信息" msgid "Enter date" msgstr "输入日期" -#: InvenTree/fields.py:205 InvenTree/models.py:918 build/serializers.py:452 -#: build/serializers.py:530 build/templates/build/sidebar.html:21 -#: company/models.py:817 company/templates/company/sidebar.html:37 +#: InvenTree/fields.py:205 InvenTree/models.py:921 build/serializers.py:456 +#: build/serializers.py:534 build/templates/build/sidebar.html:21 +#: company/models.py:824 company/templates/company/sidebar.html:37 #: order/models.py:1296 order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3183 part/templates/part/part_sidebar.html:63 +#: part/models.py:3193 part/templates/part/part_sidebar.html:63 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:230 stock/models.py:2309 stock/models.py:2431 -#: stock/serializers.py:632 stock/serializers.py:790 stock/serializers.py:886 -#: stock/serializers.py:936 stock/serializers.py:1239 stock/serializers.py:1328 -#: stock/serializers.py:1493 stock/templates/stock/stock_sidebar.html:25 +#: stock/admin.py:230 stock/models.py:2349 stock/models.py:2476 +#: stock/serializers.py:690 stock/serializers.py:848 stock/serializers.py:944 +#: stock/serializers.py:994 stock/serializers.py:1305 stock/serializers.py:1394 +#: stock/serializers.py:1559 stock/templates/stock/stock_sidebar.html:25 #: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 #: templates/js/translated/company.js:1684 templates/js/translated/order.js:347 -#: templates/js/translated/part.js:1081 +#: templates/js/translated/part.js:1084 #: templates/js/translated/purchase_order.js:2200 #: templates/js/translated/return_order.js:775 #: templates/js/translated/sales_order.js:1103 @@ -134,7 +134,7 @@ msgstr "所提供的主要电子邮件地址无效。" msgid "The provided email domain is not approved." msgstr "提供的电子邮件域未被核准。" -#: InvenTree/forms.py:390 +#: InvenTree/forms.py:392 msgid "Registration is disabled." msgstr "" @@ -365,8 +365,8 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 company/models.py:136 -#: company/templates/company/company_base.html:138 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:415 +#: company/models.py:136 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 msgid "Email" @@ -390,42 +390,42 @@ msgstr "" msgid "JSON metadata field, for use by external plugins" msgstr "" -#: InvenTree/models.py:408 +#: InvenTree/models.py:411 msgid "Improperly formatted pattern" msgstr "格式不正确" -#: InvenTree/models.py:415 +#: InvenTree/models.py:418 msgid "Unknown format key specified" msgstr "指定了未知格式密钥" -#: InvenTree/models.py:421 +#: InvenTree/models.py:424 msgid "Missing required format key" msgstr "缺少必需的格式密钥" -#: InvenTree/models.py:432 +#: InvenTree/models.py:435 msgid "Reference field cannot be empty" msgstr "引用字段不能为空" -#: InvenTree/models.py:440 +#: InvenTree/models.py:443 msgid "Reference must match required pattern" msgstr "引用必须匹配所需的图案" -#: InvenTree/models.py:471 +#: InvenTree/models.py:474 msgid "Reference number is too large" msgstr "参考编号过大" -#: InvenTree/models.py:719 +#: InvenTree/models.py:722 msgid "Duplicate names cannot exist under the same parent" msgstr "" -#: InvenTree/models.py:736 +#: InvenTree/models.py:739 msgid "Invalid choice" msgstr "选择无效" -#: InvenTree/models.py:766 common/models.py:2623 common/models.py:3036 -#: common/serializers.py:408 company/models.py:580 machine/models.py:24 -#: part/models.py:891 part/models.py:3639 plugin/models.py:51 -#: report/models.py:150 stock/models.py:73 +#: InvenTree/models.py:769 common/models.py:2659 common/models.py:3089 +#: common/serializers.py:412 company/models.py:587 machine/models.py:24 +#: part/models.py:895 part/models.py:3660 plugin/models.py:51 +#: report/models.py:150 stock/models.py:74 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 #: templates/InvenTree/settings/plugin.html:83 @@ -436,25 +436,25 @@ msgstr "选择无效" #: templates/js/translated/company.js:724 #: templates/js/translated/company.js:913 #: templates/js/translated/company.js:1165 -#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1187 -#: templates/js/translated/part.js:1475 templates/js/translated/part.js:1611 -#: templates/js/translated/part.js:2749 templates/js/translated/stock.js:2716 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1190 +#: templates/js/translated/part.js:1478 templates/js/translated/part.js:1614 +#: templates/js/translated/part.js:2752 templates/js/translated/stock.js:2716 msgid "Name" msgstr "名称" -#: InvenTree/models.py:772 build/models.py:220 -#: build/templates/build/detail.html:24 common/models.py:138 -#: company/models.py:509 company/models.py:808 +#: InvenTree/models.py:775 build/models.py:242 +#: build/templates/build/detail.html:24 common/models.py:143 +#: company/models.py:515 company/models.py:815 #: company/templates/company/company_base.html:77 #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 -#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:914 -#: part/models.py:3654 part/templates/part/category.html:82 +#: order/models.py:1329 part/admin.py:305 part/admin.py:408 part/models.py:918 +#: part/models.py:3675 part/templates/part/category.html:82 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:156 #: report/models.py:510 report/models.py:536 #: report/templates/report/inventree_build_order_report.html:117 -#: stock/admin.py:54 stock/models.py:79 stock/templates/stock/location.html:125 +#: stock/admin.py:54 stock/models.py:80 stock/templates/stock/location.html:125 #: templates/InvenTree/settings/notifications.html:19 #: templates/InvenTree/settings/plugin_settings.html:27 #: templates/InvenTree/settings/settings_staff_js.html:170 @@ -463,10 +463,10 @@ msgstr "名称" #: templates/js/translated/build.js:2139 templates/js/translated/company.js:519 #: templates/js/translated/company.js:1330 #: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 -#: templates/js/translated/order.js:298 templates/js/translated/part.js:1239 -#: templates/js/translated/part.js:1484 templates/js/translated/part.js:1622 -#: templates/js/translated/part.js:1959 templates/js/translated/part.js:2355 -#: templates/js/translated/part.js:2785 templates/js/translated/part.js:2897 +#: templates/js/translated/order.js:298 templates/js/translated/part.js:1242 +#: templates/js/translated/part.js:1487 templates/js/translated/part.js:1625 +#: templates/js/translated/part.js:1962 templates/js/translated/part.js:2358 +#: templates/js/translated/part.js:2788 templates/js/translated/part.js:2900 #: templates/js/translated/plugin.js:80 #: templates/js/translated/purchase_order.js:1706 #: templates/js/translated/purchase_order.js:1849 @@ -479,55 +479,55 @@ msgstr "名称" msgid "Description" msgstr "描述信息" -#: InvenTree/models.py:773 stock/models.py:80 +#: InvenTree/models.py:776 stock/models.py:81 msgid "Description (optional)" msgstr "描述 (可选)" -#: InvenTree/models.py:788 templates/js/translated/part.js:2794 +#: InvenTree/models.py:791 templates/js/translated/part.js:2797 #: templates/js/translated/stock.js:2757 msgid "Path" msgstr "路径" -#: InvenTree/models.py:918 +#: InvenTree/models.py:921 #, fuzzy #| msgid "Add transaction note (optional)" msgid "Markdown notes (optional)" msgstr "添加交易备注 (可选)" -#: InvenTree/models.py:947 +#: InvenTree/models.py:950 msgid "Barcode Data" msgstr "条码数据" -#: InvenTree/models.py:948 +#: InvenTree/models.py:951 msgid "Third party barcode data" msgstr "第三方条形码数据" -#: InvenTree/models.py:954 +#: InvenTree/models.py:957 msgid "Barcode Hash" msgstr "条码哈希" -#: InvenTree/models.py:955 +#: InvenTree/models.py:958 msgid "Unique hash of barcode data" msgstr "条码数据的唯一哈希" -#: InvenTree/models.py:1008 +#: InvenTree/models.py:1011 msgid "Existing barcode found" msgstr "发现现有条码" -#: InvenTree/models.py:1051 +#: InvenTree/models.py:1054 msgid "Server Error" msgstr "服务器错误" -#: InvenTree/models.py:1052 +#: InvenTree/models.py:1055 msgid "An error has been logged by the server." msgstr "服务器记录了一个错误。" -#: InvenTree/serializers.py:63 part/models.py:4192 +#: InvenTree/serializers.py:63 part/models.py:4277 msgid "Must be a valid number" msgstr "必须是有效数字" #: InvenTree/serializers.py:100 company/models.py:186 -#: company/templates/company/company_base.html:112 part/models.py:3001 +#: company/templates/company/company_base.html:112 part/models.py:3011 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -537,89 +537,150 @@ msgstr "货币" msgid "Select currency from available options" msgstr "" +#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "用户名" + +#: InvenTree/serializers.py:409 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "名字" + +#: InvenTree/serializers.py:409 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "姓氏" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:415 +#, fuzzy +#| msgid "Email address confirmation" +msgid "Email address of the user" +msgstr "Email 地址确认" + +#: InvenTree/serializers.py:439 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:439 +msgid "Does this user have staff permissions" +msgstr "" + #: InvenTree/serializers.py:442 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:442 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:445 common/models.py:2664 company/models.py:163 +#: company/models.py:789 machine/models.py:39 part/admin.py:88 +#: part/models.py:1085 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:135 +#: templates/js/translated/table_filters.js:219 +#: templates/js/translated/table_filters.js:492 +#: templates/js/translated/table_filters.js:520 +#: templates/js/translated/table_filters.js:716 +#: templates/js/translated/table_filters.js:801 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:445 +#, fuzzy +#| msgid "Delete supplier part" +msgid "Is this user account active" +msgstr "删除供应商商品" + +#: InvenTree/serializers.py:463 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:454 +#: InvenTree/serializers.py:475 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:473 +#: InvenTree/serializers.py:494 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:475 +#: InvenTree/serializers.py:496 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:482 +#: InvenTree/serializers.py:503 #, fuzzy #| msgid "About InvenTree" msgid "Welcome to InvenTree" msgstr "关于 InventTree" -#: InvenTree/serializers.py:540 +#: InvenTree/serializers.py:561 msgid "Invalid value" msgstr "无效值" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:581 importer/models.py:60 msgid "Data File" msgstr "数据文件" -#: InvenTree/serializers.py:561 +#: InvenTree/serializers.py:582 msgid "Select data file for upload" msgstr "选择要上传的文件" -#: InvenTree/serializers.py:578 +#: InvenTree/serializers.py:599 msgid "Unsupported file type" msgstr "不支持的文件类型" -#: InvenTree/serializers.py:584 +#: InvenTree/serializers.py:605 msgid "File is too large" msgstr "文件过大" -#: InvenTree/serializers.py:605 +#: InvenTree/serializers.py:626 msgid "No columns found in file" msgstr "在文件中没有找到列" -#: InvenTree/serializers.py:608 +#: InvenTree/serializers.py:629 msgid "No data rows found in file" msgstr "在文件中没有找到数据行" -#: InvenTree/serializers.py:721 +#: InvenTree/serializers.py:742 msgid "No data rows provided" msgstr "没有提供数据行" -#: InvenTree/serializers.py:724 +#: InvenTree/serializers.py:745 msgid "No data columns supplied" msgstr "没有提供数据列" -#: InvenTree/serializers.py:791 +#: InvenTree/serializers.py:812 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "缺少必需的列:'{name}'" -#: InvenTree/serializers.py:800 +#: InvenTree/serializers.py:821 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "复制列: '{col}'" -#: InvenTree/serializers.py:840 +#: InvenTree/serializers.py:861 #, fuzzy #| msgid "Part name" msgid "Remote Image" msgstr "商品名称" -#: InvenTree/serializers.py:841 +#: InvenTree/serializers.py:862 msgid "URL of remote image file" msgstr "远程图像文件的 URL" -#: InvenTree/serializers.py:859 +#: InvenTree/serializers.py:880 msgid "Downloading images from remote URL is not enabled" msgstr "未启用从远程 URL下载图像" -#: InvenTree/status.py:66 part/serializers.py:1174 +#: InvenTree/status.py:66 part/serializers.py:1202 msgid "Background worker check failed" msgstr "后台工作人员检查失败" @@ -681,47 +742,48 @@ msgstr "系统信息" msgid "About InvenTree" msgstr "关于 InventTree" -#: build/api.py:255 +#: build/api.py:248 msgid "Build must be cancelled before it can be deleted" msgstr "在删除前必须取消生产" -#: build/api.py:299 part/models.py:4070 templates/js/translated/bom.js:997 -#: templates/js/translated/bom.js:1037 templates/js/translated/build.js:2520 +#: build/api.py:292 build/serializers.py:1190 part/models.py:4155 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2521 #: templates/js/translated/table_filters.js:190 #: templates/js/translated/table_filters.js:583 msgid "Consumable" msgstr "" -#: build/api.py:300 part/models.py:4064 part/templates/part/upload_bom.html:58 -#: templates/js/translated/bom.js:1001 templates/js/translated/bom.js:1028 -#: templates/js/translated/build.js:2529 +#: build/api.py:293 build/serializers.py:1191 part/models.py:4149 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2530 #: templates/js/translated/table_filters.js:186 #: templates/js/translated/table_filters.js:215 #: templates/js/translated/table_filters.js:587 msgid "Optional" msgstr "可选项" -#: build/api.py:301 templates/js/translated/table_filters.js:408 +#: build/api.py:294 templates/js/translated/table_filters.js:408 #: templates/js/translated/table_filters.js:579 msgid "Tracked" msgstr "" -#: build/api.py:303 part/admin.py:144 templates/js/translated/build.js:1744 -#: templates/js/translated/build.js:2629 +#: build/api.py:296 part/admin.py:144 templates/js/translated/build.js:1744 +#: templates/js/translated/build.js:2630 #: templates/js/translated/sales_order.js:1965 #: templates/js/translated/table_filters.js:571 msgid "Allocated" msgstr "" -#: build/api.py:311 company/models.py:872 company/serializers.py:359 +#: build/api.py:304 company/models.py:879 company/serializers.py:386 #: company/templates/company/supplier_part.html:114 #: templates/email/build_order_required_stock.html:19 #: templates/email/low_stock_notification.html:17 -#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2561 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2562 #: templates/js/translated/index.js:123 #: templates/js/translated/model_renderers.js:234 -#: templates/js/translated/part.js:693 templates/js/translated/part.js:695 -#: templates/js/translated/part.js:700 +#: templates/js/translated/part.js:692 templates/js/translated/part.js:694 +#: templates/js/translated/part.js:699 #: templates/js/translated/table_filters.js:340 #: templates/js/translated/table_filters.js:575 msgid "Available" @@ -730,7 +792,7 @@ msgstr "空闲" #: build/models.py:85 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 -#: stock/serializers.py:82 templates/email/build_order_completed.html:16 +#: stock/serializers.py:84 templates/email/build_order_completed.html:16 #: templates/email/overdue_build_order.html:15 #: templates/js/translated/build.js:972 templates/js/translated/stock.js:2892 msgid "Build Order" @@ -747,33 +809,51 @@ msgstr "生产订单" msgid "Build Orders" msgstr "生产订单" -#: build/models.py:133 +#: build/models.py:127 +#, fuzzy +#| msgid "Some stock items have been overallocated" +msgid "Assembly BOM has not been validated" +msgstr "一些库存项已被过度分配" + +#: build/models.py:134 +#, fuzzy +#| msgid "Print build order report" +msgid "Build order cannot be created for an inactive part" +msgstr "打印构建订单报告" + +#: build/models.py:141 +#, fuzzy +#| msgid "Build output cannot be specified for allocation of untracked parts" +msgid "Build order cannot be created for an unlocked part" +msgstr "对于未被追踪的部件,无法指定生产产出" + +#: build/models.py:155 msgid "Invalid choice for parent build" msgstr "上级生产选项无效" -#: build/models.py:144 order/models.py:240 +#: build/models.py:166 order/models.py:240 msgid "Responsible user or group must be specified" msgstr "" -#: build/models.py:150 +#: build/models.py:172 #, fuzzy #| msgid "Order cannot be cancelled" msgid "Build order part cannot be changed" msgstr "无法取消订单" -#: build/models.py:211 +#: build/models.py:233 msgid "Build Order Reference" msgstr "相关生产订单" -#: build/models.py:212 order/models.py:463 order/models.py:926 -#: order/models.py:1289 order/models.py:2020 part/admin.py:411 -#: part/models.py:4085 part/templates/part/upload_bom.html:54 +#: build/models.py:234 build/serializers.py:1189 order/models.py:463 +#: order/models.py:926 order/models.py:1289 order/models.py:2046 +#: part/admin.py:411 part/models.py:4170 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 #: report/templates/report/inventree_sales_order_report.html:28 #: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 -#: templates/js/translated/build.js:2512 templates/js/translated/order.js:291 +#: templates/js/translated/build.js:2513 templates/js/translated/order.js:291 #: templates/js/translated/pricing.js:386 #: templates/js/translated/purchase_order.js:2065 #: templates/js/translated/return_order.js:728 @@ -781,29 +861,30 @@ msgstr "相关生产订单" msgid "Reference" msgstr "引用" -#: build/models.py:223 +#: build/models.py:245 #, fuzzy #| msgid "Brief description of the build" msgid "Brief description of the build (optional)" msgstr "生产的简短描述." -#: build/models.py:231 build/templates/build/build_base.html:183 +#: build/models.py:253 build/templates/build/build_base.html:183 #: build/templates/build/detail.html:87 msgid "Parent Build" msgstr "上级生产" -#: build/models.py:232 +#: build/models.py:254 msgid "BuildOrder to which this build is allocated" msgstr "此次生产匹配的订单" -#: build/models.py:237 build/templates/build/build_base.html:97 -#: build/templates/build/detail.html:29 company/models.py:1026 order/api.py:805 -#: order/models.py:1414 order/models.py:1559 order/models.py:1560 -#: part/api.py:1494 part/api.py:1788 part/models.py:395 part/models.py:3012 -#: part/models.py:3156 part/models.py:3303 part/models.py:3324 -#: part/models.py:3346 part/models.py:3477 part/models.py:3787 -#: part/models.py:3943 part/models.py:4036 part/models.py:4395 -#: part/serializers.py:1120 part/serializers.py:1726 +#: build/models.py:259 build/serializers.py:1184 +#: build/templates/build/build_base.html:97 +#: build/templates/build/detail.html:29 company/models.py:1034 order/api.py:759 +#: order/models.py:1419 order/models.py:1574 order/models.py:1575 +#: part/api.py:1480 part/api.py:1776 part/models.py:396 part/models.py:3022 +#: part/models.py:3166 part/models.py:3314 part/models.py:3335 +#: part/models.py:3357 part/models.py:3493 part/models.py:3827 +#: part/models.py:3990 part/models.py:4121 part/models.py:4480 +#: part/serializers.py:1148 part/serializers.py:1758 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 #: part/templates/part/upload_bom.html:52 @@ -814,8 +895,8 @@ msgstr "此次生产匹配的订单" #: report/templates/report/inventree_return_order_report.html:24 #: report/templates/report/inventree_sales_order_report.html:27 #: report/templates/report/inventree_stock_location_report.html:102 -#: stock/serializers.py:109 stock/serializers.py:157 stock/serializers.py:423 -#: stock/serializers.py:820 templates/InvenTree/search.html:82 +#: stock/serializers.py:111 stock/serializers.py:159 stock/serializers.py:443 +#: stock/serializers.py:878 templates/InvenTree/search.html:82 #: templates/email/build_order_completed.html:17 #: templates/email/build_order_required_stock.html:17 #: templates/email/low_stock_notification.html:15 @@ -828,8 +909,8 @@ msgstr "此次生产匹配的订单" #: templates/js/translated/company.js:1116 #: templates/js/translated/company.js:1271 #: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 -#: templates/js/translated/part.js:1944 templates/js/translated/part.js:2016 -#: templates/js/translated/part.js:2324 templates/js/translated/pricing.js:369 +#: templates/js/translated/part.js:1947 templates/js/translated/part.js:2019 +#: templates/js/translated/part.js:2327 templates/js/translated/pricing.js:369 #: templates/js/translated/purchase_order.js:751 #: templates/js/translated/purchase_order.js:1304 #: templates/js/translated/purchase_order.js:1848 @@ -847,107 +928,107 @@ msgstr "此次生产匹配的订单" msgid "Part" msgstr "商品" -#: build/models.py:245 +#: build/models.py:267 msgid "Select part to build" msgstr "选择要生产的商品" -#: build/models.py:250 +#: build/models.py:272 msgid "Sales Order Reference" msgstr "相关销售订单" -#: build/models.py:254 +#: build/models.py:276 msgid "SalesOrder to which this build is allocated" msgstr "此次生产匹配的销售订单" -#: build/models.py:259 build/serializers.py:999 +#: build/models.py:281 build/serializers.py:1003 #: templates/js/translated/build.js:1731 #: templates/js/translated/sales_order.js:1221 msgid "Source Location" msgstr "来源地点" -#: build/models.py:263 +#: build/models.py:285 msgid "Select location to take stock from for this build (leave blank to take from any stock location)" msgstr "此次生产从哪个仓储位置获取库存(留空即可从任何仓储位置取出)" -#: build/models.py:268 +#: build/models.py:290 msgid "Destination Location" msgstr "目标地点" -#: build/models.py:272 +#: build/models.py:294 msgid "Select location where the completed items will be stored" msgstr "选择已完成项目仓储地点" -#: build/models.py:276 +#: build/models.py:298 msgid "Build Quantity" msgstr "生产数量" -#: build/models.py:279 +#: build/models.py:301 msgid "Number of stock items to build" msgstr "要生产的项目数量" -#: build/models.py:283 +#: build/models.py:305 msgid "Completed items" msgstr "已完成项目" -#: build/models.py:285 +#: build/models.py:307 msgid "Number of stock items which have been completed" msgstr "已完成的库存项目数量" -#: build/models.py:289 +#: build/models.py:311 msgid "Build Status" msgstr "生产状态" -#: build/models.py:293 +#: build/models.py:315 msgid "Build status code" msgstr "生产状态代码" -#: build/models.py:302 build/serializers.py:286 order/serializers.py:580 -#: stock/models.py:838 stock/serializers.py:74 stock/serializers.py:1458 +#: build/models.py:324 build/serializers.py:290 order/serializers.py:629 +#: stock/models.py:839 stock/serializers.py:76 stock/serializers.py:1524 #: templates/js/translated/purchase_order.js:1129 msgid "Batch Code" msgstr "批量代码" -#: build/models.py:306 build/serializers.py:287 +#: build/models.py:328 build/serializers.py:291 msgid "Batch code for this build output" msgstr "此生产产出的批量代码" -#: build/models.py:309 order/models.py:316 order/serializers.py:119 -#: part/models.py:1115 part/templates/part/part_base.html:310 +#: build/models.py:331 order/models.py:316 order/serializers.py:127 +#: part/models.py:1125 part/templates/part/part_base.html:310 #: templates/js/translated/return_order.js:338 #: templates/js/translated/sales_order.js:863 msgid "Creation Date" msgstr "创建日期" -#: build/models.py:313 +#: build/models.py:335 msgid "Target completion date" msgstr "预计完成日期" -#: build/models.py:314 +#: build/models.py:336 msgid "Target date for build completion. Build will be overdue after this date." msgstr "生产完成的目标日期。生产将在此日期之后逾期。" -#: build/models.py:317 order/models.py:521 order/models.py:2065 +#: build/models.py:339 order/models.py:521 order/models.py:2091 #: templates/js/translated/build.js:2247 msgid "Completion Date" msgstr "完成日期:" -#: build/models.py:323 +#: build/models.py:345 msgid "completed by" msgstr "完成人" -#: build/models.py:331 templates/js/translated/build.js:2207 +#: build/models.py:353 templates/js/translated/build.js:2207 msgid "Issued by" msgstr "发布者" -#: build/models.py:332 +#: build/models.py:354 msgid "User who issued this build order" msgstr "发布此生产订单的用户" -#: build/models.py:340 build/templates/build/build_base.html:204 -#: build/templates/build/detail.html:122 common/models.py:147 +#: build/models.py:362 build/templates/build/build_base.html:204 +#: build/templates/build/detail.html:122 common/models.py:152 #: order/models.py:334 order/templates/order/order_base.html:217 #: order/templates/order/return_order_base.html:188 -#: order/templates/order/sales_order_base.html:232 part/models.py:1132 +#: order/templates/order/sales_order_base.html:232 part/models.py:1142 #: part/templates/part/part_base.html:390 #: report/templates/report/inventree_build_order_report.html:158 #: templates/InvenTree/settings/settings_staff_js.html:150 @@ -958,37 +1039,38 @@ msgstr "发布此生产订单的用户" msgid "Responsible" msgstr "责任人" -#: build/models.py:341 +#: build/models.py:363 msgid "User or group responsible for this build order" msgstr "构建此订单的用户或组" -#: build/models.py:346 build/templates/build/detail.html:108 +#: build/models.py:368 build/templates/build/detail.html:108 #: company/templates/company/manufacturer_part.html:107 #: company/templates/company/supplier_part.html:194 #: order/templates/order/order_base.html:167 #: order/templates/order/return_order_base.html:145 #: order/templates/order/sales_order_base.html:184 -#: part/templates/part/part_base.html:383 stock/models.py:834 +#: part/templates/part/part_base.html:383 stock/models.py:835 #: stock/templates/stock/item_base.html:200 #: templates/js/translated/company.js:1019 msgid "External Link" msgstr "外部链接" -#: build/models.py:347 common/models.py:3178 part/models.py:956 -#: stock/models.py:834 +#: build/models.py:369 common/models.py:3230 part/models.py:960 +#: stock/models.py:835 msgid "Link to external URL" msgstr "链接到外部 URL" -#: build/models.py:351 +#: build/models.py:373 msgid "Build Priority" msgstr "创建优先级" -#: build/models.py:354 +#: build/models.py:376 msgid "Priority of this build order" msgstr "此构建订单的优先级" -#: build/models.py:361 common/models.py:131 order/admin.py:18 -#: order/models.py:298 templates/InvenTree/settings/settings_staff_js.html:146 +#: build/models.py:383 common/models.py:122 common/models.py:136 +#: order/admin.py:18 order/models.py:298 order/serializers.py:108 +#: templates/InvenTree/settings/settings_staff_js.html:146 #: templates/js/translated/build.js:2144 #: templates/js/translated/purchase_order.js:1710 #: templates/js/translated/return_order.js:317 @@ -1000,73 +1082,74 @@ msgstr "此构建订单的优先级" msgid "Project Code" msgstr "商品二维码" -#: build/models.py:362 +#: build/models.py:384 #, fuzzy #| msgid "Priority of this build order" msgid "Project code for this build order" msgstr "此构建订单的优先级" -#: build/models.py:595 build/models.py:660 +#: build/models.py:617 build/models.py:682 msgid "Failed to offload task to complete build allocations" msgstr "" -#: build/models.py:617 +#: build/models.py:639 #, python-brace-format msgid "Build order {build} has been completed" msgstr "生产订单 {build} 已完成" -#: build/models.py:623 +#: build/models.py:645 msgid "A build order has been completed" msgstr "生产订单已完成" -#: build/models.py:849 build/models.py:934 +#: build/models.py:871 build/models.py:956 msgid "No build output specified" msgstr "未指定生产产出" -#: build/models.py:852 +#: build/models.py:874 msgid "Build output is already completed" msgstr "生产产出已完成" -#: build/models.py:855 +#: build/models.py:877 msgid "Build output does not match Build Order" msgstr "生产产出与订单不匹配" -#: build/models.py:938 build/serializers.py:219 build/serializers.py:268 -#: build/serializers.py:866 order/models.py:559 order/serializers.py:432 -#: order/serializers.py:575 part/serializers.py:1484 part/serializers.py:1884 -#: stock/models.py:677 stock/models.py:1495 stock/serializers.py:603 +#: build/models.py:960 build/serializers.py:223 build/serializers.py:272 +#: build/serializers.py:870 order/models.py:559 order/serializers.py:461 +#: order/serializers.py:624 part/serializers.py:1515 part/serializers.py:1921 +#: stock/models.py:678 stock/models.py:1496 stock/serializers.py:661 msgid "Quantity must be greater than zero" msgstr "数量必须大于0" -#: build/models.py:943 build/serializers.py:224 +#: build/models.py:965 build/serializers.py:228 #, fuzzy #| msgid "Quantity must be greater than zero" msgid "Quantity cannot be greater than the output quantity" msgstr "数量必须大于0" -#: build/models.py:1003 build/serializers.py:547 +#: build/models.py:1025 build/serializers.py:551 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1344 +#: build/models.py:1366 #, fuzzy #| msgid "Delete parameters" msgid "Build Order Line Item" msgstr "删除参数" -#: build/models.py:1369 +#: build/models.py:1391 #, fuzzy #| msgid "Build Notes" msgid "Build object" msgstr "生产备注" -#: build/models.py:1383 build/models.py:1639 build/serializers.py:206 -#: build/serializers.py:253 build/templates/build/build_base.html:102 -#: build/templates/build/detail.html:34 common/models.py:2509 -#: order/models.py:1272 order/models.py:1931 order/serializers.py:1327 +#: build/models.py:1405 build/models.py:1661 build/serializers.py:210 +#: build/serializers.py:257 build/serializers.py:1194 +#: build/templates/build/build_base.html:102 +#: build/templates/build/detail.html:34 common/models.py:2544 +#: order/models.py:1272 order/models.py:1957 order/serializers.py:1383 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:410 -#: part/forms.py:48 part/models.py:3170 part/models.py:4058 +#: part/forms.py:48 part/models.py:3180 part/models.py:4143 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1076,7 +1159,7 @@ msgstr "生产备注" #: report/templates/report/inventree_stock_location_report.html:104 #: report/templates/report/inventree_test_report.html:90 #: report/templates/report/inventree_test_report.html:169 stock/admin.py:159 -#: stock/serializers.py:125 stock/serializers.py:165 stock/serializers.py:594 +#: stock/serializers.py:127 stock/serializers.py:167 stock/serializers.py:652 #: stock/templates/stock/item_base.html:287 #: stock/templates/stock/item_base.html:295 #: stock/templates/stock/item_base.html:342 @@ -1087,8 +1170,8 @@ msgstr "生产备注" #: templates/js/translated/build.js:1746 templates/js/translated/build.js:2357 #: templates/js/translated/company.js:1818 #: templates/js/translated/model_renderers.js:236 -#: templates/js/translated/order.js:304 templates/js/translated/part.js:962 -#: templates/js/translated/part.js:1812 templates/js/translated/part.js:3342 +#: templates/js/translated/order.js:304 templates/js/translated/part.js:965 +#: templates/js/translated/part.js:1815 templates/js/translated/part.js:3345 #: templates/js/translated/pricing.js:381 #: templates/js/translated/pricing.js:474 #: templates/js/translated/pricing.js:522 @@ -1108,42 +1191,42 @@ msgstr "生产备注" msgid "Quantity" msgstr "数量" -#: build/models.py:1384 +#: build/models.py:1406 #, fuzzy #| msgid "Stock required for build order" msgid "Required quantity for build order" msgstr "生产订单所需的库存" -#: build/models.py:1464 +#: build/models.py:1486 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "生产项必须指定生产产出,因为主部件已经被标记为可追踪的" -#: build/models.py:1473 +#: build/models.py:1495 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "分配数量 ({q}) 不得超过可用库存数量 ({a})" -#: build/models.py:1483 order/models.py:1882 +#: build/models.py:1505 order/models.py:1908 msgid "Stock item is over-allocated" msgstr "库存物品分配过度!" -#: build/models.py:1489 order/models.py:1885 +#: build/models.py:1511 order/models.py:1911 msgid "Allocation quantity must be greater than zero" msgstr "分配数量必须大于0" -#: build/models.py:1495 +#: build/models.py:1517 msgid "Quantity must be 1 for serialized stock" msgstr "序列化库存的数量必须是 1" -#: build/models.py:1554 +#: build/models.py:1576 #, fuzzy #| msgid "Selected stock item not found in BOM" msgid "Selected stock item does not match BOM line" msgstr "在BOM中找不到选定的库存项" -#: build/models.py:1626 build/serializers.py:846 order/serializers.py:1171 -#: order/serializers.py:1192 stock/models.py:358 stock/serializers.py:91 -#: stock/serializers.py:697 stock/serializers.py:1177 stock/serializers.py:1289 +#: build/models.py:1648 build/serializers.py:850 order/serializers.py:1227 +#: order/serializers.py:1248 stock/models.py:359 stock/serializers.py:93 +#: stock/serializers.py:755 stock/serializers.py:1243 stock/serializers.py:1355 #: stock/templates/stock/item_base.html:10 #: stock/templates/stock/item_base.html:23 #: stock/templates/stock/item_base.html:194 @@ -1159,70 +1242,76 @@ msgstr "在BOM中找不到选定的库存项" msgid "Stock Item" msgstr "库存项" -#: build/models.py:1627 +#: build/models.py:1649 msgid "Source stock item" msgstr "源库存项" -#: build/models.py:1640 +#: build/models.py:1662 msgid "Stock quantity to allocate to build" msgstr "分配到生产的数量" -#: build/models.py:1648 +#: build/models.py:1670 msgid "Install into" msgstr "安装到" -#: build/models.py:1649 +#: build/models.py:1671 msgid "Destination stock item" msgstr "目标库存项" -#: build/serializers.py:156 build/serializers.py:875 +#: build/serializers.py:89 build/serializers.py:1185 part/admin.py:41 +#: part/admin.py:405 part/models.py:3992 part/stocktake.py:220 +#: stock/admin.py:156 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:160 build/serializers.py:879 #: templates/js/translated/build.js:1322 msgid "Build Output" msgstr "生产产出" -#: build/serializers.py:168 +#: build/serializers.py:172 msgid "Build output does not match the parent build" msgstr "生产产出与对应生产不匹配" -#: build/serializers.py:172 +#: build/serializers.py:176 msgid "Output part does not match BuildOrder part" msgstr "产出部件与生产订单部件不匹配" -#: build/serializers.py:176 +#: build/serializers.py:180 msgid "This build output has already been completed" msgstr "此生产产出已经完成" -#: build/serializers.py:187 +#: build/serializers.py:191 msgid "This build output is not fully allocated" msgstr "生产产出未被完成分配" -#: build/serializers.py:207 build/serializers.py:254 +#: build/serializers.py:211 build/serializers.py:258 msgid "Enter quantity for build output" msgstr "输入生产产出数量" -#: build/serializers.py:275 +#: build/serializers.py:279 msgid "Integer quantity required for trackable parts" msgstr "对于可追踪的部件,需要整数型数值" -#: build/serializers.py:278 +#: build/serializers.py:282 msgid "Integer quantity required, as the bill of materials contains trackable parts" msgstr "需要整数型数值,因为BOM包含可追踪的部件" -#: build/serializers.py:293 order/serializers.py:588 order/serializers.py:1331 -#: stock/serializers.py:614 templates/js/translated/purchase_order.js:1153 +#: build/serializers.py:297 order/serializers.py:637 order/serializers.py:1387 +#: stock/serializers.py:672 templates/js/translated/purchase_order.js:1153 #: templates/js/translated/stock.js:367 templates/js/translated/stock.js:565 msgid "Serial Numbers" msgstr "序列号" -#: build/serializers.py:294 +#: build/serializers.py:298 msgid "Enter serial numbers for build outputs" msgstr "输入生产产出的序列号" -#: build/serializers.py:299 build/serializers.py:440 build/serializers.py:512 -#: order/serializers.py:564 order/serializers.py:672 order/serializers.py:1656 -#: part/serializers.py:1140 stock/serializers.py:100 stock/serializers.py:625 -#: stock/serializers.py:785 stock/serializers.py:881 stock/serializers.py:1321 -#: stock/serializers.py:1577 stock/templates/stock/item_base.html:394 +#: build/serializers.py:303 build/serializers.py:444 build/serializers.py:516 +#: order/serializers.py:613 order/serializers.py:721 order/serializers.py:1714 +#: part/serializers.py:1168 stock/serializers.py:102 stock/serializers.py:683 +#: stock/serializers.py:843 stock/serializers.py:939 stock/serializers.py:1387 +#: stock/serializers.py:1643 stock/templates/stock/item_base.html:394 #: templates/js/translated/barcode.js:547 #: templates/js/translated/barcode.js:795 templates/js/translated/build.js:1001 #: templates/js/translated/build.js:2372 @@ -1238,64 +1327,64 @@ msgstr "输入生产产出的序列号" msgid "Location" msgstr "地点" -#: build/serializers.py:300 +#: build/serializers.py:304 #, fuzzy #| msgid "Stock item created" msgid "Stock location for build output" msgstr "库存项已创建" -#: build/serializers.py:314 +#: build/serializers.py:318 msgid "Auto Allocate Serial Numbers" msgstr "自动分配序列号" -#: build/serializers.py:315 +#: build/serializers.py:319 msgid "Automatically allocate required items with matching serial numbers" msgstr "自动为所需项分配对应的序列号" -#: build/serializers.py:330 +#: build/serializers.py:334 #, fuzzy #| msgid "Integer quantity required for trackable parts" msgid "Serial numbers must be provided for trackable parts" msgstr "对于可追踪的部件,需要整数型数值" -#: build/serializers.py:355 stock/api.py:1041 +#: build/serializers.py:359 stock/api.py:1033 msgid "The following serial numbers already exist or are invalid" msgstr "以下序列号已存在或无效" -#: build/serializers.py:402 build/serializers.py:464 build/serializers.py:553 +#: build/serializers.py:406 build/serializers.py:468 build/serializers.py:557 msgid "A list of build outputs must be provided" msgstr "必须提供生产产出列表" -#: build/serializers.py:441 +#: build/serializers.py:445 #, fuzzy #| msgid "Stock item created" msgid "Stock location for scrapped outputs" msgstr "库存项已创建" -#: build/serializers.py:447 +#: build/serializers.py:451 #, fuzzy #| msgid "Stock Locations" msgid "Discard Allocations" msgstr "仓储地点" -#: build/serializers.py:448 +#: build/serializers.py:452 msgid "Discard any stock allocations for scrapped outputs" msgstr "" -#: build/serializers.py:453 +#: build/serializers.py:457 #, fuzzy #| msgid "Location for completed build outputs" msgid "Reason for scrapping build output(s)" msgstr "已完成生产产出的仓储地点" -#: build/serializers.py:513 +#: build/serializers.py:517 msgid "Location for completed build outputs" msgstr "已完成生产产出的仓储地点" -#: build/serializers.py:519 build/templates/build/build_base.html:151 +#: build/serializers.py:523 build/templates/build/build_base.html:151 #: build/templates/build/detail.html:62 order/models.py:950 -#: order/models.py:2044 order/serializers.py:596 stock/admin.py:164 -#: stock/serializers.py:932 stock/serializers.py:1465 +#: order/models.py:2070 order/serializers.py:645 stock/admin.py:164 +#: stock/serializers.py:990 stock/serializers.py:1531 #: stock/templates/stock/item_base.html:427 #: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2191 #: templates/js/translated/purchase_order.js:1308 @@ -1307,201 +1396,263 @@ msgstr "已完成生产产出的仓储地点" msgid "Status" msgstr "状态" -#: build/serializers.py:525 +#: build/serializers.py:529 msgid "Accept Incomplete Allocation" msgstr "接受不完整的分配" -#: build/serializers.py:526 +#: build/serializers.py:530 msgid "Complete outputs if stock has not been fully allocated" msgstr "如果库存尚未完成分配,完成产出" -#: build/serializers.py:611 +#: build/serializers.py:615 #, fuzzy #| msgid "Remove Allocated Stock" msgid "Consume Allocated Stock" msgstr "移除已分配的库存" -#: build/serializers.py:612 +#: build/serializers.py:616 #, fuzzy #| msgid "Subtract any stock which has already been allocated to this build" msgid "Consume any stock which has already been allocated to this build" msgstr "减去已经分配至此生产的库存" -#: build/serializers.py:618 +#: build/serializers.py:622 msgid "Remove Incomplete Outputs" msgstr "移除未完成的产出" -#: build/serializers.py:619 +#: build/serializers.py:623 msgid "Delete any build outputs which have not been completed" msgstr "删除所有未完成的生产产出" -#: build/serializers.py:646 +#: build/serializers.py:650 msgid "Not permitted" msgstr "" -#: build/serializers.py:647 +#: build/serializers.py:651 msgid "Accept as consumed by this build order" msgstr "接受此构建订单所消耗的内容" -#: build/serializers.py:648 +#: build/serializers.py:652 msgid "Deallocate before completing this build order" msgstr "在完成此构建订单前取消分配" -#: build/serializers.py:678 +#: build/serializers.py:682 msgid "Overallocated Stock" msgstr "超出分配的库存" -#: build/serializers.py:680 +#: build/serializers.py:684 msgid "How do you want to handle extra stock items assigned to the build order" msgstr "你想如何处理分配给构建订单的额外库存物品" -#: build/serializers.py:690 +#: build/serializers.py:694 msgid "Some stock items have been overallocated" msgstr "一些库存项已被过度分配" -#: build/serializers.py:695 +#: build/serializers.py:699 msgid "Accept Unallocated" msgstr "接受未分配的" -#: build/serializers.py:696 +#: build/serializers.py:700 msgid "Accept that stock items have not been fully allocated to this build order" msgstr "接受库存项未被完成分配至此生产订单" -#: build/serializers.py:706 templates/js/translated/build.js:315 +#: build/serializers.py:710 templates/js/translated/build.js:315 msgid "Required stock has not been fully allocated" msgstr "所需库存尚未完全分配" -#: build/serializers.py:711 order/serializers.py:300 order/serializers.py:1234 +#: build/serializers.py:715 order/serializers.py:319 order/serializers.py:1290 msgid "Accept Incomplete" msgstr "接受未完成" -#: build/serializers.py:712 +#: build/serializers.py:716 msgid "Accept that the required number of build outputs have not been completed" msgstr "接受所需的生产产出未完成" -#: build/serializers.py:722 templates/js/translated/build.js:319 +#: build/serializers.py:726 templates/js/translated/build.js:319 msgid "Required build quantity has not been completed" msgstr "所需生产数量尚未完成" -#: build/serializers.py:731 templates/js/translated/build.js:303 +#: build/serializers.py:735 templates/js/translated/build.js:303 msgid "Build order has incomplete outputs" msgstr "生产订单有未完成的产出" -#: build/serializers.py:769 +#: build/serializers.py:773 #, fuzzy #| msgid "Build actions" msgid "Build Line" msgstr "生产操作" -#: build/serializers.py:779 +#: build/serializers.py:783 msgid "Build output" msgstr "生产产出" -#: build/serializers.py:787 +#: build/serializers.py:791 msgid "Build output must point to the same build" msgstr "生产产出必须指向相同的生产" -#: build/serializers.py:823 +#: build/serializers.py:827 #, fuzzy #| msgid "Delete parameters" msgid "Build Line Item" msgstr "删除参数" -#: build/serializers.py:837 +#: build/serializers.py:841 msgid "bom_item.part must point to the same part as the build order" msgstr "bom_item.part 必须与生产订单指向相同的部件" -#: build/serializers.py:852 stock/serializers.py:1190 +#: build/serializers.py:856 stock/serializers.py:1256 msgid "Item must be in stock" msgstr "项目必须在库存中" -#: build/serializers.py:900 order/serializers.py:1225 +#: build/serializers.py:904 order/serializers.py:1281 #, python-brace-format msgid "Available quantity ({q}) exceeded" msgstr "可用量 ({q}) 超出了限制" -#: build/serializers.py:906 +#: build/serializers.py:910 msgid "Build output must be specified for allocation of tracked parts" msgstr "对于被追踪的部件的分配,必须指定生产产出" -#: build/serializers.py:913 +#: build/serializers.py:917 msgid "Build output cannot be specified for allocation of untracked parts" msgstr "对于未被追踪的部件,无法指定生产产出" -#: build/serializers.py:937 order/serializers.py:1477 +#: build/serializers.py:941 order/serializers.py:1533 msgid "Allocation items must be provided" msgstr "必须提供分配的项" -#: build/serializers.py:1000 +#: build/serializers.py:1004 msgid "Stock location where parts are to be sourced (leave blank to take from any location)" msgstr "部件来源的仓储地点(留空则可来源于任何仓储地点)" -#: build/serializers.py:1008 +#: build/serializers.py:1012 msgid "Exclude Location" msgstr "排除地点" -#: build/serializers.py:1009 +#: build/serializers.py:1013 msgid "Exclude stock items from this selected location" msgstr "从该选定的仓储地点排除库存项" -#: build/serializers.py:1014 +#: build/serializers.py:1018 msgid "Interchangeable Stock" msgstr "可互换的库存" -#: build/serializers.py:1015 +#: build/serializers.py:1019 msgid "Stock items in multiple locations can be used interchangeably" msgstr "多处地点的库存项可以互换使用" -#: build/serializers.py:1020 +#: build/serializers.py:1024 msgid "Substitute Stock" msgstr "可替换的库存" -#: build/serializers.py:1021 +#: build/serializers.py:1025 msgid "Allow allocation of substitute parts" msgstr "允许分配可替换的部件" -#: build/serializers.py:1026 +#: build/serializers.py:1030 msgid "Optional Items" msgstr "可选项目" -#: build/serializers.py:1027 +#: build/serializers.py:1031 msgid "Allocate optional BOM items to build order" msgstr "分配可选的BOM项目来建立订单" -#: build/serializers.py:1049 +#: build/serializers.py:1053 msgid "Failed to start auto-allocation task" msgstr "" -#: build/serializers.py:1139 part/models.py:3953 part/models.py:4387 -#: stock/api.py:804 +#: build/serializers.py:1095 +#, fuzzy +#| msgid "Supplier Part Orders" +msgid "Supplier Part Number" +msgstr "供应商商品订单" + +#: build/serializers.py:1096 company/models.py:500 +msgid "Manufacturer Part Number" +msgstr "制造商商品编号" + +#: build/serializers.py:1097 stock/admin.py:53 stock/admin.py:175 +#: stock/serializers.py:454 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1098 +#, fuzzy +#| msgid "Build Order Reference" +msgid "Build Reference" +msgstr "相关生产订单" + +#: build/serializers.py:1099 +#, fuzzy +#| msgid "Reference" +msgid "BOM Reference" +msgstr "引用" + +#: build/serializers.py:1186 part/admin.py:402 part/models.py:3993 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1192 common/models.py:1488 part/admin.py:113 +#: part/models.py:1068 templates/js/translated/table_filters.js:147 +#: templates/js/translated/table_filters.js:223 +#: templates/js/translated/table_filters.js:776 +msgid "Trackable" +msgstr "可追踪" + +#: build/serializers.py:1196 part/models.py:4000 part/models.py:4472 +#: stock/api.py:796 msgid "BOM Item" msgstr "BOM项" -#: build/serializers.py:1148 templates/js/translated/index.js:130 +#: build/serializers.py:1205 templates/js/translated/index.js:130 msgid "Allocated Stock" msgstr "" -#: build/serializers.py:1153 part/admin.py:132 part/bom.py:173 -#: part/serializers.py:828 part/serializers.py:1502 +#: build/serializers.py:1210 part/admin.py:132 part/bom.py:173 +#: part/serializers.py:856 part/serializers.py:1533 #: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 -#: templates/js/translated/build.js:2613 templates/js/translated/part.js:710 -#: templates/js/translated/part.js:2149 +#: templates/js/translated/build.js:2614 templates/js/translated/part.js:709 +#: templates/js/translated/part.js:2152 #: templates/js/translated/table_filters.js:170 msgid "On Order" msgstr "" -#: build/serializers.py:1158 part/serializers.py:1504 -#: templates/js/translated/build.js:2617 +#: build/serializers.py:1215 part/serializers.py:1535 +#: templates/js/translated/build.js:2618 #: templates/js/translated/table_filters.js:360 msgid "In Production" msgstr "正在生产" -#: build/serializers.py:1163 part/bom.py:172 part/serializers.py:1527 +#: build/serializers.py:1220 part/bom.py:172 part/serializers.py:1558 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" msgstr "可用库存" +#: build/serializers.py:1224 +#, fuzzy +#| msgid "Substitute Stock" +msgid "Available Substitute Stock" +msgstr "可替换的库存" + +#: build/serializers.py:1225 +#, fuzzy +#| msgid "Available Stock" +msgid "Available Variant Stock" +msgstr "可用库存" + +#: build/serializers.py:1226 +#, fuzzy +#| msgid "Available Stock" +msgid "Total Available Stock" +msgstr "可用库存" + +#: build/serializers.py:1227 part/serializers.py:862 +#, fuzzy +#| msgid "External Link" +msgid "External Stock" +msgstr "外部链接" + #: build/status_codes.py:11 generic/states/tests.py:17 order/status_codes.py:12 #: order/status_codes.py:37 order/status_codes.py:64 order/status_codes.py:82 #: templates/js/translated/table_filters.js:598 @@ -1517,7 +1668,8 @@ msgstr "生产中" msgid "Cancelled" msgstr "已取消" -#: build/status_codes.py:14 generic/states/tests.py:19 order/status_codes.py:14 +#: build/status_codes.py:14 generic/states/tests.py:19 importer/models.py:468 +#: importer/status_codes.py:19 order/status_codes.py:14 #: order/status_codes.py:44 order/status_codes.py:69 #: order/templates/order/order_base.html:158 #: order/templates/order/sales_order_base.html:165 report/models.py:444 @@ -1652,11 +1804,12 @@ msgstr "库存尚未被完全分配到此构建订单" #: build/templates/build/build_base.html:160 #: build/templates/build/detail.html:138 order/models.py:309 -#: order/models.py:1307 order/templates/order/order_base.html:186 +#: order/models.py:1307 order/serializers.py:174 +#: order/templates/order/order_base.html:186 #: order/templates/order/return_order_base.html:164 #: order/templates/order/sales_order_base.html:196 #: report/templates/report/inventree_build_order_report.html:125 -#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1831 +#: templates/js/translated/build.js:2239 templates/js/translated/part.js:1834 #: templates/js/translated/purchase_order.js:1739 #: templates/js/translated/purchase_order.js:2147 #: templates/js/translated/return_order.js:346 @@ -1689,8 +1842,8 @@ msgid "Completed Outputs" msgstr "已完成输出" #: build/templates/build/build_base.html:190 -#: build/templates/build/detail.html:101 order/api.py:1463 order/models.py:845 -#: order/models.py:1551 order/models.py:1665 order/models.py:1819 +#: build/templates/build/detail.html:101 order/api.py:1384 order/models.py:845 +#: order/models.py:1566 order/models.py:1681 order/models.py:1840 #: order/templates/order/sales_order_base.html:9 #: order/templates/order/sales_order_base.html:28 #: report/templates/report/inventree_build_order_report.html:135 @@ -1744,7 +1897,7 @@ msgstr "库存来源" msgid "Stock can be taken from any available location." msgstr "库存可以从任何可用的地点获得。" -#: build/templates/build/detail.html:49 order/models.py:1443 +#: build/templates/build/detail.html:49 order/models.py:1448 #: templates/js/translated/purchase_order.js:2189 msgid "Destination" msgstr "目的地" @@ -1906,41 +2059,41 @@ msgstr "生产订单详情" msgid "Incomplete Outputs" msgstr "未完成输出" -#: common/api.py:689 +#: common/api.py:690 #, fuzzy #| msgid "Link" msgid "Is Link" msgstr "链接" -#: common/api.py:697 +#: common/api.py:698 #, fuzzy #| msgid "File" msgid "Is File" msgstr "文件" -#: common/api.py:739 +#: common/api.py:740 msgid "User does not have permission to delete this attachment" msgstr "" -#: common/currency.py:130 +#: common/currency.py:132 #, fuzzy #| msgid "Not a valid currency code" msgid "Invalid currency code" msgstr "不是有效的货币代码" -#: common/currency.py:132 +#: common/currency.py:134 #, fuzzy #| msgid "Not a valid currency code" msgid "Duplicate currency code" msgstr "不是有效的货币代码" -#: common/currency.py:137 +#: common/currency.py:139 #, fuzzy #| msgid "Not a valid currency code" msgid "No valid currency codes provided" msgstr "不是有效的货币代码" -#: common/currency.py:154 +#: common/currency.py:156 #, fuzzy #| msgid "Subcategories" msgid "No plugin" @@ -1997,1649 +2150,1664 @@ msgstr "最后一次更新时间" msgid "Site URL is locked by configuration" msgstr "" -#: common/models.py:132 +#: common/models.py:137 msgid "Unique project code" msgstr "" -#: common/models.py:139 +#: common/models.py:144 #, fuzzy #| msgid "Part description" msgid "Project description" msgstr "商品描述" -#: common/models.py:148 +#: common/models.py:153 #, fuzzy #| msgid "User or group responsible for this order" msgid "User or group responsible for this project" msgstr "负责此订单的用户或群组" -#: common/models.py:765 +#: common/models.py:770 msgid "Settings key (must be unique - case insensitive)" msgstr "设置键值(必须是唯一的 - 大小写不敏感)" -#: common/models.py:769 +#: common/models.py:774 msgid "Settings value" msgstr "设定值" -#: common/models.py:821 +#: common/models.py:826 msgid "Chosen value is not a valid option" msgstr "选择的值不是一个有效的选项" -#: common/models.py:837 +#: common/models.py:842 msgid "Value must be a boolean value" msgstr "值必须是布尔量" -#: common/models.py:845 +#: common/models.py:850 msgid "Value must be an integer value" msgstr "值必须为整数" -#: common/models.py:882 +#: common/models.py:887 msgid "Key string must be unique" msgstr "关键字必须是唯一的" -#: common/models.py:1114 +#: common/models.py:1119 msgid "No group" msgstr "无群组" -#: common/models.py:1213 +#: common/models.py:1218 msgid "Restart required" msgstr "需要重启" -#: common/models.py:1215 +#: common/models.py:1220 msgid "A setting has been changed which requires a server restart" msgstr "设置已更改,需要服务器重启" -#: common/models.py:1222 +#: common/models.py:1227 #, fuzzy #| msgid "Printing Actions" msgid "Pending migrations" msgstr "打印操作" -#: common/models.py:1223 +#: common/models.py:1228 msgid "Number of pending database migrations" msgstr "" -#: common/models.py:1228 +#: common/models.py:1233 msgid "Server Instance Name" msgstr "服务器实例名称" -#: common/models.py:1230 +#: common/models.py:1235 msgid "String descriptor for the server instance" msgstr "" -#: common/models.py:1234 +#: common/models.py:1239 msgid "Use instance name" msgstr "" -#: common/models.py:1235 +#: common/models.py:1240 msgid "Use the instance name in the title-bar" msgstr "" -#: common/models.py:1240 +#: common/models.py:1245 msgid "Restrict showing `about`" msgstr "" -#: common/models.py:1241 +#: common/models.py:1246 msgid "Show the `about` modal only to superusers" msgstr "" -#: common/models.py:1246 company/models.py:111 company/models.py:112 +#: common/models.py:1251 company/models.py:111 company/models.py:112 msgid "Company name" msgstr "公司名称" -#: common/models.py:1247 +#: common/models.py:1252 msgid "Internal company name" msgstr "内部公司名称" -#: common/models.py:1251 +#: common/models.py:1256 msgid "Base URL" msgstr "" -#: common/models.py:1252 +#: common/models.py:1257 msgid "Base URL for server instance" msgstr "" -#: common/models.py:1258 +#: common/models.py:1263 msgid "Default Currency" msgstr "" -#: common/models.py:1259 +#: common/models.py:1264 msgid "Select base currency for pricing calculations" msgstr "" -#: common/models.py:1265 +#: common/models.py:1270 msgid "Supported Currencies" msgstr "" -#: common/models.py:1266 +#: common/models.py:1271 #, fuzzy #| msgid "Not a valid currency code" msgid "List of supported currency codes" msgstr "不是有效的货币代码" -#: common/models.py:1272 +#: common/models.py:1277 msgid "Currency Update Interval" msgstr "" -#: common/models.py:1274 +#: common/models.py:1279 msgid "How often to update exchange rates (set to zero to disable)" msgstr "" -#: common/models.py:1277 common/models.py:1333 common/models.py:1346 -#: common/models.py:1354 common/models.py:1363 common/models.py:1372 -#: common/models.py:1590 common/models.py:1612 common/models.py:1727 -#: common/models.py:2046 +#: common/models.py:1282 common/models.py:1338 common/models.py:1351 +#: common/models.py:1359 common/models.py:1368 common/models.py:1377 +#: common/models.py:1601 common/models.py:1623 common/models.py:1738 +#: common/models.py:2111 msgid "days" msgstr "天" -#: common/models.py:1281 +#: common/models.py:1286 msgid "Currency Update Plugin" msgstr "" -#: common/models.py:1282 +#: common/models.py:1287 msgid "Currency update plugin to use" msgstr "" -#: common/models.py:1287 +#: common/models.py:1292 msgid "Download from URL" msgstr "" -#: common/models.py:1289 +#: common/models.py:1294 msgid "Allow download of remote images and files from external URL" msgstr "" -#: common/models.py:1295 +#: common/models.py:1300 msgid "Download Size Limit" msgstr "" -#: common/models.py:1296 +#: common/models.py:1301 msgid "Maximum allowable download size for remote image" msgstr "" -#: common/models.py:1302 +#: common/models.py:1307 msgid "User-agent used to download from URL" msgstr "" -#: common/models.py:1304 +#: common/models.py:1309 msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" msgstr "" -#: common/models.py:1309 +#: common/models.py:1314 msgid "Strict URL Validation" msgstr "" -#: common/models.py:1310 +#: common/models.py:1315 msgid "Require schema specification when validating URLs" msgstr "" -#: common/models.py:1315 +#: common/models.py:1320 msgid "Require confirm" msgstr "" -#: common/models.py:1316 +#: common/models.py:1321 msgid "Require explicit user confirmation for certain action." msgstr "" -#: common/models.py:1321 +#: common/models.py:1326 msgid "Tree Depth" msgstr "" -#: common/models.py:1323 +#: common/models.py:1328 msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." msgstr "" -#: common/models.py:1329 +#: common/models.py:1334 msgid "Update Check Interval" msgstr "" -#: common/models.py:1330 +#: common/models.py:1335 msgid "How often to check for updates (set to zero to disable)" msgstr "" -#: common/models.py:1336 +#: common/models.py:1341 msgid "Automatic Backup" msgstr "" -#: common/models.py:1337 +#: common/models.py:1342 msgid "Enable automatic backup of database and media files" msgstr "" -#: common/models.py:1342 +#: common/models.py:1347 msgid "Auto Backup Interval" msgstr "" -#: common/models.py:1343 +#: common/models.py:1348 msgid "Specify number of days between automated backup events" msgstr "" -#: common/models.py:1349 +#: common/models.py:1354 msgid "Task Deletion Interval" msgstr "" -#: common/models.py:1351 +#: common/models.py:1356 msgid "Background task results will be deleted after specified number of days" msgstr "" -#: common/models.py:1358 +#: common/models.py:1363 msgid "Error Log Deletion Interval" msgstr "" -#: common/models.py:1360 +#: common/models.py:1365 msgid "Error logs will be deleted after specified number of days" msgstr "" -#: common/models.py:1367 +#: common/models.py:1372 msgid "Notification Deletion Interval" msgstr "" -#: common/models.py:1369 +#: common/models.py:1374 msgid "User notifications will be deleted after specified number of days" msgstr "" -#: common/models.py:1376 templates/InvenTree/settings/sidebar.html:31 +#: common/models.py:1381 templates/InvenTree/settings/sidebar.html:31 msgid "Barcode Support" msgstr "" -#: common/models.py:1377 +#: common/models.py:1382 #, fuzzy #| msgid "Enable barcode scanner support" msgid "Enable barcode scanner support in the web interface" msgstr "启用条形码扫描支持" -#: common/models.py:1382 +#: common/models.py:1387 msgid "Barcode Input Delay" msgstr "" -#: common/models.py:1383 +#: common/models.py:1388 msgid "Barcode input processing delay time" msgstr "" -#: common/models.py:1389 +#: common/models.py:1394 msgid "Barcode Webcam Support" msgstr "" -#: common/models.py:1390 +#: common/models.py:1395 msgid "Allow barcode scanning via webcam in browser" msgstr "" -#: common/models.py:1395 +#: common/models.py:1400 +#, fuzzy +#| msgid "Barcode Data" +msgid "Barcode Show Data" +msgstr "条码数据" + +#: common/models.py:1401 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1406 #, fuzzy #| msgid "Part description" msgid "Part Revisions" msgstr "商品描述" -#: common/models.py:1396 +#: common/models.py:1407 #, fuzzy #| msgid "Enable internal prices for parts" msgid "Enable revision field for Part" msgstr "启用内部商品价格" -#: common/models.py:1401 +#: common/models.py:1412 #, fuzzy #| msgid "Removed from assembly" msgid "Allow Deletion from Assembly" msgstr "已从组装中删除" -#: common/models.py:1402 +#: common/models.py:1413 msgid "Allow deletion of parts which are used in an assembly" msgstr "" -#: common/models.py:1407 +#: common/models.py:1418 msgid "IPN Regex" msgstr "" -#: common/models.py:1408 +#: common/models.py:1419 msgid "Regular expression pattern for matching Part IPN" msgstr "" -#: common/models.py:1411 +#: common/models.py:1422 msgid "Allow Duplicate IPN" msgstr "" -#: common/models.py:1412 +#: common/models.py:1423 msgid "Allow multiple parts to share the same IPN" msgstr "" -#: common/models.py:1417 +#: common/models.py:1428 msgid "Allow Editing IPN" msgstr "" -#: common/models.py:1418 +#: common/models.py:1429 msgid "Allow changing the IPN value while editing a part" msgstr "" -#: common/models.py:1423 +#: common/models.py:1434 msgid "Copy Part BOM Data" msgstr "" -#: common/models.py:1424 +#: common/models.py:1435 msgid "Copy BOM data by default when duplicating a part" msgstr "" -#: common/models.py:1429 +#: common/models.py:1440 msgid "Copy Part Parameter Data" msgstr "" -#: common/models.py:1430 +#: common/models.py:1441 msgid "Copy parameter data by default when duplicating a part" msgstr "" -#: common/models.py:1435 +#: common/models.py:1446 msgid "Copy Part Test Data" msgstr "" -#: common/models.py:1436 +#: common/models.py:1447 msgid "Copy test data by default when duplicating a part" msgstr "" -#: common/models.py:1441 +#: common/models.py:1452 msgid "Copy Category Parameter Templates" msgstr "" -#: common/models.py:1442 +#: common/models.py:1453 msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1447 part/admin.py:108 part/models.py:3795 +#: common/models.py:1458 part/admin.py:108 part/models.py:3835 #: report/models.py:294 report/models.py:361 report/serializers.py:90 -#: report/serializers.py:131 stock/serializers.py:227 +#: report/serializers.py:131 stock/serializers.py:232 #: templates/js/translated/table_filters.js:139 -#: templates/js/translated/table_filters.js:767 +#: templates/js/translated/table_filters.js:772 msgid "Template" msgstr "模板" -#: common/models.py:1448 +#: common/models.py:1459 msgid "Parts are templates by default" msgstr "" -#: common/models.py:1453 part/admin.py:91 part/admin.py:425 part/models.py:1052 +#: common/models.py:1464 part/admin.py:91 part/admin.py:425 part/models.py:1056 #: templates/js/translated/bom.js:1639 #: templates/js/translated/table_filters.js:330 -#: templates/js/translated/table_filters.js:721 +#: templates/js/translated/table_filters.js:726 msgid "Assembly" msgstr "组装" -#: common/models.py:1454 +#: common/models.py:1465 msgid "Parts can be assembled from other components by default" msgstr "" -#: common/models.py:1459 part/admin.py:95 part/models.py:1058 -#: templates/js/translated/table_filters.js:729 +#: common/models.py:1470 part/admin.py:95 part/models.py:1062 +#: templates/js/translated/table_filters.js:734 msgid "Component" msgstr "组件" -#: common/models.py:1460 +#: common/models.py:1471 msgid "Parts can be used as sub-components by default" msgstr "" -#: common/models.py:1465 part/admin.py:100 part/models.py:1070 +#: common/models.py:1476 part/admin.py:100 part/models.py:1074 msgid "Purchaseable" msgstr "可购买" -#: common/models.py:1466 +#: common/models.py:1477 msgid "Parts are purchaseable by default" msgstr "商品默认可购买" -#: common/models.py:1471 part/admin.py:104 part/models.py:1076 -#: templates/js/translated/table_filters.js:755 +#: common/models.py:1482 part/admin.py:104 part/models.py:1080 +#: templates/js/translated/table_filters.js:760 msgid "Salable" msgstr "可销售" -#: common/models.py:1472 +#: common/models.py:1483 msgid "Parts are salable by default" msgstr "商品默认可销售" -#: common/models.py:1477 part/admin.py:113 part/models.py:1064 -#: templates/js/translated/table_filters.js:147 -#: templates/js/translated/table_filters.js:223 -#: templates/js/translated/table_filters.js:771 -msgid "Trackable" -msgstr "可追踪" - -#: common/models.py:1478 +#: common/models.py:1489 msgid "Parts are trackable by default" msgstr "商品默认可跟踪" -#: common/models.py:1483 part/admin.py:117 part/models.py:1086 +#: common/models.py:1494 part/admin.py:117 part/models.py:1096 #: part/templates/part/part_base.html:154 #: templates/js/translated/table_filters.js:143 -#: templates/js/translated/table_filters.js:775 +#: templates/js/translated/table_filters.js:780 msgid "Virtual" msgstr "虚拟" -#: common/models.py:1484 +#: common/models.py:1495 msgid "Parts are virtual by default" msgstr "商品默认是虚拟的" -#: common/models.py:1489 +#: common/models.py:1500 msgid "Show Import in Views" msgstr "视图中显示导入" -#: common/models.py:1490 +#: common/models.py:1501 msgid "Display the import wizard in some part views" msgstr "在一些商品视图中显示导入向导" -#: common/models.py:1495 +#: common/models.py:1506 msgid "Show related parts" msgstr "显示相关商品" -#: common/models.py:1496 +#: common/models.py:1507 msgid "Display related parts for a part" msgstr "" -#: common/models.py:1501 +#: common/models.py:1512 msgid "Initial Stock Data" msgstr "" -#: common/models.py:1502 +#: common/models.py:1513 msgid "Allow creation of initial stock when adding a new part" msgstr "" -#: common/models.py:1507 templates/js/translated/part.js:107 +#: common/models.py:1518 templates/js/translated/part.js:107 msgid "Initial Supplier Data" msgstr "" -#: common/models.py:1509 +#: common/models.py:1520 msgid "Allow creation of initial supplier data when adding a new part" msgstr "" -#: common/models.py:1515 +#: common/models.py:1526 msgid "Part Name Display Format" msgstr "" -#: common/models.py:1516 +#: common/models.py:1527 msgid "Format to display the part name" msgstr "" -#: common/models.py:1522 +#: common/models.py:1533 msgid "Part Category Default Icon" msgstr "" -#: common/models.py:1523 +#: common/models.py:1534 msgid "Part category default icon (empty means no icon)" msgstr "" -#: common/models.py:1527 +#: common/models.py:1538 #, fuzzy #| msgid "Parameter units" msgid "Enforce Parameter Units" msgstr "参数单位" -#: common/models.py:1529 +#: common/models.py:1540 msgid "If units are provided, parameter values must match the specified units" msgstr "" -#: common/models.py:1535 +#: common/models.py:1546 msgid "Minimum Pricing Decimal Places" msgstr "" -#: common/models.py:1537 +#: common/models.py:1548 msgid "Minimum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1548 +#: common/models.py:1559 msgid "Maximum Pricing Decimal Places" msgstr "" -#: common/models.py:1550 +#: common/models.py:1561 msgid "Maximum number of decimal places to display when rendering pricing data" msgstr "" -#: common/models.py:1561 +#: common/models.py:1572 msgid "Use Supplier Pricing" msgstr "" -#: common/models.py:1563 +#: common/models.py:1574 msgid "Include supplier price breaks in overall pricing calculations" msgstr "" -#: common/models.py:1569 +#: common/models.py:1580 msgid "Purchase History Override" msgstr "" -#: common/models.py:1571 +#: common/models.py:1582 msgid "Historical purchase order pricing overrides supplier price breaks" msgstr "" -#: common/models.py:1577 +#: common/models.py:1588 msgid "Use Stock Item Pricing" msgstr "" -#: common/models.py:1579 +#: common/models.py:1590 msgid "Use pricing from manually entered stock data for pricing calculations" msgstr "" -#: common/models.py:1585 +#: common/models.py:1596 msgid "Stock Item Pricing Age" msgstr "" -#: common/models.py:1587 +#: common/models.py:1598 msgid "Exclude stock items older than this number of days from pricing calculations" msgstr "" -#: common/models.py:1594 +#: common/models.py:1605 msgid "Use Variant Pricing" msgstr "" -#: common/models.py:1595 +#: common/models.py:1606 msgid "Include variant pricing in overall pricing calculations" msgstr "" -#: common/models.py:1600 +#: common/models.py:1611 msgid "Active Variants Only" msgstr "" -#: common/models.py:1602 +#: common/models.py:1613 msgid "Only use active variant parts for calculating variant pricing" msgstr "" -#: common/models.py:1608 +#: common/models.py:1619 msgid "Pricing Rebuild Interval" msgstr "" -#: common/models.py:1610 +#: common/models.py:1621 msgid "Number of days before part pricing is automatically updated" msgstr "" -#: common/models.py:1617 +#: common/models.py:1628 msgid "Internal Prices" msgstr "内部价格" -#: common/models.py:1618 +#: common/models.py:1629 msgid "Enable internal prices for parts" msgstr "启用内部商品价格" -#: common/models.py:1623 +#: common/models.py:1634 msgid "Internal Price Override" msgstr "" -#: common/models.py:1625 +#: common/models.py:1636 msgid "If available, internal prices override price range calculations" msgstr "" -#: common/models.py:1631 +#: common/models.py:1642 msgid "Enable label printing" msgstr "" -#: common/models.py:1632 +#: common/models.py:1643 msgid "Enable label printing from the web interface" msgstr "" -#: common/models.py:1637 +#: common/models.py:1648 msgid "Label Image DPI" msgstr "" -#: common/models.py:1639 +#: common/models.py:1650 msgid "DPI resolution when generating image files to supply to label printing plugins" msgstr "" -#: common/models.py:1645 +#: common/models.py:1656 msgid "Enable Reports" msgstr "" -#: common/models.py:1646 +#: common/models.py:1657 msgid "Enable generation of reports" msgstr "" -#: common/models.py:1651 templates/stats.html:25 +#: common/models.py:1662 templates/stats.html:25 msgid "Debug Mode" msgstr "调试模式" -#: common/models.py:1652 +#: common/models.py:1663 msgid "Generate reports in debug mode (HTML output)" msgstr "在调试模式生成报告(HTML输出)" -#: common/models.py:1657 +#: common/models.py:1668 #, fuzzy #| msgid "No Reports Found" msgid "Log Report Errors" msgstr "没有找到报表" -#: common/models.py:1658 +#: common/models.py:1669 msgid "Log errors which occur when generating reports" msgstr "" -#: common/models.py:1663 plugin/builtin/labels/label_sheet.py:28 +#: common/models.py:1674 plugin/builtin/labels/label_sheet.py:28 #: report/models.py:302 msgid "Page Size" msgstr "页面大小" -#: common/models.py:1664 +#: common/models.py:1675 msgid "Default page size for PDF reports" msgstr "PDF 报表默认页面大小" -#: common/models.py:1669 +#: common/models.py:1680 msgid "Enable Test Reports" msgstr "" -#: common/models.py:1670 +#: common/models.py:1681 msgid "Enable generation of test reports" msgstr "启用生成测试报表" -#: common/models.py:1675 +#: common/models.py:1686 msgid "Attach Test Reports" msgstr "" -#: common/models.py:1677 +#: common/models.py:1688 msgid "When printing a Test Report, attach a copy of the Test Report to the associated Stock Item" msgstr "" -#: common/models.py:1683 +#: common/models.py:1694 msgid "Globally Unique Serials" msgstr "" -#: common/models.py:1684 +#: common/models.py:1695 msgid "Serial numbers for stock items must be globally unique" msgstr "" -#: common/models.py:1689 +#: common/models.py:1700 msgid "Autofill Serial Numbers" msgstr "" -#: common/models.py:1690 +#: common/models.py:1701 msgid "Autofill serial numbers in forms" msgstr "" -#: common/models.py:1695 +#: common/models.py:1706 msgid "Delete Depleted Stock" msgstr "" -#: common/models.py:1697 +#: common/models.py:1708 msgid "Determines default behavior when a stock item is depleted" msgstr "" -#: common/models.py:1703 +#: common/models.py:1714 msgid "Batch Code Template" msgstr "" -#: common/models.py:1705 +#: common/models.py:1716 msgid "Template for generating default batch codes for stock items" msgstr "" -#: common/models.py:1710 +#: common/models.py:1721 msgid "Stock Expiry" msgstr "库存到期" -#: common/models.py:1711 +#: common/models.py:1722 msgid "Enable stock expiry functionality" msgstr "启用库存到期功能" -#: common/models.py:1716 +#: common/models.py:1727 msgid "Sell Expired Stock" msgstr "销售过期库存" -#: common/models.py:1717 +#: common/models.py:1728 msgid "Allow sale of expired stock" msgstr "允许销售过期库存" -#: common/models.py:1722 +#: common/models.py:1733 msgid "Stock Stale Time" msgstr "" -#: common/models.py:1724 +#: common/models.py:1735 msgid "Number of days stock items are considered stale before expiring" msgstr "" -#: common/models.py:1731 +#: common/models.py:1742 msgid "Build Expired Stock" msgstr "" -#: common/models.py:1732 +#: common/models.py:1743 msgid "Allow building with expired stock" msgstr "" -#: common/models.py:1737 +#: common/models.py:1748 msgid "Stock Ownership Control" msgstr "库存所有权控制" -#: common/models.py:1738 +#: common/models.py:1749 msgid "Enable ownership control over stock locations and items" msgstr "" -#: common/models.py:1743 +#: common/models.py:1754 msgid "Stock Location Default Icon" msgstr "" -#: common/models.py:1744 +#: common/models.py:1755 msgid "Stock location default icon (empty means no icon)" msgstr "" -#: common/models.py:1748 +#: common/models.py:1759 #, fuzzy #| msgid "Select Stock Items" msgid "Show Installed Stock Items" msgstr "选择库存项" -#: common/models.py:1749 +#: common/models.py:1760 msgid "Display installed stock items in stock tables" msgstr "" -#: common/models.py:1754 +#: common/models.py:1765 msgid "Check BOM when installing items" msgstr "" -#: common/models.py:1756 +#: common/models.py:1767 msgid "Installed stock items must exist in the BOM for the parent part" msgstr "" -#: common/models.py:1762 +#: common/models.py:1773 msgid "Allow Out of Stock Transfer" msgstr "" -#: common/models.py:1764 +#: common/models.py:1775 msgid "Allow stock items which are not in stock to be transferred between stock locations" msgstr "" -#: common/models.py:1770 +#: common/models.py:1781 msgid "Build Order Reference Pattern" msgstr "" -#: common/models.py:1772 +#: common/models.py:1783 msgid "Required pattern for generating Build Order reference field" msgstr "" -#: common/models.py:1778 common/models.py:1806 common/models.py:1828 -#: common/models.py:1864 +#: common/models.py:1789 common/models.py:1837 common/models.py:1859 +#: common/models.py:1895 #, fuzzy #| msgid "Responsible" msgid "Require Responsible Owner" msgstr "责任人" -#: common/models.py:1779 common/models.py:1807 common/models.py:1829 -#: common/models.py:1865 +#: common/models.py:1790 common/models.py:1838 common/models.py:1860 +#: common/models.py:1896 msgid "A responsible owner must be assigned to each order" msgstr "" -#: common/models.py:1784 +#: common/models.py:1795 +#, fuzzy +#| msgid "Build to allocate parts" +msgid "Require Active Part" +msgstr "生产以分配部件" + +#: common/models.py:1796 +#, fuzzy +#| msgid "Print build order report" +msgid "Prevent build order creation for inactive parts" +msgstr "打印构建订单报告" + +#: common/models.py:1801 +#, fuzzy +#| msgid "Build to allocate parts" +msgid "Require Locked Part" +msgstr "生产以分配部件" + +#: common/models.py:1802 +#, fuzzy +#| msgid "Print build order report" +msgid "Prevent build order creation for unlocked parts" +msgstr "打印构建订单报告" + +#: common/models.py:1807 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1809 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1815 msgid "Block Until Tests Pass" msgstr "" -#: common/models.py:1786 +#: common/models.py:1817 msgid "Prevent build outputs from being completed until all required tests pass" msgstr "" -#: common/models.py:1792 +#: common/models.py:1823 #, fuzzy #| msgid "Sales Orders" msgid "Enable Return Orders" msgstr "销售订单" -#: common/models.py:1793 +#: common/models.py:1824 msgid "Enable return order functionality in the user interface" msgstr "" -#: common/models.py:1798 +#: common/models.py:1829 #, fuzzy #| msgid "Build Order Reference" msgid "Return Order Reference Pattern" msgstr "相关生产订单" -#: common/models.py:1800 +#: common/models.py:1831 msgid "Required pattern for generating Return Order reference field" msgstr "" -#: common/models.py:1812 +#: common/models.py:1843 #, fuzzy #| msgid "Complete Build Order" msgid "Edit Completed Return Orders" msgstr "生产订单完成" -#: common/models.py:1814 +#: common/models.py:1845 msgid "Allow editing of return orders after they have been completed" msgstr "" -#: common/models.py:1820 +#: common/models.py:1851 msgid "Sales Order Reference Pattern" msgstr "" -#: common/models.py:1822 +#: common/models.py:1853 msgid "Required pattern for generating Sales Order reference field" msgstr "" -#: common/models.py:1834 +#: common/models.py:1865 msgid "Sales Order Default Shipment" msgstr "" -#: common/models.py:1835 +#: common/models.py:1866 msgid "Enable creation of default shipment with sales orders" msgstr "" -#: common/models.py:1840 +#: common/models.py:1871 msgid "Edit Completed Sales Orders" msgstr "" -#: common/models.py:1842 +#: common/models.py:1873 msgid "Allow editing of sales orders after they have been shipped or completed" msgstr "" -#: common/models.py:1848 +#: common/models.py:1879 #, fuzzy #| msgid "Build Order is incomplete" msgid "Mark Shipped Orders as Complete" msgstr "生产订单未完成" -#: common/models.py:1850 +#: common/models.py:1881 msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" msgstr "" -#: common/models.py:1856 +#: common/models.py:1887 msgid "Purchase Order Reference Pattern" msgstr "" -#: common/models.py:1858 +#: common/models.py:1889 msgid "Required pattern for generating Purchase Order reference field" msgstr "" -#: common/models.py:1870 +#: common/models.py:1901 msgid "Edit Completed Purchase Orders" msgstr "" -#: common/models.py:1872 +#: common/models.py:1903 msgid "Allow editing of purchase orders after they have been shipped or completed" msgstr "" -#: common/models.py:1878 +#: common/models.py:1909 #, fuzzy #| msgid "Create Purchase Order" msgid "Auto Complete Purchase Orders" msgstr "创建采购订单" -#: common/models.py:1880 +#: common/models.py:1911 msgid "Automatically mark purchase orders as complete when all line items are received" msgstr "" -#: common/models.py:1887 +#: common/models.py:1918 msgid "Enable password forgot" msgstr "" -#: common/models.py:1888 +#: common/models.py:1919 msgid "Enable password forgot function on the login pages" msgstr "" -#: common/models.py:1893 +#: common/models.py:1924 msgid "Enable registration" msgstr "" -#: common/models.py:1894 +#: common/models.py:1925 msgid "Enable self-registration for users on the login pages" msgstr "" -#: common/models.py:1899 +#: common/models.py:1930 msgid "Enable SSO" msgstr "" -#: common/models.py:1900 +#: common/models.py:1931 msgid "Enable SSO on the login pages" msgstr "" -#: common/models.py:1905 +#: common/models.py:1936 msgid "Enable SSO registration" msgstr "" -#: common/models.py:1907 +#: common/models.py:1938 msgid "Enable self-registration via SSO for users on the login pages" msgstr "" -#: common/models.py:1913 -msgid "Email required" +#: common/models.py:1944 +msgid "Enable SSO group sync" msgstr "" -#: common/models.py:1914 -msgid "Require user to supply mail on signup" +#: common/models.py:1946 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" msgstr "" -#: common/models.py:1919 -msgid "Auto-fill SSO users" -msgstr "" - -#: common/models.py:1921 -msgid "Automatically fill out user-details from SSO account-data" -msgstr "" - -#: common/models.py:1927 -msgid "Mail twice" -msgstr "" - -#: common/models.py:1928 -msgid "On signup ask users twice for their mail" -msgstr "" - -#: common/models.py:1933 -msgid "Password twice" -msgstr "" - -#: common/models.py:1934 -msgid "On signup ask users twice for their password" -msgstr "" - -#: common/models.py:1939 -msgid "Allowed domains" -msgstr "" - -#: common/models.py:1941 -msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" - -#: common/models.py:1947 -msgid "Group on signup" -msgstr "" - -#: common/models.py:1948 -msgid "Group to which new users are assigned on registration" -msgstr "" - -#: common/models.py:1953 -msgid "Enforce MFA" +#: common/models.py:1952 +msgid "SSO group key" msgstr "" #: common/models.py:1954 -msgid "Users must use multifactor security." +msgid "The name of the groups claim attribute provided by the IdP" msgstr "" -#: common/models.py:1959 -msgid "Check plugins on startup" +#: common/models.py:1960 +msgid "SSO group map" msgstr "" -#: common/models.py:1961 -msgid "Check that all plugins are installed on startup - enable in container environments" +#: common/models.py:1962 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." msgstr "" -#: common/models.py:1969 -msgid "Check for plugin updates" +#: common/models.py:1968 +msgid "Remove groups outside of SSO" msgstr "" #: common/models.py:1970 -msgid "Enable periodic checks for updates to installed plugins" +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 "" #: common/models.py:1976 -msgid "Enable URL integration" +msgid "Email required" msgstr "" #: common/models.py:1977 -msgid "Enable plugins to add URL routes" +msgid "Require user to supply mail on signup" msgstr "" -#: common/models.py:1983 -msgid "Enable navigation integration" +#: common/models.py:1982 +msgid "Auto-fill SSO users" msgstr "" #: common/models.py:1984 -msgid "Enable plugins to integrate into navigation" +msgid "Automatically fill out user-details from SSO account-data" msgstr "" #: common/models.py:1990 -msgid "Enable app integration" +msgid "Mail twice" msgstr "" #: common/models.py:1991 -msgid "Enable plugins to add apps" +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:1996 +msgid "Password twice" msgstr "" #: common/models.py:1997 -msgid "Enable schedule integration" +msgid "On signup ask users twice for their password" msgstr "" -#: common/models.py:1998 -msgid "Enable plugins to run scheduled tasks" +#: common/models.py:2002 +msgid "Allowed domains" msgstr "" #: common/models.py:2004 +msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgstr "" + +#: common/models.py:2010 +msgid "Group on signup" +msgstr "" + +#: common/models.py:2012 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" + +#: common/models.py:2018 +msgid "Enforce MFA" +msgstr "" + +#: common/models.py:2019 +msgid "Users must use multifactor security." +msgstr "" + +#: common/models.py:2024 +msgid "Check plugins on startup" +msgstr "" + +#: common/models.py:2026 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:2034 +msgid "Check for plugin updates" +msgstr "" + +#: common/models.py:2035 +msgid "Enable periodic checks for updates to installed plugins" +msgstr "" + +#: common/models.py:2041 +msgid "Enable URL integration" +msgstr "" + +#: common/models.py:2042 +msgid "Enable plugins to add URL routes" +msgstr "" + +#: common/models.py:2048 +msgid "Enable navigation integration" +msgstr "" + +#: common/models.py:2049 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2055 +msgid "Enable app integration" +msgstr "" + +#: common/models.py:2056 +msgid "Enable plugins to add apps" +msgstr "" + +#: common/models.py:2062 +msgid "Enable schedule integration" +msgstr "" + +#: common/models.py:2063 +msgid "Enable plugins to run scheduled tasks" +msgstr "" + +#: common/models.py:2069 msgid "Enable event integration" msgstr "" -#: common/models.py:2005 +#: common/models.py:2070 msgid "Enable plugins to respond to internal events" msgstr "" -#: common/models.py:2011 +#: common/models.py:2076 #, fuzzy #| msgid "Sales Orders" msgid "Enable project codes" msgstr "销售订单" -#: common/models.py:2012 +#: common/models.py:2077 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:2017 +#: common/models.py:2082 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:2019 +#: common/models.py:2084 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2025 +#: common/models.py:2090 #, fuzzy #| msgid "Exclude Location" msgid "Exclude External Locations" msgstr "排除地点" -#: common/models.py:2027 +#: common/models.py:2092 #, fuzzy #| msgid "Exclude stock items from this selected location" msgid "Exclude stock items in external locations from stocktake calculations" msgstr "从该选定的仓储地点排除库存项" -#: common/models.py:2033 +#: common/models.py:2098 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2035 +#: common/models.py:2100 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2041 +#: common/models.py:2106 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2043 +#: common/models.py:2108 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2050 +#: common/models.py:2115 msgid "Display Users full names" msgstr "" -#: common/models.py:2051 +#: common/models.py:2116 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2056 +#: common/models.py:2121 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2057 +#: common/models.py:2122 #, fuzzy #| msgid "Enable generation of test reports" msgid "Enable test station data collection for test results" msgstr "启用生成测试报表" -#: common/models.py:2069 common/models.py:2479 +#: common/models.py:2134 common/models.py:2514 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2112 +#: common/models.py:2177 #, fuzzy #| msgid "Build to allocate parts" msgid "Hide inactive parts" msgstr "生产以分配部件" -#: common/models.py:2114 +#: common/models.py:2179 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2120 +#: common/models.py:2185 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2121 +#: common/models.py:2186 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2126 +#: common/models.py:2191 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2127 +#: common/models.py:2192 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2132 +#: common/models.py:2197 msgid "Show latest parts" msgstr "显示最近商品" -#: common/models.py:2133 +#: common/models.py:2198 msgid "Show latest parts on the homepage" msgstr "在主页上显示最近商品" -#: common/models.py:2138 +#: common/models.py:2203 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2139 +#: common/models.py:2204 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2144 +#: common/models.py:2209 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2145 +#: common/models.py:2210 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2150 +#: common/models.py:2215 msgid "Show low stock" msgstr "" -#: common/models.py:2151 +#: common/models.py:2216 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2156 +#: common/models.py:2221 msgid "Show depleted stock" msgstr "" -#: common/models.py:2157 +#: common/models.py:2222 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2162 +#: common/models.py:2227 msgid "Show needed stock" msgstr "" -#: common/models.py:2163 +#: common/models.py:2228 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2168 +#: common/models.py:2233 msgid "Show expired stock" msgstr "" -#: common/models.py:2169 +#: common/models.py:2234 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2174 +#: common/models.py:2239 msgid "Show stale stock" msgstr "" -#: common/models.py:2175 +#: common/models.py:2240 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2180 +#: common/models.py:2245 msgid "Show pending builds" msgstr "" -#: common/models.py:2181 +#: common/models.py:2246 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2186 +#: common/models.py:2251 msgid "Show overdue builds" msgstr "显示逾期生产" -#: common/models.py:2187 +#: common/models.py:2252 msgid "Show overdue builds on the homepage" msgstr "在主页上显示逾期的生产" -#: common/models.py:2192 +#: common/models.py:2257 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2193 +#: common/models.py:2258 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2198 +#: common/models.py:2263 msgid "Show overdue POs" msgstr "" -#: common/models.py:2199 +#: common/models.py:2264 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2204 +#: common/models.py:2269 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2205 +#: common/models.py:2270 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2210 +#: common/models.py:2275 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2211 +#: common/models.py:2276 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2281 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2217 +#: common/models.py:2282 #, fuzzy #| msgid "Show latest parts on the homepage" msgid "Show pending SO shipments on the homepage" msgstr "在主页上显示最近商品" -#: common/models.py:2222 +#: common/models.py:2287 msgid "Show News" msgstr "" -#: common/models.py:2223 +#: common/models.py:2288 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2293 msgid "Inline label display" msgstr "内嵌标签显示" -#: common/models.py:2230 +#: common/models.py:2295 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "在浏览器中显示 PDF 标签,而不是以文件形式下载" -#: common/models.py:2236 +#: common/models.py:2301 msgid "Default label printer" msgstr "" -#: common/models.py:2238 +#: common/models.py:2303 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2244 +#: common/models.py:2309 msgid "Inline report display" msgstr "" -#: common/models.py:2246 +#: common/models.py:2311 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "在浏览器中显示 PDF 报告,而不是以文件形式下载" -#: common/models.py:2252 +#: common/models.py:2317 msgid "Search Parts" msgstr "" -#: common/models.py:2253 +#: common/models.py:2318 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2258 +#: common/models.py:2323 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2259 +#: common/models.py:2324 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2264 +#: common/models.py:2329 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2265 +#: common/models.py:2330 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2270 +#: common/models.py:2335 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2271 +#: common/models.py:2336 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2276 +#: common/models.py:2341 msgid "Search Categories" msgstr "" -#: common/models.py:2277 +#: common/models.py:2342 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2282 +#: common/models.py:2347 msgid "Search Stock" msgstr "" -#: common/models.py:2283 +#: common/models.py:2348 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2288 +#: common/models.py:2353 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2290 +#: common/models.py:2355 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2296 +#: common/models.py:2361 msgid "Search Locations" msgstr "" -#: common/models.py:2297 +#: common/models.py:2362 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2302 +#: common/models.py:2367 msgid "Search Companies" msgstr "" -#: common/models.py:2303 +#: common/models.py:2368 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2308 +#: common/models.py:2373 msgid "Search Build Orders" msgstr "" -#: common/models.py:2309 +#: common/models.py:2374 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2314 +#: common/models.py:2379 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2315 +#: common/models.py:2380 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2320 +#: common/models.py:2385 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2322 +#: common/models.py:2387 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2328 +#: common/models.py:2393 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2329 +#: common/models.py:2394 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2334 +#: common/models.py:2399 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2336 +#: common/models.py:2401 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2342 +#: common/models.py:2407 #, fuzzy #| msgid "Purchase Orders" msgid "Search Return Orders" msgstr "采购订单" -#: common/models.py:2343 +#: common/models.py:2408 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2348 +#: common/models.py:2413 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2350 +#: common/models.py:2415 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2356 +#: common/models.py:2421 msgid "Search Preview Results" msgstr "搜索预览结果" -#: common/models.py:2358 +#: common/models.py:2423 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2364 +#: common/models.py:2429 #, fuzzy #| msgid "Search" msgid "Regex Search" msgstr "搜索" -#: common/models.py:2365 +#: common/models.py:2430 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2370 +#: common/models.py:2435 msgid "Whole Word Search" msgstr "" -#: common/models.py:2371 +#: common/models.py:2436 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2376 +#: common/models.py:2441 msgid "Show Quantity in Forms" msgstr "在表格中显示数量" -#: common/models.py:2377 +#: common/models.py:2442 msgid "Display available part quantity in some forms" msgstr "在某些表格中显示可用的商品数量" -#: common/models.py:2382 +#: common/models.py:2447 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2383 +#: common/models.py:2448 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2388 +#: common/models.py:2453 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2389 +#: common/models.py:2454 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2394 +#: common/models.py:2459 msgid "Date Format" msgstr "" -#: common/models.py:2395 +#: common/models.py:2460 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2408 part/templates/part/detail.html:41 +#: common/models.py:2473 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2409 +#: common/models.py:2474 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2414 part/templates/part/detail.html:62 +#: common/models.py:2479 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2416 +#: common/models.py:2481 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2422 +#: common/models.py:2487 msgid "Table String Length" msgstr "" -#: common/models.py:2424 +#: common/models.py:2489 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2430 -#, fuzzy -#| msgid "Select Label Template" -msgid "Default part label template" -msgstr "选择标签模板" - -#: common/models.py:2431 -msgid "The part label template to be automatically selected" -msgstr "" - -#: common/models.py:2436 -#, fuzzy -#| msgid "stock items selected" -msgid "Default stock item template" -msgstr "已选择库存项" - -#: common/models.py:2438 -msgid "The stock item label template to be automatically selected" -msgstr "" - -#: common/models.py:2444 -#, fuzzy -#| msgid "No stock location set" -msgid "Default stock location label template" -msgstr "未设置仓储地点" - -#: common/models.py:2446 -msgid "The stock location label template to be automatically selected" -msgstr "" - -#: common/models.py:2452 -#, fuzzy -#| msgid "No stock location set" -msgid "Default build line label template" -msgstr "未设置仓储地点" - -#: common/models.py:2454 -msgid "The build line label template to be automatically selected" -msgstr "" - -#: common/models.py:2460 +#: common/models.py:2495 msgid "Receive error reports" msgstr "" -#: common/models.py:2461 +#: common/models.py:2496 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2466 +#: common/models.py:2501 msgid "Last used printing machines" msgstr "" -#: common/models.py:2467 +#: common/models.py:2502 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2487 common/models.py:2488 common/models.py:2636 -#: common/models.py:2637 common/models.py:2882 common/models.py:2883 -#: common/models.py:3193 common/models.py:3194 part/models.py:3193 -#: part/models.py:3280 part/models.py:3353 part/models.py:3381 -#: plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2522 common/models.py:2523 common/models.py:2672 +#: common/models.py:2673 common/models.py:2918 common/models.py:2919 +#: common/models.py:3245 common/models.py:3246 importer/models.py:85 +#: part/models.py:3203 part/models.py:3290 part/models.py:3364 +#: part/models.py:3392 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3036 users/models.py:111 msgid "User" msgstr "用户" -#: common/models.py:2510 +#: common/models.py:2545 msgid "Price break quantity" msgstr "" -#: common/models.py:2517 company/serializers.py:472 order/admin.py:42 -#: order/models.py:1346 order/models.py:2265 -#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1886 +#: common/models.py:2552 company/serializers.py:502 order/admin.py:42 +#: order/models.py:1346 order/models.py:2292 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1889 #: templates/js/translated/pricing.js:621 #: templates/js/translated/return_order.js:740 msgid "Price" msgstr "价格" -#: common/models.py:2518 +#: common/models.py:2553 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2613 common/models.py:2798 +#: common/models.py:2649 common/models.py:2834 msgid "Endpoint" msgstr "" -#: common/models.py:2614 +#: common/models.py:2650 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2624 +#: common/models.py:2660 msgid "Name for this webhook" msgstr "" -#: common/models.py:2628 company/models.py:163 company/models.py:782 -#: machine/models.py:39 part/admin.py:88 part/models.py:1081 -#: plugin/models.py:66 templates/js/translated/company.js:523 -#: templates/js/translated/table_filters.js:135 -#: templates/js/translated/table_filters.js:219 -#: templates/js/translated/table_filters.js:492 -#: templates/js/translated/table_filters.js:520 -#: templates/js/translated/table_filters.js:716 -#: templates/js/translated/table_filters.js:796 users/models.py:182 -msgid "Active" -msgstr "" - -#: common/models.py:2628 +#: common/models.py:2664 msgid "Is this webhook active" msgstr "" -#: common/models.py:2644 users/models.py:159 +#: common/models.py:2680 users/models.py:159 msgid "Token" msgstr "令牌" -#: common/models.py:2645 +#: common/models.py:2681 msgid "Token for access" msgstr "" -#: common/models.py:2653 +#: common/models.py:2689 msgid "Secret" msgstr "" -#: common/models.py:2654 +#: common/models.py:2690 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2762 +#: common/models.py:2798 msgid "Message ID" msgstr "" -#: common/models.py:2763 +#: common/models.py:2799 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2771 +#: common/models.py:2807 msgid "Host" msgstr "" -#: common/models.py:2772 +#: common/models.py:2808 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2780 +#: common/models.py:2816 msgid "Header" msgstr "" -#: common/models.py:2781 +#: common/models.py:2817 msgid "Header of this message" msgstr "" -#: common/models.py:2788 +#: common/models.py:2824 msgid "Body" msgstr "" -#: common/models.py:2789 +#: common/models.py:2825 msgid "Body of this message" msgstr "" -#: common/models.py:2799 +#: common/models.py:2835 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2804 +#: common/models.py:2840 msgid "Worked on" msgstr "" -#: common/models.py:2805 +#: common/models.py:2841 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:2931 +#: common/models.py:2967 msgid "Id" msgstr "" -#: common/models.py:2933 templates/js/translated/company.js:965 +#: common/models.py:2969 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:2935 common/models.py:3177 company/models.py:149 -#: company/models.py:440 company/models.py:500 company/models.py:799 -#: order/models.py:303 order/models.py:1301 order/models.py:1717 -#: part/admin.py:55 part/models.py:955 +#: common/models.py:2971 common/models.py:3229 company/models.py:149 +#: company/models.py:446 company/models.py:506 company/models.py:806 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 +#: part/admin.py:55 part/models.py:959 #: part/templates/part/part_scheduling.html:11 #: report/templates/report/inventree_build_order_report.html:164 #: stock/admin.py:229 templates/js/translated/company.js:1319 #: templates/js/translated/company.js:1673 templates/js/translated/order.js:351 -#: templates/js/translated/part.js:2456 +#: templates/js/translated/part.js:2459 #: templates/js/translated/purchase_order.js:2040 #: templates/js/translated/purchase_order.js:2204 #: templates/js/translated/return_order.js:779 @@ -3648,28 +3816,28 @@ msgstr "" msgid "Link" msgstr "链接" -#: common/models.py:2937 templates/js/translated/news.js:60 +#: common/models.py:2973 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:2939 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:2975 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:2941 templates/js/translated/news.js:52 +#: common/models.py:2977 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Read" msgstr "" -#: common/models.py:2944 +#: common/models.py:2980 msgid "Was this news item read?" msgstr "" -#: common/models.py:2961 company/models.py:159 part/models.py:965 +#: common/models.py:2997 company/models.py:159 part/models.py:969 #: 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 @@ -3679,108 +3847,120 @@ msgstr "" msgid "Image" msgstr "图片" -#: common/models.py:2961 +#: common/models.py:2997 #, fuzzy #| msgid "Image" msgid "Image file" msgstr "图片" -#: common/models.py:2973 common/models.py:3161 +#: common/models.py:3009 common/models.py:3213 #, fuzzy #| msgid "Part Parameter Templates" msgid "Target model type for this image" msgstr "商品参数模板" -#: common/models.py:2977 +#: common/models.py:3013 #, fuzzy #| msgid "Part Parameter Templates" msgid "Target model ID for this image" msgstr "商品参数模板" -#: common/models.py:3018 +#: common/models.py:3035 +#, fuzzy +#| msgid "New Customer" +msgid "Custom Unit" +msgstr "新建客户" + +#: common/models.py:3056 +#, fuzzy +#| msgid "Key string must be unique" +msgid "Unit symbol must be unique" +msgstr "关键字必须是唯一的" + +#: common/models.py:3071 #, fuzzy #| msgid "Must be a valid number" msgid "Unit name must be a valid identifier" msgstr "必须是有效数字" -#: common/models.py:3037 +#: common/models.py:3090 #, fuzzy #| msgid "Part name" msgid "Unit name" msgstr "商品名称" -#: common/models.py:3044 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3097 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3045 +#: common/models.py:3098 #, fuzzy #| msgid "Optional Items" msgid "Optional unit symbol" msgstr "可选项目" -#: common/models.py:3052 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3104 templates/InvenTree/settings/settings_staff_js.html:71 #, fuzzy #| msgid "Destination" msgid "Definition" msgstr "目的地" -#: common/models.py:3053 +#: common/models.py:3105 msgid "Unit definition" msgstr "" -#: common/models.py:3111 common/models.py:3168 stock/models.py:2426 +#: common/models.py:3163 common/models.py:3220 stock/models.py:2471 #: templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "附件" -#: common/models.py:3123 +#: common/models.py:3175 msgid "Missing file" msgstr "缺少文件" -#: common/models.py:3124 +#: common/models.py:3176 msgid "Missing external link" msgstr "缺少外部链接" -#: common/models.py:3169 +#: common/models.py:3221 msgid "Select file to attach" msgstr "选择附件" -#: common/models.py:3184 templates/js/translated/attachment.js:120 +#: common/models.py:3236 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "注释" -#: common/models.py:3185 +#: common/models.py:3237 #, fuzzy #| msgid "Attachments" msgid "Attachment comment" msgstr "附件" -#: common/models.py:3201 +#: common/models.py:3253 #, fuzzy #| msgid "upload date" msgid "Upload date" msgstr "上传日期" -#: common/models.py:3202 +#: common/models.py:3254 #, fuzzy #| msgid "Select file to upload" msgid "Date the file was uploaded" msgstr "选择要上传的文件" -#: common/models.py:3206 +#: common/models.py:3258 #, fuzzy #| msgid "File Fields" msgid "File size" msgstr "文件字段" -#: common/models.py:3206 +#: common/models.py:3258 msgid "File size in bytes" msgstr "" -#: common/models.py:3244 common/serializers.py:553 +#: common/models.py:3296 common/serializers.py:557 msgid "Invalid model type specified for attachment" msgstr "" @@ -3802,7 +3982,7 @@ msgstr "" msgid "A order that is assigned to you was canceled" msgstr "" -#: common/notifications.py:330 common/notifications.py:337 order/api.py:472 +#: common/notifications.py:330 common/notifications.py:337 order/api.py:454 msgid "Items Received" msgstr "" @@ -3820,89 +4000,89 @@ msgstr "收到定购单" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:371 +#: common/serializers.py:375 msgid "Is Running" msgstr "" -#: common/serializers.py:377 +#: common/serializers.py:381 #, fuzzy #| msgid "Pending" msgid "Pending Tasks" msgstr "待定" -#: common/serializers.py:383 +#: common/serializers.py:387 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:389 +#: common/serializers.py:393 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Task ID" msgstr "" -#: common/serializers.py:404 +#: common/serializers.py:408 msgid "Unique task ID" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 msgid "Lock" msgstr "" -#: common/serializers.py:406 +#: common/serializers.py:410 #, fuzzy #| msgid "Stock Item" msgid "Lock time" msgstr "库存项" -#: common/serializers.py:408 +#: common/serializers.py:412 #, fuzzy #| msgid "Part name" msgid "Task name" msgstr "商品名称" -#: common/serializers.py:410 +#: common/serializers.py:414 #, fuzzy #| msgid "Production" msgid "Function" msgstr "生产中" -#: common/serializers.py:410 +#: common/serializers.py:414 #, fuzzy #| msgid "Part name" msgid "Function name" msgstr "商品名称" -#: common/serializers.py:412 +#: common/serializers.py:416 #, fuzzy #| msgid "Attachments" msgid "Arguments" msgstr "附件" -#: common/serializers.py:412 +#: common/serializers.py:416 msgid "Task arguments" msgstr "" -#: common/serializers.py:415 +#: common/serializers.py:419 #, fuzzy #| msgid "Keywords" msgid "Keyword Arguments" msgstr "关键词" -#: common/serializers.py:415 +#: common/serializers.py:419 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:525 +#: common/serializers.py:529 msgid "Filename" msgstr "文件名" -#: common/serializers.py:532 report/api.py:100 report/serializers.py:53 +#: common/serializers.py:536 report/api.py:100 report/serializers.py:53 msgid "Model Type" msgstr "" -#: common/serializers.py:559 +#: common/serializers.py:563 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -3973,39 +4153,39 @@ msgstr "已导入商品" msgid "Previous Step" msgstr "" -#: company/api.py:144 +#: company/api.py:141 #, fuzzy #| msgid "Print actions" msgid "Part is Active" msgstr "打印操作" -#: company/api.py:148 +#: company/api.py:145 #, fuzzy #| msgid "Manufacturers" msgid "Manufacturer is Active" msgstr "制造商" -#: company/api.py:281 +#: company/api.py:278 #, fuzzy #| msgid "Supplier Part Pricing" msgid "Supplier Part is Active" msgstr "供应商商品价格" -#: company/api.py:285 +#: company/api.py:282 #, fuzzy #| msgid "Internal Prices" msgid "Internal Part is Active" msgstr "内部价格" -#: company/api.py:289 +#: company/api.py:286 #, fuzzy #| msgid "Supplier List" msgid "Supplier is Active" msgstr "供应商列表" -#: company/models.py:100 company/models.py:365 +#: company/models.py:100 company/models.py:371 #: company/templates/company/company_base.html:8 -#: company/templates/company/company_base.html:12 stock/api.py:822 +#: company/templates/company/company_base.html:12 stock/api.py:814 #: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 msgid "Company" msgstr "公司" @@ -4045,8 +4225,9 @@ msgstr "联系电话" msgid "Contact email address" msgstr "联系人电子邮件" -#: company/models.py:142 company/templates/company/company_base.html:145 -#: order/models.py:343 order/templates/order/order_base.html:203 +#: company/models.py:142 company/models.py:275 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:203 #: order/templates/order/return_order_base.html:174 #: order/templates/order/sales_order_base.html:218 msgid "Contact" @@ -4067,7 +4248,9 @@ msgid "Is this company active?" msgstr "该公司制造商品吗?" #: company/models.py:168 -msgid "is customer" +#, fuzzy +#| msgid "is customer" +msgid "Is customer" msgstr "是客户" #: company/models.py:169 @@ -4075,7 +4258,9 @@ msgid "Do you sell items to this company?" msgstr "您是否向该公司出售商品?" #: company/models.py:174 -msgid "is supplier" +#, fuzzy +#| msgid "is supplier" +msgid "Is supplier" msgstr "是供应商" #: company/models.py:175 @@ -4083,7 +4268,9 @@ msgid "Do you purchase items from this company?" msgstr "您是否从该公司采购商品?" #: company/models.py:180 -msgid "is manufacturer" +#, fuzzy +#| msgid "is manufacturer" +msgid "Is manufacturer" msgstr "是制造商" #: company/models.py:181 @@ -4094,292 +4281,307 @@ msgstr "该公司制造商品吗?" msgid "Default currency used for this company" msgstr "该公司使用的默认货币" -#: company/models.py:366 +#: company/models.py:314 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:210 +#: order/templates/order/return_order_base.html:181 +#: order/templates/order/sales_order_base.html:225 +msgid "Address" +msgstr "地址" + +#: company/models.py:315 company/templates/company/sidebar.html:35 +#, fuzzy +#| msgid "Address" +msgid "Addresses" +msgstr "地址" + +#: company/models.py:372 #, fuzzy #| msgid "Delete Company" msgid "Select company" msgstr "删除该公司" -#: company/models.py:371 +#: company/models.py:377 #, fuzzy #| msgid "Address" msgid "Address title" msgstr "地址" -#: company/models.py:372 +#: company/models.py:378 msgid "Title describing the address entry" msgstr "" -#: company/models.py:378 +#: company/models.py:384 #, fuzzy #| msgid "Company address" msgid "Primary address" msgstr "公司地址" -#: company/models.py:379 +#: company/models.py:385 #, fuzzy #| msgid "Contact email address" msgid "Set as primary address" msgstr "联系人电子邮件" -#: company/models.py:384 templates/js/translated/company.js:914 +#: company/models.py:390 templates/js/translated/company.js:914 #: templates/js/translated/company.js:971 msgid "Line 1" msgstr "" -#: company/models.py:385 +#: company/models.py:391 #, fuzzy #| msgid "Address" msgid "Address line 1" msgstr "地址" -#: company/models.py:391 templates/js/translated/company.js:915 +#: company/models.py:397 templates/js/translated/company.js:915 #: templates/js/translated/company.js:977 msgid "Line 2" msgstr "" -#: company/models.py:392 +#: company/models.py:398 #, fuzzy #| msgid "Address" msgid "Address line 2" msgstr "地址" -#: company/models.py:398 company/models.py:399 +#: company/models.py:404 company/models.py:405 #: templates/js/translated/company.js:983 msgid "Postal code" msgstr "" -#: company/models.py:405 +#: company/models.py:411 msgid "City/Region" msgstr "" -#: company/models.py:406 +#: company/models.py:412 msgid "Postal code city/region" msgstr "" -#: company/models.py:412 +#: company/models.py:418 msgid "State/Province" msgstr "" -#: company/models.py:413 +#: company/models.py:419 msgid "State or province" msgstr "" -#: company/models.py:419 templates/js/translated/company.js:1001 +#: company/models.py:425 templates/js/translated/company.js:1001 msgid "Country" msgstr "" -#: company/models.py:420 +#: company/models.py:426 #, fuzzy #| msgid "Address" msgid "Address country" msgstr "地址" -#: company/models.py:426 +#: company/models.py:432 msgid "Courier shipping notes" msgstr "" -#: company/models.py:427 +#: company/models.py:433 msgid "Notes for shipping courier" msgstr "" -#: company/models.py:433 +#: company/models.py:439 #, fuzzy #| msgid "Internal company name" msgid "Internal shipping notes" msgstr "内部公司名称" -#: company/models.py:434 +#: company/models.py:440 msgid "Shipping notes for internal use" msgstr "" -#: company/models.py:441 +#: company/models.py:447 #, fuzzy #| msgid "Description (optional)" msgid "Link to address information (external)" msgstr "描述 (可选)" -#: company/models.py:463 company/models.py:574 company/models.py:792 +#: company/models.py:469 company/models.py:581 company/models.py:799 #: company/templates/company/manufacturer_part.html:7 #: company/templates/company/manufacturer_part.html:24 #: stock/templates/stock/item_base.html:217 msgid "Manufacturer Part" msgstr "制造商商品" -#: company/models.py:475 company/models.py:760 stock/models.py:766 -#: stock/serializers.py:422 stock/templates/stock/item_base.html:142 +#: company/models.py:481 company/models.py:767 stock/models.py:767 +#: stock/serializers.py:442 stock/templates/stock/item_base.html:142 #: templates/js/translated/bom.js:622 msgid "Base Part" msgstr "" -#: company/models.py:477 company/models.py:762 +#: company/models.py:483 company/models.py:769 msgid "Select part" msgstr "选择商品" -#: company/models.py:486 company/templates/company/company_base.html:82 +#: company/models.py:492 company/templates/company/company_base.html:82 #: company/templates/company/manufacturer_part.html:90 -#: company/templates/company/supplier_part.html:145 part/serializers.py:525 +#: company/templates/company/supplier_part.html:145 part/serializers.py:543 #: stock/templates/stock/item_base.html:207 #: templates/js/translated/company.js:507 #: templates/js/translated/company.js:1118 #: templates/js/translated/company.js:1296 #: templates/js/translated/company.js:1611 -#: templates/js/translated/table_filters.js:800 +#: templates/js/translated/table_filters.js:805 msgid "Manufacturer" msgstr "制造商" -#: company/models.py:487 +#: company/models.py:493 msgid "Select manufacturer" msgstr "选择制造商" -#: company/models.py:493 company/templates/company/manufacturer_part.html:101 -#: company/templates/company/supplier_part.html:153 part/serializers.py:535 -#: templates/js/translated/company.js:351 +#: company/models.py:499 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:518 +#: part/serializers.py:553 templates/js/translated/company.js:351 #: templates/js/translated/company.js:1117 #: templates/js/translated/company.js:1312 -#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1801 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1804 #: templates/js/translated/purchase_order.js:1851 #: templates/js/translated/purchase_order.js:2053 msgid "MPN" msgstr "" -#: company/models.py:494 -msgid "Manufacturer Part Number" -msgstr "制造商商品编号" - -#: company/models.py:501 +#: company/models.py:507 msgid "URL for external manufacturer part link" msgstr "" -#: company/models.py:510 +#: company/models.py:516 msgid "Manufacturer part description" msgstr "制造商商品描述" -#: company/models.py:581 +#: company/models.py:569 +#, fuzzy +#| msgid "Manufacturer Part Number" +msgid "Manufacturer Part Parameter" +msgstr "制造商商品编号" + +#: company/models.py:588 msgid "Parameter name" msgstr "参数名称" -#: company/models.py:587 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2418 templates/js/translated/company.js:1166 -#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1493 +#: company/models.py:594 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2463 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1496 #: templates/js/translated/stock.js:1522 msgid "Value" msgstr "数值" -#: company/models.py:588 +#: company/models.py:595 msgid "Parameter value" msgstr "参数值" -#: company/models.py:595 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1045 part/models.py:3646 +#: company/models.py:602 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1049 part/models.py:3667 #: part/templates/part/part_base.html:284 -#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1512 -#: templates/js/translated/part.js:1616 templates/js/translated/part.js:2370 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1515 +#: templates/js/translated/part.js:1619 templates/js/translated/part.js:2373 msgid "Units" msgstr "单位" -#: company/models.py:596 +#: company/models.py:603 msgid "Parameter units" msgstr "参数单位" -#: company/models.py:648 company/templates/company/supplier_part.html:7 -#: company/templates/company/supplier_part.html:24 order/api.py:452 -#: stock/models.py:777 stock/templates/stock/item_base.html:233 +#: company/models.py:655 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:434 +#: stock/models.py:778 stock/templates/stock/item_base.html:233 #: templates/js/translated/company.js:1600 #: templates/js/translated/purchase_order.js:752 #: templates/js/translated/stock.js:2280 msgid "Supplier Part" msgstr "供应商商品" -#: company/models.py:700 +#: company/models.py:707 msgid "Pack units must be compatible with the base part units" msgstr "" -#: company/models.py:707 +#: company/models.py:714 #, fuzzy #| msgid "Quantity must be greater than zero" msgid "Pack units must be greater than zero" msgstr "数量必须大于0" -#: company/models.py:721 +#: company/models.py:728 msgid "Linked manufacturer part must reference the same base part" msgstr "" -#: company/models.py:770 company/templates/company/company_base.html:87 +#: company/models.py:777 company/templates/company/company_base.html:87 #: company/templates/company/supplier_part.html:129 order/models.py:486 #: order/templates/order/order_base.html:136 part/bom.py:272 part/bom.py:310 -#: part/serializers.py:509 plugin/builtin/suppliers/digikey.py:25 +#: part/serializers.py:527 plugin/builtin/suppliers/digikey.py:25 #: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 #: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:224 #: templates/email/overdue_purchase_order.html:16 #: templates/js/translated/company.js:350 #: templates/js/translated/company.js:511 -#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1769 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1772 #: templates/js/translated/pricing.js:498 #: templates/js/translated/purchase_order.js:1689 -#: templates/js/translated/table_filters.js:804 +#: templates/js/translated/table_filters.js:809 msgid "Supplier" msgstr "供应商" -#: company/models.py:771 +#: company/models.py:778 msgid "Select supplier" msgstr "选择供应商" -#: company/models.py:777 part/serializers.py:520 +#: company/models.py:784 part/serializers.py:538 msgid "Supplier stock keeping unit" msgstr "" -#: company/models.py:783 +#: company/models.py:790 #, fuzzy #| msgid "Delete supplier part" msgid "Is this supplier part active?" msgstr "删除供应商商品" -#: company/models.py:793 +#: company/models.py:800 msgid "Select manufacturer part" msgstr "选择制造商商品" -#: company/models.py:800 +#: company/models.py:807 msgid "URL for external supplier part link" msgstr "外部供货商商品链接URL" -#: company/models.py:809 +#: company/models.py:816 msgid "Supplier part description" msgstr "供应商商品描述" -#: company/models.py:816 company/templates/company/supplier_part.html:187 -#: part/admin.py:412 part/models.py:4093 part/templates/part/upload_bom.html:59 +#: company/models.py:823 company/templates/company/supplier_part.html:187 +#: part/admin.py:412 part/models.py:4178 part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 #: 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:710 +#: stock/serializers.py:768 msgid "Note" msgstr "备注" -#: company/models.py:825 part/models.py:2003 +#: company/models.py:832 part/models.py:2013 msgid "base cost" msgstr "" -#: company/models.py:826 part/models.py:2004 +#: company/models.py:833 part/models.py:2014 msgid "Minimum charge (e.g. stocking fee)" msgstr "最低收费(例如库存费)" -#: company/models.py:833 company/templates/company/supplier_part.html:160 -#: stock/admin.py:228 stock/models.py:797 stock/serializers.py:1475 +#: company/models.py:840 company/templates/company/supplier_part.html:160 +#: stock/admin.py:228 stock/models.py:798 stock/serializers.py:1541 #: stock/templates/stock/item_base.html:240 #: templates/js/translated/company.js:1646 #: templates/js/translated/stock.js:2424 msgid "Packaging" msgstr "打包" -#: company/models.py:834 +#: company/models.py:841 msgid "Part packaging" msgstr "商品打包" -#: company/models.py:839 templates/js/translated/company.js:1651 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: company/models.py:846 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:311 #: templates/js/translated/purchase_order.js:841 #: templates/js/translated/purchase_order.js:1103 @@ -4388,35 +4590,47 @@ msgstr "商品打包" msgid "Pack Quantity" msgstr "" -#: company/models.py:841 +#: company/models.py:848 msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:860 part/models.py:2010 +#: company/models.py:867 part/models.py:2020 msgid "multiple" msgstr "" -#: company/models.py:861 +#: company/models.py:868 msgid "Order multiple" msgstr "" -#: company/models.py:873 +#: company/models.py:880 msgid "Quantity available from supplier" msgstr "" -#: company/models.py:879 +#: company/models.py:886 msgid "Availability Updated" msgstr "" -#: company/models.py:880 +#: company/models.py:887 msgid "Date of last update of availability data" msgstr "" -#: company/serializers.py:161 +#: company/models.py:1015 +#, fuzzy +#| msgid "Supplier Part Orders" +msgid "Supplier Price Break" +msgstr "供应商商品订单" + +#: company/serializers.py:174 msgid "Default currency used for this supplier" msgstr "该公司使用的默认货币" -#: company/serializers.py:357 part/admin.py:126 +#: company/serializers.py:210 +#, fuzzy +#| msgid "Company name" +msgid "Company Name" +msgstr "公司名称" + +#: company/serializers.py:384 part/admin.py:126 part/serializers.py:855 #: part/templates/part/part_base.html:197 #: templates/js/translated/company.js:1689 #: templates/js/translated/table_filters.js:355 @@ -4428,7 +4642,7 @@ msgstr "" #: templates/js/translated/company.js:1287 #: templates/js/translated/company.js:1575 #: templates/js/translated/model_renderers.js:312 -#: templates/js/translated/part.js:815 templates/js/translated/part.js:1219 +#: templates/js/translated/part.js:814 templates/js/translated/part.js:1222 msgid "Inactive" msgstr "" @@ -4489,16 +4703,16 @@ msgid "Delete image" msgstr "" #: company/templates/company/company_base.html:92 order/models.py:938 -#: order/models.py:2032 order/templates/order/return_order_base.html:131 -#: order/templates/order/sales_order_base.html:148 stock/models.py:819 -#: stock/models.py:820 stock/serializers.py:1225 +#: order/models.py:2058 order/templates/order/return_order_base.html:131 +#: order/templates/order/sales_order_base.html:148 stock/models.py:820 +#: stock/models.py:821 stock/serializers.py:1291 #: stock/templates/stock/item_base.html:405 #: templates/email/overdue_sales_order.html:16 #: templates/js/translated/company.js:503 #: templates/js/translated/return_order.js:295 #: templates/js/translated/sales_order.js:820 #: templates/js/translated/stock.js:2959 -#: templates/js/translated/table_filters.js:808 +#: templates/js/translated/table_filters.js:813 msgid "Customer" msgstr "客户" @@ -4506,13 +4720,6 @@ msgstr "客户" msgid "Uses default currency" msgstr "使用默认货币" -#: company/templates/company/company_base.html:124 order/models.py:353 -#: order/templates/order/order_base.html:210 -#: order/templates/order/return_order_base.html:181 -#: order/templates/order/sales_order_base.html:225 -msgid "Address" -msgstr "地址" - #: company/templates/company/company_base.html:131 msgid "Phone" msgstr "电话" @@ -4706,7 +4913,8 @@ msgid "Delete manufacturer part" msgstr "删除生产商商品" #: company/templates/company/manufacturer_part.html:65 -#: company/templates/company/supplier_part.html:97 order/api.py:458 +#: company/templates/company/supplier_part.html:97 order/api.py:440 +#: order/serializers.py:526 msgid "Internal Part" msgstr "内部商品" @@ -4716,7 +4924,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:119 #: company/templates/company/supplier_part.html:15 company/views.py:31 -#: part/admin.py:122 part/serializers.py:832 +#: part/admin.py:122 part/serializers.py:860 #: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 #: templates/navbar.html:48 msgid "Suppliers" @@ -4737,7 +4945,7 @@ msgid "New Parameter" msgstr "新建参数" #: company/templates/company/manufacturer_part.html:196 -#: templates/js/translated/part.js:1423 +#: templates/js/translated/part.js:1426 msgid "Add Parameter" msgstr "添加参数" @@ -4763,12 +4971,6 @@ msgstr "" msgid "Contacts" msgstr "联系人" -#: company/templates/company/sidebar.html:35 -#, fuzzy -#| msgid "Address" -msgid "Addresses" -msgstr "地址" - #: company/templates/company/supplier_part.html:50 #: templates/js/translated/company.js:1526 msgid "Supplier part actions" @@ -4810,9 +5012,9 @@ msgstr "" msgid "No supplier information available" msgstr "" -#: company/templates/company/supplier_part.html:139 part/bom.py:279 -#: part/bom.py:311 part/serializers.py:519 -#: templates/js/translated/company.js:349 templates/js/translated/part.js:1787 +#: company/templates/company/supplier_part.html:139 order/serializers.py:515 +#: part/bom.py:279 part/bom.py:311 part/serializers.py:537 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1790 #: templates/js/translated/pricing.js:510 #: templates/js/translated/purchase_order.js:1850 #: templates/js/translated/purchase_order.js:2028 @@ -4861,15 +5063,15 @@ msgid "Update Part Availability" msgstr "" #: company/templates/company/supplier_part_sidebar.html:5 -#: part/serializers.py:831 part/stocktake.py:224 +#: part/serializers.py:859 part/stocktake.py:224 #: part/templates/part/category.html:183 #: part/templates/part/category_sidebar.html:17 stock/admin.py:68 -#: stock/serializers.py:918 stock/serializers.py:1091 +#: stock/serializers.py:976 stock/serializers.py:1154 #: stock/templates/stock/location.html:170 #: stock/templates/stock/location.html:191 #: stock/templates/stock/location.html:203 #: stock/templates/stock/location_sidebar.html:7 -#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1061 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1064 #: templates/js/translated/search.js:172 templates/js/translated/stock.js:2766 #: users/models.py:206 msgid "Stock Items" @@ -4904,62 +5106,246 @@ msgstr "新建公司信息" msgid "Placed" msgstr "已添加" -#: machine/machine_types/label_printer.py:218 +#: importer/mixins.py:263 +#, fuzzy +#| msgid "Invalid value for overage" +msgid "Invalid export format" +msgstr "无效的备损值" + +#: importer/models.py:56 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:61 +#, fuzzy +#| msgid "Select file to upload" +msgid "Data file to import" +msgstr "选择要上传的文件" + +#: importer/models.py:70 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:81 +#, fuzzy +#| msgid "Import Part" +msgid "Import status" +msgstr "导入商品" + +#: importer/models.py:91 +#, fuzzy +#| msgid "Build Details" +msgid "Field Defaults" +msgstr "生产详情" + +#: importer/models.py:201 +#, fuzzy +#| msgid "Required build quantity has not been completed" +msgid "Some required fields have not been mapped" +msgstr "所需生产数量尚未完成" + +#: importer/models.py:346 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:351 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:360 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:365 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:372 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:376 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:381 importer/models.py:452 +#, fuzzy +#| msgid "Report Settings" +msgid "Import Session" +msgstr "报表设置" + +#: importer/models.py:385 +#, fuzzy +#| msgid "File Fields" +msgid "Field" +msgstr "文件字段" + +#: importer/models.py:387 +msgid "Column" +msgstr "" + +#: importer/models.py:456 +msgid "Row Index" +msgstr "" + +#: importer/models.py:459 +msgid "Original row data" +msgstr "" + +#: importer/models.py:462 part/models.py:3841 +msgid "Data" +msgstr "" + +#: importer/models.py:464 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:466 part/api.py:874 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +#, fuzzy +#| msgid "Unsupported file format: {ext.upper()}" +msgid "Unsupported data file format" +msgstr "不支持的文件格式: {ext.uper()}" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +#, fuzzy +#| msgid "Inline label display" +msgid "Invalid data file dimensions" +msgstr "内嵌标签显示" + +#: importer/serializers.py:135 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:136 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:149 +#, fuzzy +#| msgid "No data rows provided" +msgid "No rows provided" +msgstr "没有提供数据行" + +#: importer/serializers.py:153 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:156 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:159 +#, fuzzy +#| msgid "This build output has already been completed" +msgid "Row has already been completed" +msgstr "此生产产出已经完成" + +#: importer/status_codes.py:11 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:12 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:13 +#, fuzzy +#| msgid "Import Part" +msgid "Importing Data" +msgstr "导入商品" + +#: importer/status_codes.py:16 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +#, fuzzy +#| msgid "Image download exceeded maximum size" +msgid "Data file exceeds maximum size limit" +msgstr "图像下载超过最大尺寸" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:49 +#, fuzzy +#| msgid "Must be a valid number" +msgid "Value must be a valid dictionary object" +msgstr "必须是有效数字" + +#: machine/machine_types/label_printer.py:212 msgid "Copies" msgstr "" -#: machine/machine_types/label_printer.py:219 +#: machine/machine_types/label_printer.py:213 #, fuzzy #| msgid "Number of stock items to build" msgid "Number of copies to print for each label" msgstr "要生产的项目数量" -#: machine/machine_types/label_printer.py:234 +#: machine/machine_types/label_printer.py:228 #, fuzzy #| msgid "Connection error" msgid "Connected" msgstr "连接错误" -#: machine/machine_types/label_printer.py:235 order/api.py:1467 +#: machine/machine_types/label_printer.py:229 order/api.py:1388 #: templates/js/translated/sales_order.js:1078 msgid "Unknown" msgstr "" -#: machine/machine_types/label_printer.py:236 +#: machine/machine_types/label_printer.py:230 #, fuzzy #| msgid "Print Label" msgid "Printing" msgstr "打印标签" -#: machine/machine_types/label_printer.py:237 +#: machine/machine_types/label_printer.py:231 msgid "No media" msgstr "" -#: machine/machine_types/label_printer.py:238 +#: machine/machine_types/label_printer.py:232 #, fuzzy #| msgid "Rejected" msgid "Disconnected" msgstr "已拒绝" -#: machine/machine_types/label_printer.py:245 +#: machine/machine_types/label_printer.py:239 #, fuzzy #| msgid "Label name" msgid "Label Printer" msgstr "标签名称" -#: machine/machine_types/label_printer.py:246 +#: machine/machine_types/label_printer.py:240 #, fuzzy #| msgid "Allocate selected items" msgid "Directly print labels for various items." msgstr "分配选定项目" -#: machine/machine_types/label_printer.py:252 +#: machine/machine_types/label_printer.py:246 #, fuzzy #| msgid "Print actions" msgid "Printer Location" msgstr "打印操作" -#: machine/machine_types/label_printer.py:253 +#: machine/machine_types/label_printer.py:247 msgid "Scope the printer to a specific location" msgstr "" @@ -5001,10 +5387,6 @@ msgstr "" msgid "Initialized" msgstr "" -#: machine/models.py:110 -msgid "Errors" -msgstr "" - #: machine/models.py:117 #, fuzzy #| msgid "Build status" @@ -5032,48 +5414,48 @@ msgstr "" msgid "Total Price" msgstr "" -#: order/api.py:157 order/serializers.py:90 +#: order/api.py:149 order/serializers.py:94 #: order/templates/order/order_base.html:118 #: order/templates/order/return_order_base.html:113 #: order/templates/order/sales_order_base.html:122 msgid "Order Status" msgstr "" -#: order/api.py:161 templates/js/translated/table_filters.js:194 -#: templates/js/translated/table_filters.js:779 +#: order/api.py:153 templates/js/translated/table_filters.js:194 +#: templates/js/translated/table_filters.js:784 msgid "Has Pricing" msgstr "" -#: order/api.py:236 +#: order/api.py:228 msgid "No matching purchase order found" msgstr "" -#: order/api.py:435 order/api.py:801 order/models.py:1395 order/models.py:1504 -#: order/models.py:1550 order/models.py:1664 order/models.py:1818 -#: order/models.py:2231 order/models.py:2282 +#: order/api.py:417 order/api.py:755 order/models.py:1400 order/models.py:1514 +#: order/models.py:1565 order/models.py:1680 order/models.py:1839 +#: order/models.py:2258 order/models.py:2314 #: templates/js/translated/sales_order.js:1524 msgid "Order" msgstr "" -#: order/api.py:439 order/api.py:822 +#: order/api.py:421 order/api.py:776 #, fuzzy #| msgid "Order Code" msgid "Order Complete" msgstr "订单编码" -#: order/api.py:462 +#: order/api.py:444 #, fuzzy #| msgid "Pending" msgid "Order Pending" msgstr "待定" -#: order/api.py:1461 order/models.py:380 order/models.py:1396 -#: order/models.py:1505 order/templates/order/order_base.html:9 +#: order/api.py:1382 order/models.py:380 order/models.py:1401 +#: order/models.py:1515 order/templates/order/order_base.html:9 #: order/templates/order/order_base.html:18 #: report/templates/report/inventree_purchase_order_report.html:14 -#: stock/serializers.py:118 stock/templates/stock/item_base.html:176 +#: stock/serializers.py:120 stock/templates/stock/item_base.html:176 #: templates/email/overdue_purchase_order.html:15 -#: templates/js/translated/part.js:1746 templates/js/translated/pricing.js:804 +#: templates/js/translated/part.js:1749 templates/js/translated/pricing.js:804 #: templates/js/translated/purchase_order.js:168 #: templates/js/translated/purchase_order.js:753 #: templates/js/translated/purchase_order.js:1673 @@ -5081,8 +5463,8 @@ msgstr "待定" msgid "Purchase Order" msgstr "" -#: order/api.py:1465 order/models.py:1981 order/models.py:2232 -#: order/models.py:2283 order/templates/order/return_order_base.html:9 +#: order/api.py:1386 order/models.py:2007 order/models.py:2259 +#: order/models.py:2315 order/templates/order/return_order_base.html:9 #: order/templates/order/return_order_base.html:28 #: report/templates/report/inventree_return_order_report.html:13 #: templates/js/translated/return_order.js:280 @@ -5098,13 +5480,13 @@ msgstr "已退回" msgid "Total price for this order" msgstr "负责此订单的用户或群组" -#: order/models.py:96 order/serializers.py:70 +#: order/models.py:96 order/serializers.py:72 #, fuzzy #| msgid "Currency" msgid "Order Currency" msgstr "货币" -#: order/models.py:99 order/serializers.py:71 +#: order/models.py:99 order/serializers.py:73 msgid "Currency for this order (leave blank to use company default)" msgstr "" @@ -5126,7 +5508,7 @@ msgstr "描述 (可选)" msgid "Select project code for this order" msgstr "负责此订单的用户或群组" -#: order/models.py:303 order/models.py:1301 order/models.py:1717 +#: order/models.py:303 order/models.py:1301 order/models.py:1733 msgid "Link to external page" msgstr "" @@ -5179,15 +5561,15 @@ msgstr "" msgid "received by" msgstr "" -#: order/models.py:514 order/models.py:2058 +#: order/models.py:514 order/models.py:2084 msgid "Issue Date" msgstr "" -#: order/models.py:515 order/models.py:2059 +#: order/models.py:515 order/models.py:2085 msgid "Date order was issued" msgstr "" -#: order/models.py:522 order/models.py:2066 +#: order/models.py:522 order/models.py:2092 msgid "Date order was completed" msgstr "" @@ -5203,15 +5585,15 @@ msgstr "数量必须大于0" msgid "Company to which the items are being sold" msgstr "向其出售该商品的公司" -#: order/models.py:962 order/models.py:2051 +#: order/models.py:962 order/models.py:2077 msgid "Customer Reference " msgstr "" -#: order/models.py:963 order/models.py:2052 +#: order/models.py:963 order/models.py:2078 msgid "Customer order reference code" msgstr "" -#: order/models.py:967 order/models.py:1671 +#: order/models.py:967 order/models.py:1687 #: templates/js/translated/sales_order.js:879 #: templates/js/translated/sales_order.js:1060 msgid "Shipment Date" @@ -5281,20 +5663,26 @@ msgstr "" msgid "Unit price" msgstr "" -#: order/models.py:1380 +#: order/models.py:1361 +#, fuzzy +#| msgid "Delete parameters" +msgid "Purchase Order Line Item" +msgstr "删除参数" + +#: order/models.py:1385 msgid "Supplier part must match supplier" msgstr "" -#: order/models.py:1387 +#: order/models.py:1392 msgid "deleted" msgstr "" -#: order/models.py:1415 +#: order/models.py:1420 msgid "Supplier part" msgstr "供应商商品" -#: order/models.py:1422 order/templates/order/order_base.html:196 -#: templates/js/translated/part.js:1870 templates/js/translated/part.js:1902 +#: order/models.py:1427 order/templates/order/order_base.html:196 +#: templates/js/translated/part.js:1873 templates/js/translated/part.js:1905 #: templates/js/translated/purchase_order.js:1306 #: templates/js/translated/purchase_order.js:2169 #: templates/js/translated/return_order.js:763 @@ -5303,202 +5691,244 @@ msgstr "供应商商品" msgid "Received" msgstr "" -#: order/models.py:1423 +#: order/models.py:1428 msgid "Number of items received" msgstr "" -#: order/models.py:1431 stock/models.py:938 stock/serializers.py:556 +#: order/models.py:1436 stock/models.py:939 stock/serializers.py:602 #: stock/templates/stock/item_base.html:183 #: templates/js/translated/stock.js:2311 msgid "Purchase Price" msgstr "采购价格" -#: order/models.py:1432 +#: order/models.py:1437 msgid "Unit purchase price" msgstr "" -#: order/models.py:1447 +#: order/models.py:1452 msgid "Where does the Purchaser want this item to be stored?" msgstr "" -#: order/models.py:1538 +#: order/models.py:1503 +#, fuzzy +#| msgid "Purchase Order Settings" +msgid "Purchase Order Extra Line" +msgstr "采购订单设置" + +#: order/models.py:1532 +#, fuzzy +#| msgid "Delete parameters" +msgid "Sales Order Line Item" +msgstr "删除参数" + +#: order/models.py:1553 msgid "Virtual part cannot be assigned to a sales order" msgstr "" -#: order/models.py:1543 +#: order/models.py:1558 msgid "Only salable parts can be assigned to a sales order" msgstr "" -#: order/models.py:1569 part/templates/part/part_pricing.html:107 +#: order/models.py:1584 part/templates/part/part_pricing.html:107 #: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 msgid "Sale Price" msgstr "销售价格" -#: order/models.py:1570 +#: order/models.py:1585 msgid "Unit sale price" msgstr "" -#: order/models.py:1579 order/status_codes.py:43 +#: order/models.py:1594 order/status_codes.py:43 #: templates/js/translated/sales_order.js:1559 #: templates/js/translated/sales_order.js:1680 #: templates/js/translated/sales_order.js:1993 msgid "Shipped" msgstr "已发货" -#: order/models.py:1580 +#: order/models.py:1595 msgid "Shipped quantity" msgstr "" -#: order/models.py:1672 +#: order/models.py:1667 +#, fuzzy +#| msgid "Sales Order Settings" +msgid "Sales Order Shipment" +msgstr "销售订单设置" + +#: order/models.py:1688 msgid "Date of shipment" msgstr "" -#: order/models.py:1678 templates/js/translated/sales_order.js:1072 +#: order/models.py:1694 templates/js/translated/sales_order.js:1072 msgid "Delivery Date" msgstr "" -#: order/models.py:1679 +#: order/models.py:1695 msgid "Date of delivery of shipment" msgstr "" -#: order/models.py:1687 +#: order/models.py:1703 msgid "Checked By" msgstr "" -#: order/models.py:1688 +#: order/models.py:1704 msgid "User who checked this shipment" msgstr "" -#: order/models.py:1695 order/models.py:1908 order/serializers.py:1342 -#: order/serializers.py:1452 templates/js/translated/model_renderers.js:454 +#: order/models.py:1711 order/models.py:1934 order/serializers.py:1398 +#: order/serializers.py:1508 templates/js/translated/model_renderers.js:454 msgid "Shipment" msgstr "" -#: order/models.py:1696 +#: order/models.py:1712 msgid "Shipment number" msgstr "" -#: order/models.py:1704 +#: order/models.py:1720 msgid "Tracking Number" msgstr "" -#: order/models.py:1705 +#: order/models.py:1721 msgid "Shipment tracking information" msgstr "" -#: order/models.py:1712 +#: order/models.py:1728 msgid "Invoice Number" msgstr "" -#: order/models.py:1713 +#: order/models.py:1729 msgid "Reference number for associated invoice" msgstr "" -#: order/models.py:1733 +#: order/models.py:1749 msgid "Shipment has already been sent" msgstr "" -#: order/models.py:1736 +#: order/models.py:1752 msgid "Shipment has no allocated stock items" msgstr "" -#: order/models.py:1854 order/models.py:1856 +#: order/models.py:1828 +#, fuzzy +#| msgid "Sales Order Settings" +msgid "Sales Order Extra Line" +msgstr "销售订单设置" + +#: order/models.py:1857 +#, fuzzy +#| msgid "Sales Order Settings" +msgid "Sales Order Allocation" +msgstr "销售订单设置" + +#: order/models.py:1880 order/models.py:1882 msgid "Stock item has not been assigned" msgstr "" -#: order/models.py:1863 +#: order/models.py:1889 msgid "Cannot allocate stock item to a line with a different part" msgstr "" -#: order/models.py:1866 +#: order/models.py:1892 msgid "Cannot allocate stock to a line without a part" msgstr "" -#: order/models.py:1869 +#: order/models.py:1895 msgid "Allocation quantity cannot exceed stock quantity" msgstr "" -#: order/models.py:1888 order/serializers.py:1219 +#: order/models.py:1914 order/serializers.py:1275 msgid "Quantity must be 1 for serialized stock item" msgstr "" -#: order/models.py:1891 +#: order/models.py:1917 msgid "Sales order does not match shipment" msgstr "" -#: order/models.py:1892 plugin/base/barcodes/api.py:481 +#: order/models.py:1918 plugin/base/barcodes/api.py:481 msgid "Shipment does not match sales order" msgstr "" -#: order/models.py:1900 +#: order/models.py:1926 msgid "Line" msgstr "" -#: order/models.py:1909 +#: order/models.py:1935 msgid "Sales order shipment reference" msgstr "" -#: order/models.py:1922 order/models.py:2239 +#: order/models.py:1948 order/models.py:2266 #: templates/js/translated/return_order.js:721 msgid "Item" msgstr "" -#: order/models.py:1923 +#: order/models.py:1949 msgid "Select stock item to allocate" msgstr "" -#: order/models.py:1932 +#: order/models.py:1958 msgid "Enter stock allocation quantity" msgstr "" -#: order/models.py:2021 +#: order/models.py:2047 #, fuzzy #| msgid "Build Order Reference" msgid "Return Order reference" msgstr "相关生产订单" -#: order/models.py:2033 +#: order/models.py:2059 #, fuzzy #| msgid "Company from which the items are being ordered" msgid "Company from which items are being returned" msgstr "订购该商品的公司" -#: order/models.py:2045 +#: order/models.py:2071 msgid "Return order status" msgstr "" -#: order/models.py:2224 +#: order/models.py:2237 +#, fuzzy +#| msgid "Delete parameters" +msgid "Return Order Line Item" +msgstr "删除参数" + +#: order/models.py:2251 msgid "Only serialized items can be assigned to a Return Order" msgstr "" -#: order/models.py:2240 +#: order/models.py:2267 #, fuzzy #| msgid "Returned from customer" msgid "Select item to return from customer" msgstr "从客户退货" -#: order/models.py:2246 +#: order/models.py:2273 msgid "Received Date" msgstr "" -#: order/models.py:2247 +#: order/models.py:2274 msgid "The date this this return item was received" msgstr "" -#: order/models.py:2258 templates/js/translated/return_order.js:732 +#: order/models.py:2285 templates/js/translated/return_order.js:732 #: templates/js/translated/table_filters.js:123 msgid "Outcome" msgstr "" -#: order/models.py:2259 +#: order/models.py:2286 msgid "Outcome for this line item" msgstr "" -#: order/models.py:2266 +#: order/models.py:2293 msgid "Cost associated with return or repair for this line item" msgstr "" -#: order/serializers.py:79 order/templates/order/po_sidebar.html:5 +#: order/models.py:2303 +#, fuzzy +#| msgid "Build Order Settings" +msgid "Return Order Extra Line" +msgstr "生产订单设置" + +#: order/serializers.py:83 order/templates/order/po_sidebar.html:5 #: order/templates/order/return_order_detail.html:18 #: order/templates/order/so_sidebar.html:5 #: report/templates/report/inventree_purchase_order_report.html:22 @@ -5507,175 +5937,185 @@ msgstr "" msgid "Line Items" msgstr "" -#: order/serializers.py:83 +#: order/serializers.py:87 #, fuzzy #| msgid "Completed items" msgid "Completed Lines" msgstr "已完成项目" -#: order/serializers.py:286 +#: order/serializers.py:305 msgid "Order cannot be cancelled" msgstr "无法取消订单" -#: order/serializers.py:301 order/serializers.py:1235 +#: order/serializers.py:320 order/serializers.py:1291 msgid "Allow order to be closed with incomplete line items" msgstr "" -#: order/serializers.py:311 order/serializers.py:1245 +#: order/serializers.py:330 order/serializers.py:1301 msgid "Order has incomplete line items" msgstr "" -#: order/serializers.py:439 +#: order/serializers.py:468 msgid "Order is not open" msgstr "" -#: order/serializers.py:460 +#: order/serializers.py:489 #, fuzzy #| msgid "Part Pricing" msgid "Auto Pricing" msgstr "商品价格" -#: order/serializers.py:462 +#: order/serializers.py:491 msgid "Automatically calculate purchase price based on supplier part data" msgstr "" -#: order/serializers.py:472 +#: order/serializers.py:501 msgid "Purchase price currency" msgstr "" -#: order/serializers.py:478 +#: order/serializers.py:507 #, fuzzy #| msgid "Select Stock Items" msgid "Merge Items" msgstr "选择库存项" -#: order/serializers.py:480 +#: order/serializers.py:509 msgid "Merge items with the same part, destination and target date into one line item" msgstr "" -#: order/serializers.py:498 +#: order/serializers.py:522 part/models.py:945 +msgid "Internal Part Number" +msgstr "内部商品编号" + +#: order/serializers.py:530 +#, fuzzy +#| msgid "Internal Part Number" +msgid "Internal Part Name" +msgstr "内部商品编号" + +#: order/serializers.py:546 msgid "Supplier part must be specified" msgstr "" -#: order/serializers.py:501 +#: order/serializers.py:549 msgid "Purchase order must be specified" msgstr "" -#: order/serializers.py:509 +#: order/serializers.py:557 msgid "Supplier must match purchase order" msgstr "" -#: order/serializers.py:510 +#: order/serializers.py:558 msgid "Purchase order must match supplier" msgstr "" -#: order/serializers.py:549 order/serializers.py:1313 +#: order/serializers.py:598 order/serializers.py:1369 msgid "Line Item" msgstr "" -#: order/serializers.py:555 +#: order/serializers.py:604 msgid "Line item does not match purchase order" msgstr "" -#: order/serializers.py:565 order/serializers.py:673 order/serializers.py:1657 +#: order/serializers.py:614 order/serializers.py:722 order/serializers.py:1715 msgid "Select destination location for received items" msgstr "" -#: order/serializers.py:581 templates/js/translated/purchase_order.js:1130 +#: order/serializers.py:630 templates/js/translated/purchase_order.js:1130 msgid "Enter batch code for incoming stock items" msgstr "" -#: order/serializers.py:589 templates/js/translated/purchase_order.js:1154 +#: order/serializers.py:638 templates/js/translated/purchase_order.js:1154 msgid "Enter serial numbers for incoming stock items" msgstr "" -#: order/serializers.py:600 templates/js/translated/barcode.js:52 +#: order/serializers.py:649 templates/js/translated/barcode.js:52 msgid "Barcode" msgstr "条形码" -#: order/serializers.py:601 +#: order/serializers.py:650 #, fuzzy #| msgid "Scan Barcode" msgid "Scanned barcode" msgstr "扫描条形码" -#: order/serializers.py:617 +#: order/serializers.py:666 msgid "Barcode is already in use" msgstr "" -#: order/serializers.py:641 +#: order/serializers.py:690 msgid "An integer quantity must be provided for trackable parts" msgstr "" -#: order/serializers.py:689 order/serializers.py:1673 +#: order/serializers.py:738 order/serializers.py:1731 msgid "Line items must be provided" msgstr "" -#: order/serializers.py:705 +#: order/serializers.py:754 msgid "Destination location must be specified" msgstr "" -#: order/serializers.py:716 +#: order/serializers.py:765 msgid "Supplied barcode values must be unique" msgstr "" -#: order/serializers.py:1062 +#: order/serializers.py:1117 msgid "Sale price currency" msgstr "" -#: order/serializers.py:1122 +#: order/serializers.py:1178 msgid "No shipment details provided" msgstr "" -#: order/serializers.py:1183 order/serializers.py:1322 +#: order/serializers.py:1239 order/serializers.py:1378 msgid "Line item is not associated with this order" msgstr "" -#: order/serializers.py:1202 +#: order/serializers.py:1258 msgid "Quantity must be positive" msgstr "" -#: order/serializers.py:1332 +#: order/serializers.py:1388 msgid "Enter serial numbers to allocate" msgstr "" -#: order/serializers.py:1354 order/serializers.py:1460 +#: order/serializers.py:1410 order/serializers.py:1516 msgid "Shipment has already been shipped" msgstr "" -#: order/serializers.py:1357 order/serializers.py:1463 +#: order/serializers.py:1413 order/serializers.py:1519 msgid "Shipment is not associated with this order" msgstr "" -#: order/serializers.py:1404 +#: order/serializers.py:1460 msgid "No match found for the following serial numbers" msgstr "" -#: order/serializers.py:1411 +#: order/serializers.py:1467 msgid "The following serial numbers are already allocated" msgstr "" -#: order/serializers.py:1627 +#: order/serializers.py:1685 msgid "Return order line item" msgstr "" -#: order/serializers.py:1633 +#: order/serializers.py:1691 #, fuzzy #| msgid "Build output does not match Build Order" msgid "Line item does not match return order" msgstr "生产产出与订单不匹配" -#: order/serializers.py:1636 +#: order/serializers.py:1694 #, fuzzy #| msgid "This build output has already been completed" msgid "Line item has already been received" msgstr "此生产产出已经完成" -#: order/serializers.py:1665 +#: order/serializers.py:1723 msgid "Items can only be received against orders which are in progress" msgstr "" -#: order/serializers.py:1743 +#: order/serializers.py:1806 #, fuzzy #| msgid "Uses default currency" msgid "Line price currency" @@ -6023,7 +6463,7 @@ msgstr "" #: part/templates/part/part_pricing.html:58 #: part/templates/part/part_pricing.html:99 #: part/templates/part/part_pricing.html:114 -#: templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1076 #: templates/js/translated/purchase_order.js:1752 #: templates/js/translated/return_order.js:380 #: templates/js/translated/sales_order.js:891 @@ -6133,34 +6573,29 @@ msgstr "" msgid "Updated {part} unit-price to {price} and quantity to {qty}" msgstr "" -#: part/admin.py:39 part/admin.py:398 part/models.py:3944 part/stocktake.py:219 +#: part/admin.py:39 part/admin.py:398 part/models.py:3991 part/stocktake.py:219 #: stock/admin.py:152 msgid "Part ID" msgstr "商品ID" -#: part/admin.py:41 part/admin.py:405 part/models.py:3945 part/stocktake.py:220 -#: stock/admin.py:156 -msgid "Part Name" -msgstr "" - #: part/admin.py:45 part/stocktake.py:221 msgid "Part Description" msgstr "" -#: part/admin.py:48 part/models.py:940 part/templates/part/part_base.html:269 +#: part/admin.py:48 part/models.py:944 part/templates/part/part_base.html:269 #: report/templates/report/inventree_stock_location_report.html:103 -#: templates/js/translated/part.js:1227 templates/js/translated/part.js:2341 +#: templates/js/translated/part.js:1230 templates/js/translated/part.js:2344 #: templates/js/translated/stock.js:2036 msgid "IPN" msgstr "" -#: part/admin.py:50 part/models.py:949 part/templates/part/part_base.html:277 -#: report/models.py:162 templates/js/translated/part.js:1232 -#: templates/js/translated/part.js:2347 +#: part/admin.py:50 part/models.py:953 part/templates/part/part_base.html:277 +#: report/models.py:162 templates/js/translated/part.js:1235 +#: templates/js/translated/part.js:2350 msgid "Revision" msgstr "" -#: part/admin.py:53 part/admin.py:319 part/models.py:922 +#: part/admin.py:53 part/admin.py:319 part/models.py:926 #: part/templates/part/category.html:94 part/templates/part/part_base.html:298 msgid "Keywords" msgstr "关键词" @@ -6175,7 +6610,8 @@ msgstr "商品名称" msgid "Category ID" msgstr "类别 ID" -#: part/admin.py:67 part/admin.py:304 part/stocktake.py:223 +#: part/admin.py:67 part/admin.py:304 part/serializers.py:837 +#: part/stocktake.py:223 msgid "Category Name" msgstr "" @@ -6187,11 +6623,11 @@ msgstr "" msgid "Default Supplier ID" msgstr "" -#: part/admin.py:81 part/models.py:908 part/templates/part/part_base.html:177 +#: part/admin.py:81 part/models.py:912 part/templates/part/part_base.html:177 msgid "Variant Of" msgstr "" -#: part/admin.py:84 part/models.py:1036 part/templates/part/part_base.html:203 +#: part/admin.py:84 part/models.py:1040 part/templates/part/part_base.html:203 msgid "Minimum Stock" msgstr "最低库存" @@ -6199,18 +6635,19 @@ msgstr "最低库存" msgid "Used In" msgstr "" -#: part/admin.py:150 part/templates/part/part_base.html:241 stock/admin.py:235 -#: templates/js/translated/part.js:715 templates/js/translated/part.js:2153 +#: part/admin.py:150 part/serializers.py:854 +#: part/templates/part/part_base.html:241 stock/admin.py:235 +#: templates/js/translated/part.js:714 templates/js/translated/part.js:2156 msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3088 part/models.py:3102 -#: templates/js/translated/part.js:970 +#: part/admin.py:155 part/models.py:3098 part/models.py:3112 +#: templates/js/translated/part.js:973 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3095 part/models.py:3109 -#: templates/js/translated/part.js:980 +#: part/admin.py:158 part/models.py:3105 part/models.py:3119 +#: templates/js/translated/part.js:983 msgid "Maximum Cost" msgstr "" @@ -6227,14 +6664,14 @@ msgstr "" msgid "Category Path" msgstr "类别路径" -#: part/admin.py:325 part/models.py:396 part/serializers.py:124 -#: part/serializers.py:267 part/serializers.py:386 +#: part/admin.py:325 part/models.py:397 part/serializers.py:130 +#: part/serializers.py:282 part/serializers.py:404 #: part/templates/part/cat_link.html:3 part/templates/part/category.html:23 #: part/templates/part/category.html:141 part/templates/part/category.html:161 #: part/templates/part/category_sidebar.html:9 #: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 #: templates/InvenTree/settings/sidebar.html:47 -#: templates/js/translated/part.js:2804 templates/js/translated/search.js:130 +#: templates/js/translated/part.js:2807 templates/js/translated/search.js:130 #: templates/navbar.html:24 users/models.py:203 msgid "Parts" msgstr "商品" @@ -6251,137 +6688,129 @@ msgstr "" msgid "Parent IPN" msgstr "" -#: part/admin.py:402 part/models.py:3946 -msgid "Part IPN" -msgstr "" - -#: part/admin.py:415 part/serializers.py:1274 +#: part/admin.py:415 part/serializers.py:1302 #: templates/js/translated/pricing.js:358 #: templates/js/translated/pricing.js:1024 msgid "Minimum Price" msgstr "" -#: part/admin.py:420 part/serializers.py:1289 +#: part/admin.py:420 part/serializers.py:1317 #: templates/js/translated/pricing.js:353 #: templates/js/translated/pricing.js:1032 msgid "Maximum Price" msgstr "" -#: part/api.py:104 +#: part/api.py:105 msgid "Starred" msgstr "" -#: part/api.py:106 +#: part/api.py:107 msgid "Filter by starred categories" msgstr "" -#: part/api.py:123 stock/api.py:312 +#: part/api.py:124 stock/api.py:312 msgid "Depth" msgstr "" -#: part/api.py:123 +#: part/api.py:124 msgid "Filter by category depth" msgstr "" -#: part/api.py:141 stock/api.py:330 +#: part/api.py:142 stock/api.py:330 #, fuzzy #| msgid "Levels" msgid "Top Level" msgstr "等级" -#: part/api.py:143 +#: part/api.py:144 #, fuzzy #| msgid "Create new part category" msgid "Filter by top-level categories" msgstr "新建商品类别" -#: part/api.py:156 stock/api.py:345 +#: part/api.py:157 stock/api.py:345 msgid "Cascade" msgstr "" -#: part/api.py:158 +#: part/api.py:159 msgid "Include sub-categories in filtered results" msgstr "" -#: part/api.py:179 templates/js/translated/part.js:308 +#: part/api.py:180 templates/js/translated/part.js:307 #, fuzzy #| msgid "parent" msgid "Parent" msgstr "上级项" -#: part/api.py:181 +#: part/api.py:182 #, fuzzy #| msgid "Create new part category" msgid "Filter by parent category" msgstr "新建商品类别" -#: part/api.py:214 +#: part/api.py:215 msgid "Exclude Tree" msgstr "" -#: part/api.py:216 +#: part/api.py:217 #, fuzzy #| msgid "Exclude stock items from this selected location" msgid "Exclude sub-categories under the specified category" msgstr "从该选定的仓储地点排除库存项" -#: part/api.py:449 +#: part/api.py:442 #, fuzzy #| msgid "Units" msgid "Has Results" msgstr "单位" -#: part/api.py:616 +#: part/api.py:609 msgid "Incoming Purchase Order" msgstr "" -#: part/api.py:634 +#: part/api.py:627 msgid "Outgoing Sales Order" msgstr "" -#: part/api.py:650 +#: part/api.py:643 msgid "Stock produced by Build Order" msgstr "" -#: part/api.py:734 +#: part/api.py:727 msgid "Stock required for Build Order" msgstr "" -#: part/api.py:881 -msgid "Valid" -msgstr "" - -#: part/api.py:882 +#: part/api.py:875 msgid "Validate entire Bill of Materials" msgstr "" -#: part/api.py:888 +#: part/api.py:881 msgid "This option must be selected" msgstr "" -#: part/api.py:1105 +#: part/api.py:1098 msgid "BOM Valid" msgstr "" -#: part/api.py:1508 part/models.py:932 part/models.py:3374 part/models.py:3889 -#: part/serializers.py:401 part/serializers.py:1130 -#: part/templates/part/part_base.html:260 stock/api.py:791 +#: part/api.py:1494 part/models.py:936 part/models.py:3385 part/models.py:3936 +#: part/serializers.py:419 part/serializers.py:1158 +#: part/templates/part/part_base.html:260 stock/api.py:783 #: templates/InvenTree/settings/settings_staff_js.html:300 #: templates/js/translated/notification.js:60 -#: templates/js/translated/part.js:2377 +#: templates/js/translated/part.js:2380 msgid "Category" msgstr "类别" -#: part/api.py:1796 +#: part/api.py:1784 msgid "Uses" msgstr "" -#: part/bom.py:170 part/models.py:104 part/models.py:975 +#: part/bom.py:170 part/models.py:104 part/models.py:979 #: part/templates/part/category.html:116 part/templates/part/part_base.html:367 msgid "Default Location" msgstr "默认仓储地点" -#: part/bom.py:171 part/serializers.py:833 +#: part/bom.py:171 part/serializers.py:861 #: templates/email/low_stock_notification.html:16 msgid "Total Stock" msgstr "" @@ -6390,7 +6819,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:85 part/models.py:3890 part/templates/part/category.html:16 +#: part/models.py:85 part/models.py:3937 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "商品类别" @@ -6405,7 +6834,7 @@ msgstr "商品类别" msgid "Default location for parts in this category" msgstr "此类别商品的默认仓储地点" -#: part/models.py:110 stock/models.py:174 templates/js/translated/part.js:2810 +#: part/models.py:110 stock/models.py:175 templates/js/translated/part.js:2813 #: templates/js/translated/stock.js:2772 #: templates/js/translated/table_filters.js:239 #: templates/js/translated/table_filters.js:283 @@ -6424,12 +6853,12 @@ msgstr "" msgid "Default keywords for parts in this category" msgstr "此类别商品的默认关键字" -#: part/models.py:128 stock/models.py:86 stock/models.py:157 +#: part/models.py:128 stock/models.py:87 stock/models.py:158 #: templates/InvenTree/settings/settings_staff_js.html:456 msgid "Icon" msgstr "" -#: part/models.py:129 stock/models.py:158 +#: part/models.py:129 stock/models.py:159 msgid "Icon (optional)" msgstr "" @@ -6437,1041 +6866,1088 @@ msgstr "" msgid "You cannot make this part category structural because some parts are already assigned to it!" msgstr "" -#: part/models.py:485 +#: part/models.py:486 +#, fuzzy +#| msgid "Print actions" +msgid "Cannot delete this part as it is locked" +msgstr "打印操作" + +#: part/models.py:489 #, fuzzy #| msgid "Print actions" msgid "Cannot delete this part as it is still active" msgstr "打印操作" -#: part/models.py:490 +#: part/models.py:494 msgid "Cannot delete this part as it is used in an assembly" msgstr "" -#: part/models.py:528 +#: part/models.py:532 msgid "Invalid choice for parent part" msgstr "" -#: part/models.py:576 part/models.py:583 +#: part/models.py:580 part/models.py:587 #, python-brace-format msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" msgstr "" -#: part/models.py:595 +#: part/models.py:599 #, python-brace-format msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" msgstr "" -#: part/models.py:658 +#: part/models.py:662 #, fuzzy, python-brace-format #| msgid "IPN must match regex pattern {pat}" msgid "IPN must match regex pattern {pattern}" msgstr "IPN 必须匹配正则表达式 {pat}" -#: part/models.py:736 +#: part/models.py:740 msgid "Stock item with this serial number already exists" msgstr "" -#: part/models.py:837 +#: part/models.py:841 msgid "Duplicate IPN not allowed in part settings" msgstr "在商品设置中不允许重复的IPN" -#: part/models.py:847 +#: part/models.py:851 msgid "Part with this Name, IPN and Revision already exists." msgstr "" -#: part/models.py:862 +#: part/models.py:866 msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:891 part/models.py:3945 +#: part/models.py:895 part/models.py:3992 msgid "Part name" msgstr "商品名称" -#: part/models.py:896 +#: part/models.py:900 msgid "Is Template" msgstr "" -#: part/models.py:897 +#: part/models.py:901 msgid "Is this part a template part?" msgstr "" -#: part/models.py:907 +#: part/models.py:911 msgid "Is this part a variant of another part?" msgstr "" -#: part/models.py:915 +#: part/models.py:919 #, fuzzy #| msgid "Description (optional)" msgid "Part description (optional)" msgstr "描述 (可选)" -#: part/models.py:923 +#: part/models.py:927 msgid "Part keywords to improve visibility in search results" msgstr "提高搜索结果可见性的关键字" -#: part/models.py:933 +#: part/models.py:937 msgid "Part category" msgstr "商品类别" -#: part/models.py:941 -msgid "Internal Part Number" -msgstr "内部商品编号" - -#: part/models.py:948 +#: part/models.py:952 msgid "Part revision or version number" msgstr "商品版本号" -#: part/models.py:973 +#: part/models.py:977 msgid "Where is this item normally stored?" msgstr "" -#: part/models.py:1019 part/templates/part/part_base.html:376 +#: part/models.py:1023 part/templates/part/part_base.html:376 msgid "Default Supplier" msgstr "" -#: part/models.py:1020 +#: part/models.py:1024 msgid "Default supplier part" msgstr "默认供应商商品" -#: part/models.py:1027 +#: part/models.py:1031 msgid "Default Expiry" msgstr "" -#: part/models.py:1028 +#: part/models.py:1032 msgid "Expiry time (in days) for stock items of this part" msgstr "" -#: part/models.py:1037 +#: part/models.py:1041 msgid "Minimum allowed stock level" msgstr "" -#: part/models.py:1046 +#: part/models.py:1050 msgid "Units of measure for this part" msgstr "" -#: part/models.py:1053 +#: part/models.py:1057 msgid "Can this part be built from other parts?" msgstr "" -#: part/models.py:1059 +#: part/models.py:1063 msgid "Can this part be used to build other parts?" msgstr "" -#: part/models.py:1065 +#: part/models.py:1069 msgid "Does this part have tracking for unique items?" msgstr "" -#: part/models.py:1071 +#: part/models.py:1075 msgid "Can this part be purchased from external suppliers?" msgstr "" -#: part/models.py:1077 +#: part/models.py:1081 msgid "Can this part be sold to customers?" msgstr "此商品可以销售给客户吗?" -#: part/models.py:1081 +#: part/models.py:1085 msgid "Is this part active?" msgstr "" -#: part/models.py:1087 +#: part/models.py:1090 templates/js/translated/part.js:818 +#: templates/js/translated/table_filters.js:721 +#, fuzzy +#| msgid "Stock Item" +msgid "Locked" +msgstr "库存项" + +#: part/models.py:1091 +#, fuzzy +#| msgid "Order cannot be cancelled" +msgid "Locked parts cannot be edited" +msgstr "无法取消订单" + +#: part/models.py:1097 msgid "Is this a virtual part, such as a software product or license?" msgstr "这是一个虚拟商品,如软件产品或许可证吗?" -#: part/models.py:1093 +#: part/models.py:1103 msgid "BOM checksum" msgstr "" -#: part/models.py:1094 +#: part/models.py:1104 msgid "Stored BOM checksum" msgstr "" -#: part/models.py:1102 +#: part/models.py:1112 msgid "BOM checked by" msgstr "" -#: part/models.py:1107 +#: part/models.py:1117 msgid "BOM checked date" msgstr "" -#: part/models.py:1123 +#: part/models.py:1133 msgid "Creation User" msgstr "新建用户" -#: part/models.py:1133 +#: part/models.py:1143 #, fuzzy #| msgid "User or group responsible for this order" msgid "Owner responsible for this part" msgstr "负责此订单的用户或群组" -#: part/models.py:1138 part/templates/part/part_base.html:339 +#: part/models.py:1148 part/templates/part/part_base.html:339 #: stock/templates/stock/item_base.html:451 -#: templates/js/translated/part.js:2471 +#: templates/js/translated/part.js:2474 msgid "Last Stocktake" msgstr "" -#: part/models.py:2011 +#: part/models.py:2021 msgid "Sell multiple" msgstr "" -#: part/models.py:3002 +#: part/models.py:3012 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3018 +#: part/models.py:3028 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3019 +#: part/models.py:3029 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3025 +#: part/models.py:3035 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3026 +#: part/models.py:3036 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3032 +#: part/models.py:3042 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3033 +#: part/models.py:3043 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3039 +#: part/models.py:3049 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3040 +#: part/models.py:3050 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3046 +#: part/models.py:3056 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3047 +#: part/models.py:3057 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3053 +#: part/models.py:3063 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3054 +#: part/models.py:3064 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3060 +#: part/models.py:3070 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3061 +#: part/models.py:3071 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3067 +#: part/models.py:3077 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3068 +#: part/models.py:3078 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3074 +#: part/models.py:3084 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3075 +#: part/models.py:3085 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3081 +#: part/models.py:3091 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3082 +#: part/models.py:3092 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3089 +#: part/models.py:3099 msgid "Override minimum cost" msgstr "" -#: part/models.py:3096 +#: part/models.py:3106 msgid "Override maximum cost" msgstr "" -#: part/models.py:3103 +#: part/models.py:3113 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3110 +#: part/models.py:3120 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3116 +#: part/models.py:3126 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3117 +#: part/models.py:3127 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3123 +#: part/models.py:3133 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3124 +#: part/models.py:3134 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3130 +#: part/models.py:3140 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3131 +#: part/models.py:3141 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3137 +#: part/models.py:3147 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3138 +#: part/models.py:3148 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3157 +#: part/models.py:3167 msgid "Part for stocktake" msgstr "" -#: part/models.py:3162 +#: part/models.py:3172 msgid "Item Count" msgstr "" -#: part/models.py:3163 +#: part/models.py:3173 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3171 +#: part/models.py:3181 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3175 part/models.py:3258 +#: part/models.py:3185 part/models.py:3268 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 #: templates/InvenTree/settings/settings_staff_js.html:540 -#: templates/js/translated/part.js:1086 templates/js/translated/pricing.js:826 +#: templates/js/translated/part.js:1089 templates/js/translated/pricing.js:826 #: templates/js/translated/pricing.js:950 #: templates/js/translated/purchase_order.js:1731 #: templates/js/translated/stock.js:2821 msgid "Date" msgstr "" -#: part/models.py:3176 +#: part/models.py:3186 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3184 +#: part/models.py:3194 msgid "Additional notes" msgstr "" -#: part/models.py:3194 +#: part/models.py:3204 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3200 +#: part/models.py:3210 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3211 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3207 +#: part/models.py:3217 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3218 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3264 templates/InvenTree/settings/settings_staff_js.html:529 +#: part/models.py:3274 templates/InvenTree/settings/settings_staff_js.html:529 msgid "Report" msgstr "" -#: part/models.py:3265 +#: part/models.py:3275 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3270 templates/InvenTree/settings/settings_staff_js.html:536 +#: part/models.py:3280 templates/InvenTree/settings/settings_staff_js.html:536 msgid "Part Count" msgstr "" -#: part/models.py:3271 +#: part/models.py:3281 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3281 +#: part/models.py:3291 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3423 +#: part/models.py:3301 +#, fuzzy +#| msgid "Sale Price" +msgid "Part Sale Price Break" +msgstr "销售价格" + +#: part/models.py:3413 +#, fuzzy +#| msgid "Parameter Template" +msgid "Part Test Template" +msgstr "参数模板" + +#: part/models.py:3439 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3444 part/models.py:3608 +#: part/models.py:3460 part/models.py:3629 #, fuzzy #| msgid "Key string must be unique" msgid "Choices must be unique" msgstr "关键字必须是唯一的" -#: part/models.py:3455 +#: part/models.py:3471 msgid "Test templates can only be created for trackable parts" msgstr "" -#: part/models.py:3466 +#: part/models.py:3482 #, fuzzy #| msgid "Attachment with this filename already exists" msgid "Test template with the same key already exists for part" msgstr "使用此文件名的附件已存在" -#: part/models.py:3483 templates/js/translated/part.js:2880 +#: part/models.py:3499 templates/js/translated/part.js:2883 msgid "Test Name" msgstr "" -#: part/models.py:3484 +#: part/models.py:3500 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3490 +#: part/models.py:3506 msgid "Test Key" msgstr "" -#: part/models.py:3491 +#: part/models.py:3507 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3498 +#: part/models.py:3514 msgid "Test Description" msgstr "" -#: part/models.py:3499 +#: part/models.py:3515 msgid "Enter description for this test" msgstr "" -#: part/models.py:3503 report/models.py:209 -#: templates/js/translated/part.js:2901 +#: part/models.py:3519 report/models.py:209 +#: templates/js/translated/part.js:2904 #: templates/js/translated/table_filters.js:481 msgid "Enabled" msgstr "已启用" -#: part/models.py:3503 +#: part/models.py:3519 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3508 templates/js/translated/part.js:2909 +#: part/models.py:3524 templates/js/translated/part.js:2912 #: templates/js/translated/table_filters.js:477 msgid "Required" msgstr "" -#: part/models.py:3509 +#: part/models.py:3525 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3514 templates/js/translated/part.js:2917 +#: part/models.py:3530 templates/js/translated/part.js:2920 msgid "Requires Value" msgstr "" -#: part/models.py:3515 +#: part/models.py:3531 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3520 templates/js/translated/part.js:2924 +#: part/models.py:3536 templates/js/translated/part.js:2927 msgid "Requires Attachment" msgstr "" -#: part/models.py:3522 +#: part/models.py:3538 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3528 part/models.py:3667 templates/js/translated/part.js:1637 +#: part/models.py:3544 part/models.py:3688 templates/js/translated/part.js:1640 msgid "Choices" msgstr "" -#: part/models.py:3529 +#: part/models.py:3545 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3583 +#: part/models.py:3577 +#, fuzzy +#| msgid "Part Parameter Templates" +msgid "Part Parameter Template" +msgstr "商品参数模板" + +#: part/models.py:3604 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3588 +#: part/models.py:3609 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3625 +#: part/models.py:3646 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3640 +#: part/models.py:3661 msgid "Parameter Name" msgstr "" -#: part/models.py:3647 +#: part/models.py:3668 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3655 +#: part/models.py:3676 msgid "Parameter description" msgstr "" -#: part/models.py:3661 templates/js/translated/part.js:1628 -#: templates/js/translated/table_filters.js:825 +#: part/models.py:3682 templates/js/translated/part.js:1631 +#: templates/js/translated/table_filters.js:830 msgid "Checkbox" msgstr "" -#: part/models.py:3662 +#: part/models.py:3683 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3668 +#: part/models.py:3689 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3745 +#: part/models.py:3723 +#, fuzzy +#| msgid "Part Parameters" +msgid "Part Parameter" +msgstr "商品参数" + +#: part/models.py:3749 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3785 #, fuzzy #| msgid "Invalid choice for parent build" msgid "Invalid choice for parameter value" msgstr "上级生产选项无效" -#: part/models.py:3788 +#: part/models.py:3828 msgid "Parent Part" msgstr "" -#: part/models.py:3796 part/models.py:3897 part/models.py:3898 +#: part/models.py:3836 part/models.py:3944 part/models.py:3945 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "参数模板" -#: part/models.py:3801 -msgid "Data" -msgstr "" - -#: part/models.py:3802 +#: part/models.py:3842 msgid "Parameter Value" msgstr "" -#: part/models.py:3904 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:3892 +#, fuzzy +#| msgid "Create Category Parameter Template" +msgid "Part Category Parameter Template" +msgstr "创建类别参数模板" + +#: part/models.py:3951 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "默认值" -#: part/models.py:3905 +#: part/models.py:3952 msgid "Default Parameter Value" msgstr "" -#: part/models.py:3943 +#: part/models.py:3990 msgid "Part ID or part name" msgstr "" -#: part/models.py:3944 +#: part/models.py:3991 msgid "Unique part ID value" msgstr "" -#: part/models.py:3946 +#: part/models.py:3993 msgid "Part IPN value" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "Level" msgstr "" -#: part/models.py:3947 +#: part/models.py:3994 msgid "BOM level" msgstr "" -#: part/models.py:4037 +#: part/models.py:4105 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4112 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4122 msgid "Select parent part" msgstr "" -#: part/models.py:4047 +#: part/models.py:4132 msgid "Sub part" msgstr "" -#: part/models.py:4048 +#: part/models.py:4133 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4059 +#: part/models.py:4144 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4065 +#: part/models.py:4150 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4071 +#: part/models.py:4156 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4078 part/templates/part/upload_bom.html:55 +#: part/models.py:4163 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4079 +#: part/models.py:4164 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4086 +#: part/models.py:4171 msgid "BOM item reference" msgstr "" -#: part/models.py:4094 +#: part/models.py:4179 msgid "BOM item notes" msgstr "" -#: part/models.py:4100 +#: part/models.py:4185 msgid "Checksum" msgstr "" -#: part/models.py:4101 +#: part/models.py:4186 msgid "BOM line checksum" msgstr "" -#: part/models.py:4106 templates/js/translated/table_filters.js:174 +#: part/models.py:4191 templates/js/translated/table_filters.js:174 msgid "Validated" msgstr "" -#: part/models.py:4107 +#: part/models.py:4192 #, fuzzy #| msgid "Some stock items have been overallocated" msgid "This BOM item has been validated" msgstr "一些库存项已被过度分配" -#: part/models.py:4112 part/templates/part/upload_bom.html:57 +#: part/models.py:4197 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:178 #: templates/js/translated/table_filters.js:211 msgid "Gets inherited" msgstr "" -#: part/models.py:4113 +#: part/models.py:4198 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4118 part/templates/part/upload_bom.html:56 +#: part/models.py:4203 part/templates/part/upload_bom.html:56 #: templates/js/translated/bom.js:1046 msgid "Allow Variants" msgstr "" -#: part/models.py:4119 +#: part/models.py:4204 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4204 stock/models.py:662 +#: part/models.py:4289 stock/models.py:663 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4214 part/models.py:4216 +#: part/models.py:4299 part/models.py:4301 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4354 +#: part/models.py:4439 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4375 +#: part/models.py:4460 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4388 +#: part/models.py:4473 msgid "Parent BOM item" msgstr "" -#: part/models.py:4396 +#: part/models.py:4481 msgid "Substitute part" msgstr "" -#: part/models.py:4412 +#: part/models.py:4497 msgid "Part 1" msgstr "" -#: part/models.py:4420 +#: part/models.py:4505 msgid "Part 2" msgstr "" -#: part/models.py:4421 +#: part/models.py:4506 msgid "Select Related Part" msgstr "" -#: part/models.py:4440 +#: part/models.py:4525 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4445 +#: part/models.py:4530 msgid "Duplicate relationship already exists" msgstr "" -#: part/serializers.py:118 +#: part/serializers.py:124 #, fuzzy #| msgid "Part Category" msgid "Parent Category" msgstr "商品类别" -#: part/serializers.py:119 templates/js/translated/part.js:309 +#: part/serializers.py:125 templates/js/translated/part.js:308 msgid "Parent part category" msgstr "" -#: part/serializers.py:126 part/serializers.py:148 +#: part/serializers.py:132 part/serializers.py:154 #: part/templates/part/category.html:122 part/templates/part/category.html:207 #: part/templates/part/category_sidebar.html:7 msgid "Subcategories" msgstr "子类别" -#: part/serializers.py:180 +#: part/serializers.py:189 msgid "Results" msgstr "" -#: part/serializers.py:181 +#: part/serializers.py:190 msgid "Number of results recorded against this template" msgstr "" -#: part/serializers.py:205 part/serializers.py:223 stock/serializers.py:562 +#: part/serializers.py:217 part/serializers.py:235 stock/serializers.py:608 msgid "Purchase currency of this stock item" msgstr "" -#: part/serializers.py:268 +#: part/serializers.py:283 msgid "Number of parts using this template" msgstr "" -#: part/serializers.py:392 +#: part/serializers.py:410 #, fuzzy #| msgid "Rejected" msgid "No parts selected" msgstr "已拒绝" -#: part/serializers.py:402 +#: part/serializers.py:420 #, fuzzy #| msgid "Set category" msgid "Select category" msgstr "设置类别" -#: part/serializers.py:437 +#: part/serializers.py:455 msgid "Original Part" msgstr "" -#: part/serializers.py:438 +#: part/serializers.py:456 msgid "Select original part to duplicate" msgstr "" -#: part/serializers.py:443 +#: part/serializers.py:461 msgid "Copy Image" msgstr "" -#: part/serializers.py:444 +#: part/serializers.py:462 msgid "Copy image from original part" msgstr "" -#: part/serializers.py:450 part/templates/part/detail.html:277 +#: part/serializers.py:468 part/templates/part/detail.html:277 msgid "Copy BOM" msgstr "" -#: part/serializers.py:451 +#: part/serializers.py:469 msgid "Copy bill of materials from original part" msgstr "" -#: part/serializers.py:457 +#: part/serializers.py:475 msgid "Copy Parameters" msgstr "" -#: part/serializers.py:458 +#: part/serializers.py:476 msgid "Copy parameter data from original part" msgstr "" -#: part/serializers.py:464 +#: part/serializers.py:482 #, fuzzy #| msgid "Company Notes" msgid "Copy Notes" msgstr "公司备注" -#: part/serializers.py:465 +#: part/serializers.py:483 msgid "Copy notes from original part" msgstr "" -#: part/serializers.py:483 +#: part/serializers.py:501 msgid "Initial Stock Quantity" msgstr "" -#: part/serializers.py:485 +#: part/serializers.py:503 msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." msgstr "" -#: part/serializers.py:492 +#: part/serializers.py:510 msgid "Initial Stock Location" msgstr "" -#: part/serializers.py:493 +#: part/serializers.py:511 msgid "Specify initial stock location for this Part" msgstr "" -#: part/serializers.py:510 +#: part/serializers.py:528 msgid "Select supplier (or leave blank to skip)" msgstr "" -#: part/serializers.py:526 +#: part/serializers.py:544 msgid "Select manufacturer (or leave blank to skip)" msgstr "" -#: part/serializers.py:536 +#: part/serializers.py:554 msgid "Manufacturer part number" msgstr "" -#: part/serializers.py:543 +#: part/serializers.py:561 msgid "Selected company is not a valid supplier" msgstr "" -#: part/serializers.py:552 +#: part/serializers.py:570 msgid "Selected company is not a valid manufacturer" msgstr "" -#: part/serializers.py:563 +#: part/serializers.py:581 msgid "Manufacturer part matching this MPN already exists" msgstr "" -#: part/serializers.py:570 +#: part/serializers.py:588 msgid "Supplier part matching this SKU already exists" msgstr "" -#: part/serializers.py:834 -#, fuzzy -#| msgid "External Link" -msgid "External Stock" -msgstr "外部链接" - -#: part/serializers.py:836 +#: part/serializers.py:864 #, fuzzy #| msgid "Unallocate Stock" msgid "Unallocated Stock" msgstr "未分配库存" -#: part/serializers.py:839 +#: part/serializers.py:867 #, fuzzy #| msgid "Part Stock" msgid "Variant Stock" msgstr "商品库存" -#: part/serializers.py:869 part/templates/part/copy_part.html:9 -#: templates/js/translated/part.js:472 +#: part/serializers.py:897 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:471 msgid "Duplicate Part" msgstr "复制部件" -#: part/serializers.py:870 +#: part/serializers.py:898 msgid "Copy initial data from another Part" msgstr "" -#: part/serializers.py:876 templates/js/translated/part.js:102 +#: part/serializers.py:904 templates/js/translated/part.js:102 msgid "Initial Stock" msgstr "" -#: part/serializers.py:877 +#: part/serializers.py:905 msgid "Create Part with initial stock quantity" msgstr "" -#: part/serializers.py:883 +#: part/serializers.py:911 msgid "Supplier Information" msgstr "" -#: part/serializers.py:884 +#: part/serializers.py:912 msgid "Add initial supplier information for this part" msgstr "" -#: part/serializers.py:892 +#: part/serializers.py:920 msgid "Copy Category Parameters" msgstr "复制类别参数" -#: part/serializers.py:893 +#: part/serializers.py:921 msgid "Copy parameter templates from selected part category" msgstr "" -#: part/serializers.py:898 +#: part/serializers.py:926 #, fuzzy #| msgid "Existing barcode found" msgid "Existing Image" msgstr "发现现有条码" -#: part/serializers.py:899 +#: part/serializers.py:927 msgid "Filename of an existing part image" msgstr "" -#: part/serializers.py:916 +#: part/serializers.py:944 #, fuzzy #| msgid "Part image not found" msgid "Image file does not exist" msgstr "未找到商品图像" -#: part/serializers.py:1122 +#: part/serializers.py:1150 msgid "Limit stocktake report to a particular part, and any variant parts" msgstr "" -#: part/serializers.py:1132 +#: part/serializers.py:1160 msgid "Limit stocktake report to a particular part category, and any child categories" msgstr "" -#: part/serializers.py:1142 +#: part/serializers.py:1170 msgid "Limit stocktake report to a particular stock location, and any child locations" msgstr "" -#: part/serializers.py:1148 +#: part/serializers.py:1176 msgid "Exclude External Stock" msgstr "" -#: part/serializers.py:1149 +#: part/serializers.py:1177 #, fuzzy #| msgid "Exclude stock items from this selected location" msgid "Exclude stock items in external locations" msgstr "从该选定的仓储地点排除库存项" -#: part/serializers.py:1154 +#: part/serializers.py:1182 msgid "Generate Report" msgstr "" -#: part/serializers.py:1155 +#: part/serializers.py:1183 msgid "Generate report file containing calculated stocktake data" msgstr "" -#: part/serializers.py:1160 +#: part/serializers.py:1188 msgid "Update Parts" msgstr "" -#: part/serializers.py:1161 +#: part/serializers.py:1189 msgid "Update specified parts with calculated stocktake data" msgstr "" -#: part/serializers.py:1169 +#: part/serializers.py:1197 msgid "Stocktake functionality is not enabled" msgstr "" -#: part/serializers.py:1275 +#: part/serializers.py:1303 msgid "Override calculated value for minimum price" msgstr "" -#: part/serializers.py:1282 +#: part/serializers.py:1310 #, fuzzy #| msgid "Uses default currency" msgid "Minimum price currency" msgstr "使用默认货币" -#: part/serializers.py:1290 +#: part/serializers.py:1318 msgid "Override calculated value for maximum price" msgstr "" -#: part/serializers.py:1297 +#: part/serializers.py:1325 #, fuzzy #| msgid "Uses default currency" msgid "Maximum price currency" msgstr "使用默认货币" -#: part/serializers.py:1326 +#: part/serializers.py:1354 msgid "Update" msgstr "" -#: part/serializers.py:1327 +#: part/serializers.py:1355 msgid "Update pricing for this part" msgstr "" -#: part/serializers.py:1350 +#: part/serializers.py:1378 #, python-brace-format msgid "Could not convert from provided currencies to {default_currency}" msgstr "" -#: part/serializers.py:1357 +#: part/serializers.py:1385 msgid "Minimum price must not be greater than maximum price" msgstr "" -#: part/serializers.py:1360 +#: part/serializers.py:1388 msgid "Maximum price must not be less than minimum price" msgstr "" -#: part/serializers.py:1727 +#: part/serializers.py:1759 msgid "Select part to copy BOM from" msgstr "" -#: part/serializers.py:1735 +#: part/serializers.py:1767 msgid "Remove Existing Data" msgstr "" -#: part/serializers.py:1736 +#: part/serializers.py:1768 msgid "Remove existing BOM items before copying" msgstr "" -#: part/serializers.py:1741 +#: part/serializers.py:1773 msgid "Include Inherited" msgstr "" -#: part/serializers.py:1742 +#: part/serializers.py:1774 msgid "Include BOM items which are inherited from templated parts" msgstr "" -#: part/serializers.py:1747 +#: part/serializers.py:1779 msgid "Skip Invalid Rows" msgstr "" -#: part/serializers.py:1748 +#: part/serializers.py:1780 msgid "Enable this option to skip invalid rows" msgstr "" -#: part/serializers.py:1753 +#: part/serializers.py:1785 msgid "Copy Substitute Parts" msgstr "" -#: part/serializers.py:1754 +#: part/serializers.py:1786 msgid "Copy substitute parts when duplicate BOM items" msgstr "" -#: part/serializers.py:1788 +#: part/serializers.py:1823 msgid "Clear Existing BOM" msgstr "" -#: part/serializers.py:1789 +#: part/serializers.py:1824 msgid "Delete existing BOM items before uploading" msgstr "" -#: part/serializers.py:1819 +#: part/serializers.py:1856 msgid "No part column specified" msgstr "" -#: part/serializers.py:1863 +#: part/serializers.py:1900 msgid "Multiple matching parts found" msgstr "" -#: part/serializers.py:1866 +#: part/serializers.py:1903 msgid "No matching part found" msgstr "" -#: part/serializers.py:1869 +#: part/serializers.py:1906 msgid "Part is not designated as a component" msgstr "" -#: part/serializers.py:1878 +#: part/serializers.py:1915 msgid "Quantity not provided" msgstr "" -#: part/serializers.py:1886 +#: part/serializers.py:1923 msgid "Invalid quantity" msgstr "" -#: part/serializers.py:1907 +#: part/serializers.py:1946 msgid "At least one BOM item is required" msgstr "" -#: part/stocktake.py:225 templates/js/translated/part.js:1067 -#: templates/js/translated/part.js:1822 templates/js/translated/part.js:1878 +#: part/stocktake.py:225 templates/js/translated/part.js:1070 +#: templates/js/translated/part.js:1825 templates/js/translated/part.js:1881 #: templates/js/translated/purchase_order.js:2084 msgid "Total Quantity" msgstr "" @@ -7793,7 +8269,7 @@ msgstr "" #: part/templates/part/part_base.html:52 #: stock/templates/stock/item_base.html:62 -#: stock/templates/stock/location.html:74 templates/js/translated/label.js:143 +#: stock/templates/stock/location.html:74 templates/js/translated/label.js:136 msgid "Print Label" msgstr "打印标签" @@ -7815,7 +8291,7 @@ msgstr "清点商品库存" msgid "Transfer part stock" msgstr "" -#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2293 +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2296 msgid "Part actions" msgstr "" @@ -7889,7 +8365,7 @@ msgid "Minimum stock level" msgstr "" #: part/templates/part/part_base.html:322 templates/js/translated/bom.js:1071 -#: templates/js/translated/part.js:1265 templates/js/translated/part.js:2444 +#: templates/js/translated/part.js:1268 templates/js/translated/part.js:2447 #: templates/js/translated/pricing.js:391 #: templates/js/translated/pricing.js:1054 msgid "Price Range" @@ -7982,8 +8458,8 @@ msgstr "" #: stock/templates/stock/stock_app_base.html:10 #: templates/InvenTree/search.html:153 #: templates/InvenTree/settings/sidebar.html:51 -#: templates/js/translated/part.js:1243 templates/js/translated/part.js:2146 -#: templates/js/translated/part.js:2392 templates/js/translated/stock.js:1059 +#: templates/js/translated/part.js:1246 templates/js/translated/part.js:2149 +#: templates/js/translated/part.js:2395 templates/js/translated/stock.js:1059 #: templates/js/translated/stock.js:2070 templates/navbar.html:31 msgid "Stock" msgstr "库存" @@ -8109,8 +8585,8 @@ msgstr "商品价格" #: part/templates/part/stock_count.html:7 #: templates/js/translated/model_renderers.js:227 -#: templates/js/translated/part.js:705 templates/js/translated/part.js:2141 -#: templates/js/translated/part.js:2143 +#: templates/js/translated/part.js:704 templates/js/translated/part.js:2144 +#: templates/js/translated/part.js:2146 msgid "No Stock" msgstr "" @@ -8272,7 +8748,7 @@ msgstr "" msgid "Stock item does not match line item" msgstr "在BOM中找不到选定的库存项" -#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2589 +#: plugin/base/barcodes/api.py:550 templates/js/translated/build.js:2590 #: templates/js/translated/sales_order.js:1953 msgid "Insufficient stock available" msgstr "" @@ -8399,7 +8875,7 @@ msgstr "此生产产出已经完成" msgid "Quantity to allocate" msgstr "分配到生产的数量" -#: plugin/base/label/label.py:39 templates/js/translated/label.js:155 +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 msgid "Label printing failed" msgstr "" @@ -9192,8 +9668,8 @@ msgid "Total" msgstr "" #: report/templates/report/inventree_return_order_report.html:25 -#: report/templates/report/inventree_test_report.html:88 stock/models.py:824 -#: stock/serializers.py:149 stock/templates/stock/item_base.html:311 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:825 +#: stock/serializers.py:151 stock/templates/stock/item_base.html:311 #: templates/js/translated/build.js:519 templates/js/translated/build.js:1367 #: templates/js/translated/build.js:2355 #: templates/js/translated/model_renderers.js:230 @@ -9225,7 +9701,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2412 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2457 msgid "Result" msgstr "" @@ -9248,7 +9724,7 @@ msgid "No result" msgstr "" #: report/templates/report/inventree_test_report.html:153 -#: stock/templates/stock/stock_sidebar.html:16 +#: stock/serializers.py:591 stock/templates/stock/stock_sidebar.html:16 msgid "Installed Items" msgstr "" @@ -9280,10 +9756,6 @@ msgstr "" msgid "Location ID" msgstr "" -#: stock/admin.py:53 stock/admin.py:175 -msgid "Location Name" -msgstr "" - #: stock/admin.py:63 stock/templates/stock/location.html:131 #: stock/templates/stock/location.html:137 msgid "Location Path" @@ -9321,7 +9793,7 @@ msgstr "" msgid "Customer ID" msgstr "" -#: stock/admin.py:205 stock/models.py:804 +#: stock/admin.py:205 stock/models.py:805 #: stock/templates/stock/item_base.html:354 msgid "Installed In" msgstr "" @@ -9348,7 +9820,7 @@ msgstr "" msgid "Delete on Deplete" msgstr "删除模板" -#: stock/admin.py:260 stock/models.py:898 +#: stock/admin.py:260 stock/models.py:899 #: stock/templates/stock/item_base.html:433 #: templates/js/translated/stock.js:2230 users/models.py:124 msgid "Expiry Date" @@ -9370,7 +9842,7 @@ msgstr "删除仓储地" msgid "Include sub-locations in filtered results" msgstr "" -#: stock/api.py:369 stock/serializers.py:1085 +#: stock/api.py:369 stock/serializers.py:1148 #, fuzzy #| msgid "Print actions" msgid "Parent Location" @@ -9382,642 +9854,699 @@ msgstr "打印操作" msgid "Filter by parent location" msgstr "删除仓储地" -#: stock/api.py:625 templates/js/translated/table_filters.js:427 +#: stock/api.py:617 templates/js/translated/table_filters.js:427 msgid "External Location" msgstr "" -#: stock/api.py:813 +#: stock/api.py:805 #, fuzzy #| msgid "Part name" msgid "Part Tree" msgstr "商品名称" -#: stock/api.py:843 +#: stock/api.py:835 msgid "Expiry date before" msgstr "" -#: stock/api.py:847 +#: stock/api.py:839 msgid "Expiry date after" msgstr "" -#: stock/api.py:850 stock/templates/stock/item_base.html:439 +#: stock/api.py:842 stock/serializers.py:596 +#: stock/templates/stock/item_base.html:439 #: templates/js/translated/table_filters.js:441 msgid "Stale" msgstr "" -#: stock/api.py:937 +#: stock/api.py:929 msgid "Quantity is required" msgstr "" -#: stock/api.py:943 +#: stock/api.py:935 msgid "Valid part must be supplied" msgstr "" -#: stock/api.py:974 +#: stock/api.py:966 msgid "The given supplier part does not exist" msgstr "" -#: stock/api.py:984 +#: stock/api.py:976 msgid "The supplier part has a pack size defined, but flag use_pack_size not set" msgstr "" -#: stock/api.py:1015 +#: stock/api.py:1007 msgid "Serial numbers cannot be supplied for a non-trackable part" msgstr "" -#: stock/models.py:60 +#: stock/models.py:61 #, fuzzy #| msgid "Stock Location" msgid "Stock Location type" msgstr "仓储地点" -#: stock/models.py:61 +#: stock/models.py:62 #, fuzzy #| msgid "Stock Locations" msgid "Stock Location types" msgstr "仓储地点" -#: stock/models.py:87 +#: stock/models.py:88 msgid "Default icon for all locations that have no icon set (optional)" msgstr "" -#: stock/models.py:124 stock/models.py:786 +#: stock/models.py:125 stock/models.py:787 #: stock/templates/stock/location.html:17 #: stock/templates/stock/stock_app_base.html:8 msgid "Stock Location" msgstr "仓储地点" -#: stock/models.py:125 stock/templates/stock/location.html:186 +#: stock/models.py:126 stock/templates/stock/location.html:186 #: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 #: users/models.py:205 msgid "Stock Locations" msgstr "仓储地点" -#: stock/models.py:167 stock/models.py:947 +#: stock/models.py:168 stock/models.py:948 #: stock/templates/stock/item_base.html:247 msgid "Owner" msgstr "" -#: stock/models.py:168 stock/models.py:948 +#: stock/models.py:169 stock/models.py:949 msgid "Select Owner" msgstr "" -#: stock/models.py:176 +#: stock/models.py:177 msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." msgstr "" -#: stock/models.py:183 templates/js/translated/stock.js:2781 +#: stock/models.py:184 templates/js/translated/stock.js:2781 #: templates/js/translated/table_filters.js:243 msgid "External" msgstr "" -#: stock/models.py:184 +#: stock/models.py:185 msgid "This is an external stock location" msgstr "" -#: stock/models.py:190 templates/js/translated/stock.js:2790 +#: stock/models.py:191 templates/js/translated/stock.js:2790 #: templates/js/translated/table_filters.js:246 #, fuzzy #| msgid "Location" msgid "Location type" msgstr "地点" -#: stock/models.py:194 +#: stock/models.py:195 #, fuzzy #| msgid "Stock item created" msgid "Stock location type of this location" msgstr "库存项已创建" -#: stock/models.py:261 +#: stock/models.py:262 msgid "You cannot make this stock location structural because some stock items are already located into it!" msgstr "" -#: stock/models.py:641 +#: stock/models.py:642 msgid "Stock items cannot be located into structural stock locations!" msgstr "" -#: stock/models.py:668 stock/serializers.py:446 +#: stock/models.py:669 stock/serializers.py:477 msgid "Stock item cannot be created for virtual parts" msgstr "" -#: stock/models.py:685 +#: stock/models.py:686 #, fuzzy, python-brace-format #| msgid "Part type ('{pf}') must be {pe}" msgid "Part type ('{self.supplier_part.part}') must be {self.part}" msgstr "商品类型 ('{pf}') 必须是 {pe}" -#: stock/models.py:695 stock/models.py:708 +#: stock/models.py:696 stock/models.py:709 msgid "Quantity must be 1 for item with a serial number" msgstr "" -#: stock/models.py:698 +#: stock/models.py:699 msgid "Serial number cannot be set if quantity greater than 1" msgstr "" -#: stock/models.py:722 +#: stock/models.py:723 msgid "Item cannot belong to itself" msgstr "" -#: stock/models.py:727 +#: stock/models.py:728 msgid "Item must have a build reference if is_building=True" msgstr "" -#: stock/models.py:740 +#: stock/models.py:741 msgid "Build reference does not point to the same part object" msgstr "" -#: stock/models.py:756 +#: stock/models.py:757 msgid "Parent Stock Item" msgstr "" -#: stock/models.py:768 +#: stock/models.py:769 msgid "Base part" msgstr "" -#: stock/models.py:778 +#: stock/models.py:779 msgid "Select a matching supplier part for this stock item" msgstr "" -#: stock/models.py:790 +#: stock/models.py:791 msgid "Where is this stock item located?" msgstr "" -#: stock/models.py:798 stock/serializers.py:1476 +#: stock/models.py:799 stock/serializers.py:1542 msgid "Packaging this stock item is stored in" msgstr "" -#: stock/models.py:809 +#: stock/models.py:810 msgid "Is this item installed in another item?" msgstr "" -#: stock/models.py:828 +#: stock/models.py:829 msgid "Serial number for this item" msgstr "" -#: stock/models.py:842 stock/serializers.py:1459 +#: stock/models.py:843 stock/serializers.py:1525 msgid "Batch code for this stock item" msgstr "" -#: stock/models.py:847 +#: stock/models.py:848 msgid "Stock Quantity" msgstr "" -#: stock/models.py:857 +#: stock/models.py:858 msgid "Source Build" msgstr "" -#: stock/models.py:860 +#: stock/models.py:861 msgid "Build for this stock item" msgstr "" -#: stock/models.py:867 stock/templates/stock/item_base.html:363 +#: stock/models.py:868 stock/templates/stock/item_base.html:363 #, fuzzy #| msgid "Issued By" msgid "Consumed By" msgstr "发布者" -#: stock/models.py:870 +#: stock/models.py:871 #, fuzzy #| msgid "BuildOrder to which this build is allocated" msgid "Build order which consumed this stock item" msgstr "此次生产匹配的订单" -#: stock/models.py:879 +#: stock/models.py:880 msgid "Source Purchase Order" msgstr "" -#: stock/models.py:883 +#: stock/models.py:884 msgid "Purchase order for this stock item" msgstr "" -#: stock/models.py:889 +#: stock/models.py:890 msgid "Destination Sales Order" msgstr "" -#: stock/models.py:900 +#: stock/models.py:901 msgid "Expiry date for stock item. Stock will be considered expired after this date" msgstr "" -#: stock/models.py:918 +#: stock/models.py:919 msgid "Delete on deplete" msgstr "" -#: stock/models.py:919 +#: stock/models.py:920 msgid "Delete this Stock Item when stock is depleted" msgstr "" -#: stock/models.py:939 +#: stock/models.py:940 msgid "Single unit purchase price at time of purchase" msgstr "" -#: stock/models.py:970 +#: stock/models.py:971 msgid "Converted to part" msgstr "" -#: stock/models.py:1486 +#: stock/models.py:1487 msgid "Part is not set as trackable" msgstr "" -#: stock/models.py:1492 +#: stock/models.py:1493 msgid "Quantity must be integer" msgstr "" -#: stock/models.py:1500 +#: stock/models.py:1501 #, fuzzy, python-brace-format #| msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgid "Quantity must not exceed available stock quantity ({self.quantity})" msgstr "分配数量 ({q}) 不得超过可用库存数量 ({a})" -#: stock/models.py:1506 +#: stock/models.py:1507 msgid "Serial numbers must be a list of integers" msgstr "" -#: stock/models.py:1511 +#: stock/models.py:1512 msgid "Quantity does not match serial numbers" msgstr "" -#: stock/models.py:1519 stock/serializers.py:660 +#: stock/models.py:1520 stock/serializers.py:718 msgid "Serial numbers already exist" msgstr "序列号已存在" -#: stock/models.py:1616 +#: stock/models.py:1617 #, fuzzy #| msgid "Part image not found" msgid "Test template does not exist" msgstr "未找到商品图像" -#: stock/models.py:1634 +#: stock/models.py:1635 msgid "Stock item has been assigned to a sales order" msgstr "" -#: stock/models.py:1638 +#: stock/models.py:1639 msgid "Stock item is installed in another item" msgstr "" -#: stock/models.py:1641 +#: stock/models.py:1642 msgid "Stock item contains other items" msgstr "" -#: stock/models.py:1644 +#: stock/models.py:1645 msgid "Stock item has been assigned to a customer" msgstr "" -#: stock/models.py:1647 +#: stock/models.py:1648 msgid "Stock item is currently in production" msgstr "" -#: stock/models.py:1650 +#: stock/models.py:1651 msgid "Serialized stock cannot be merged" msgstr "" -#: stock/models.py:1657 stock/serializers.py:1365 +#: stock/models.py:1658 stock/serializers.py:1431 msgid "Duplicate stock items" msgstr "" -#: stock/models.py:1661 +#: stock/models.py:1662 msgid "Stock items must refer to the same part" msgstr "" -#: stock/models.py:1669 +#: stock/models.py:1670 msgid "Stock items must refer to the same supplier part" msgstr "" -#: stock/models.py:1674 +#: stock/models.py:1675 msgid "Stock status codes must match" msgstr "" -#: stock/models.py:1901 +#: stock/models.py:1936 msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2310 +#: stock/models.py:2317 +#, fuzzy +#| msgid "Stock Item" +msgid "Stock Item Tracking" +msgstr "库存项" + +#: stock/models.py:2350 msgid "Entry notes" msgstr "" -#: stock/models.py:2378 +#: stock/models.py:2390 +#, fuzzy +#| msgid "Stock Items" +msgid "Stock Item Test Result" +msgstr "库存项" + +#: stock/models.py:2423 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2383 +#: stock/models.py:2428 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2388 +#: stock/models.py:2433 #, fuzzy #| msgid "Invalid value for overage" msgid "Invalid value for this test" msgstr "无效的备损值" -#: stock/models.py:2412 +#: stock/models.py:2457 msgid "Test result" msgstr "" -#: stock/models.py:2419 +#: stock/models.py:2464 msgid "Test output value" msgstr "" -#: stock/models.py:2427 +#: stock/models.py:2472 msgid "Test result attachment" msgstr "" -#: stock/models.py:2431 +#: stock/models.py:2476 msgid "Test notes" msgstr "" -#: stock/models.py:2439 templates/js/translated/stock.js:1548 +#: stock/models.py:2484 templates/js/translated/stock.js:1548 #, fuzzy #| msgid "Destination" msgid "Test station" msgstr "目的地" -#: stock/models.py:2440 +#: stock/models.py:2485 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2446 +#: stock/models.py:2491 msgid "Started" msgstr "" -#: stock/models.py:2447 +#: stock/models.py:2492 #, fuzzy #| msgid "Timestamp of last update" msgid "The timestamp of the test start" msgstr "最后一次更新时间" -#: stock/models.py:2453 +#: stock/models.py:2498 #, fuzzy #| msgid "Danish" msgid "Finished" msgstr "丹麦语" -#: stock/models.py:2454 +#: stock/models.py:2499 #, fuzzy #| msgid "Timestamp of last update" msgid "The timestamp of the test finish" msgstr "最后一次更新时间" -#: stock/serializers.py:74 +#: stock/serializers.py:76 msgid "Generated batch code" msgstr "" -#: stock/serializers.py:83 +#: stock/serializers.py:85 #, fuzzy #| msgid "Delete Build Order" msgid "Select build order" msgstr "删除生产订单" -#: stock/serializers.py:92 +#: stock/serializers.py:94 #, fuzzy #| msgid "Selected stock item not found in BOM" msgid "Select stock item to generate batch code for" msgstr "在BOM中找不到选定的库存项" -#: stock/serializers.py:101 +#: stock/serializers.py:103 #, fuzzy #| msgid "Select location where the completed items will be stored" msgid "Select location to generate batch code for" msgstr "选择已完成项目仓储地点" -#: stock/serializers.py:110 +#: stock/serializers.py:112 #, fuzzy #| msgid "User or group responsible for this order" msgid "Select part to generate batch code for" msgstr "负责此订单的用户或群组" -#: stock/serializers.py:119 +#: stock/serializers.py:121 #, fuzzy #| msgid "Create new purchase order" msgid "Select purchase order" msgstr "新建采购订单" -#: stock/serializers.py:126 +#: stock/serializers.py:128 #, fuzzy #| msgid "Enter quantity for build output" msgid "Enter quantity for batch code" msgstr "输入生产产出数量" -#: stock/serializers.py:149 +#: stock/serializers.py:151 #, fuzzy #| msgid "Assigned serial number" msgid "Generated serial number" msgstr "已分配序列号" -#: stock/serializers.py:158 +#: stock/serializers.py:160 #, fuzzy #| msgid "Trackable parts can have serial numbers specified" msgid "Select part to generate serial number for" msgstr "可追踪商品可以指定序列号" -#: stock/serializers.py:166 +#: stock/serializers.py:168 #, fuzzy #| msgid "Enter serial numbers for new items" msgid "Quantity of serial numbers to generate" msgstr "输入新项目的序列号" -#: stock/serializers.py:228 +#: stock/serializers.py:233 #, fuzzy #| msgid "User or group responsible for this order" msgid "Test template for this result" msgstr "负责此订单的用户或群组" -#: stock/serializers.py:247 +#: stock/serializers.py:252 #, fuzzy #| msgid "Allocation items must be provided" msgid "Template ID or test name must be provided" msgstr "必须提供分配的项" -#: stock/serializers.py:279 +#: stock/serializers.py:284 msgid "The test finished time cannot be earlier than the test started time" msgstr "" -#: stock/serializers.py:315 +#: stock/serializers.py:320 msgid "Serial number is too large" msgstr "" -#: stock/serializers.py:438 +#: stock/serializers.py:449 stock/templates/stock/item_base.html:193 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:450 +#, fuzzy +#| msgid "Source stock item" +msgid "Parent stock item" +msgstr "源库存项" + +#: stock/serializers.py:469 msgid "Use pack size when adding: the quantity defined is the number of packs" msgstr "" -#: stock/serializers.py:558 +#: stock/serializers.py:585 templates/js/translated/build.js:991 +#: templates/js/translated/build.js:2344 +#, fuzzy +#| msgid "Allocated Parts" +msgid "Allocated Quantity" +msgstr "已分配的部件" + +#: stock/serializers.py:588 stock/templates/stock/item_base.html:437 +#: templates/js/translated/table_filters.js:435 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:594 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:598 +#, fuzzy +#| msgid "Stock Item" +msgid "Tracking Items" +msgstr "库存项" + +#: stock/serializers.py:604 msgid "Purchase price of this stock item, per unit or pack" msgstr "" -#: stock/serializers.py:595 +#: stock/serializers.py:623 +#, fuzzy +#| msgid "Part Pricing" +msgid "Minimum Pricing" +msgstr "商品价格" + +#: stock/serializers.py:629 +#, fuzzy +#| msgid "Part Pricing" +msgid "Maximum Pricing" +msgstr "商品价格" + +#: stock/serializers.py:653 msgid "Enter number of stock items to serialize" msgstr "" -#: stock/serializers.py:608 +#: stock/serializers.py:666 #, python-brace-format msgid "Quantity must not exceed available stock quantity ({q})" msgstr "" -#: stock/serializers.py:615 +#: stock/serializers.py:673 msgid "Enter serial numbers for new items" msgstr "输入新项目的序列号" -#: stock/serializers.py:626 stock/serializers.py:1322 stock/serializers.py:1578 +#: stock/serializers.py:684 stock/serializers.py:1388 stock/serializers.py:1644 msgid "Destination stock location" msgstr "目标库存位置" -#: stock/serializers.py:633 +#: stock/serializers.py:691 msgid "Optional note field" msgstr "" -#: stock/serializers.py:643 +#: stock/serializers.py:701 msgid "Serial numbers cannot be assigned to this part" msgstr "" -#: stock/serializers.py:698 +#: stock/serializers.py:756 msgid "Select stock item to install" msgstr "" -#: stock/serializers.py:705 +#: stock/serializers.py:763 msgid "Quantity to Install" msgstr "" -#: stock/serializers.py:706 +#: stock/serializers.py:764 #, fuzzy #| msgid "Enter quantity for build output" msgid "Enter the quantity of items to install" msgstr "输入生产产出数量" -#: stock/serializers.py:711 stock/serializers.py:791 stock/serializers.py:887 -#: stock/serializers.py:937 +#: stock/serializers.py:769 stock/serializers.py:849 stock/serializers.py:945 +#: stock/serializers.py:995 msgid "Add transaction note (optional)" msgstr "添加交易备注 (可选)" -#: stock/serializers.py:719 +#: stock/serializers.py:777 #, fuzzy #| msgid "Quantity must be a positive number" msgid "Quantity to install must be at least 1" msgstr "数量必须大于0" -#: stock/serializers.py:727 +#: stock/serializers.py:785 msgid "Stock item is unavailable" msgstr "" -#: stock/serializers.py:738 +#: stock/serializers.py:796 msgid "Selected part is not in the Bill of Materials" msgstr "" -#: stock/serializers.py:751 +#: stock/serializers.py:809 #, fuzzy #| msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgid "Quantity to install must not exceed available quantity" msgstr "分配数量 ({q}) 不得超过可用库存数量 ({a})" -#: stock/serializers.py:786 +#: stock/serializers.py:844 msgid "Destination location for uninstalled item" msgstr "" -#: stock/serializers.py:821 +#: stock/serializers.py:879 msgid "Select part to convert stock item into" msgstr "" -#: stock/serializers.py:834 +#: stock/serializers.py:892 msgid "Selected part is not a valid option for conversion" msgstr "" -#: stock/serializers.py:851 +#: stock/serializers.py:909 msgid "Cannot convert stock item with assigned SupplierPart" msgstr "" -#: stock/serializers.py:882 +#: stock/serializers.py:940 msgid "Destination location for returned item" msgstr "" -#: stock/serializers.py:919 +#: stock/serializers.py:977 #, fuzzy #| msgid "Selected stock item not found in BOM" msgid "Select stock items to change status" msgstr "在BOM中找不到选定的库存项" -#: stock/serializers.py:925 +#: stock/serializers.py:983 #, fuzzy #| msgid "Stock item created" msgid "No stock items selected" msgstr "库存项已创建" -#: stock/serializers.py:1021 stock/serializers.py:1093 +#: stock/serializers.py:1079 stock/serializers.py:1156 #: stock/templates/stock/location.html:165 #: stock/templates/stock/location.html:222 #: stock/templates/stock/location_sidebar.html:5 msgid "Sublocations" msgstr "" -#: stock/serializers.py:1086 templates/js/translated/stock.js:152 +#: stock/serializers.py:1149 templates/js/translated/stock.js:152 msgid "Parent stock location" msgstr "" -#: stock/serializers.py:1194 +#: stock/serializers.py:1260 msgid "Part must be salable" msgstr "" -#: stock/serializers.py:1198 +#: stock/serializers.py:1264 msgid "Item is allocated to a sales order" msgstr "" -#: stock/serializers.py:1202 +#: stock/serializers.py:1268 msgid "Item is allocated to a build order" msgstr "" -#: stock/serializers.py:1226 +#: stock/serializers.py:1292 msgid "Customer to assign stock items" msgstr "" -#: stock/serializers.py:1232 +#: stock/serializers.py:1298 msgid "Selected company is not a customer" msgstr "" -#: stock/serializers.py:1240 +#: stock/serializers.py:1306 msgid "Stock assignment notes" msgstr "" -#: stock/serializers.py:1250 stock/serializers.py:1504 +#: stock/serializers.py:1316 stock/serializers.py:1570 msgid "A list of stock items must be provided" msgstr "" -#: stock/serializers.py:1329 +#: stock/serializers.py:1395 msgid "Stock merging notes" msgstr "" -#: stock/serializers.py:1334 +#: stock/serializers.py:1400 msgid "Allow mismatched suppliers" msgstr "" -#: stock/serializers.py:1335 +#: stock/serializers.py:1401 msgid "Allow stock items with different supplier parts to be merged" msgstr "" -#: stock/serializers.py:1340 +#: stock/serializers.py:1406 msgid "Allow mismatched status" msgstr "" -#: stock/serializers.py:1341 +#: stock/serializers.py:1407 msgid "Allow stock items with different status codes to be merged" msgstr "" -#: stock/serializers.py:1351 +#: stock/serializers.py:1417 msgid "At least two stock items must be provided" msgstr "" -#: stock/serializers.py:1418 +#: stock/serializers.py:1484 #, fuzzy #| msgid "Change" msgid "No Change" msgstr "更改" -#: stock/serializers.py:1447 +#: stock/serializers.py:1513 msgid "StockItem primary key value" msgstr "" -#: stock/serializers.py:1466 +#: stock/serializers.py:1532 #, fuzzy #| msgid "Stock item created" msgid "Stock item status code" msgstr "库存项已创建" -#: stock/serializers.py:1494 +#: stock/serializers.py:1560 msgid "Stock transaction notes" msgstr "" @@ -10296,10 +10825,6 @@ msgstr "" msgid "Build" msgstr "生产" -#: stock/templates/stock/item_base.html:193 -msgid "Parent Item" -msgstr "" - #: stock/templates/stock/item_base.html:211 msgid "No manufacturer set" msgstr "" @@ -10377,11 +10902,6 @@ msgstr "" msgid "This StockItem expired on %(item.expiry_date)s" msgstr "" -#: stock/templates/stock/item_base.html:437 -#: templates/js/translated/table_filters.js:435 users/models.py:174 -msgid "Expired" -msgstr "" - #: stock/templates/stock/item_base.html:439 #, python-format msgid "This StockItem expires on %(item.expiry_date)s" @@ -10537,10 +11057,6 @@ msgstr "" msgid "Allocations" msgstr "" -#: stock/templates/stock/stock_sidebar.html:20 -msgid "Child Items" -msgstr "" - #: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 msgid "Permission Denied" msgstr "" @@ -11029,8 +11545,8 @@ msgstr "" #: templates/InvenTree/settings/settings_staff_js.html:81 #: templates/js/translated/forms.js:547 templates/js/translated/helpers.js:105 -#: templates/js/translated/part.js:393 templates/js/translated/pricing.js:629 -#: templates/js/translated/stock.js:245 users/models.py:402 +#: templates/js/translated/part.js:392 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:245 users/models.py:406 msgid "Delete" msgstr "删除" @@ -11082,12 +11598,12 @@ msgid "No category parameter templates found" msgstr "未找到类别参数模板" #: templates/InvenTree/settings/settings_staff_js.html:308 -#: templates/js/translated/part.js:1646 +#: templates/js/translated/part.js:1649 msgid "Edit Template" msgstr "编辑模板" #: templates/InvenTree/settings/settings_staff_js.html:309 -#: templates/js/translated/part.js:1647 +#: templates/js/translated/part.js:1650 msgid "Delete Template" msgstr "删除模板" @@ -11220,18 +11736,6 @@ msgstr "帐户设置" msgid "Change Password" msgstr "更改密码" -#: templates/InvenTree/settings/user.html:33 -msgid "Username" -msgstr "用户名" - -#: templates/InvenTree/settings/user.html:37 -msgid "First Name" -msgstr "名字" - -#: templates/InvenTree/settings/user.html:41 -msgid "Last Name" -msgstr "姓氏" - #: templates/InvenTree/settings/user.html:55 msgid "The following email addresses are associated with your account:" msgstr "" @@ -11756,7 +12260,7 @@ msgid "The following parts are low on required stock" msgstr "" #: templates/email/build_order_required_stock.html:18 -#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2556 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2557 msgid "Required Quantity" msgstr "" @@ -11770,15 +12274,15 @@ msgid "Click on the following link to view this part" msgstr "" #: templates/email/low_stock_notification.html:18 -#: templates/js/translated/part.js:3219 +#: templates/js/translated/part.js:3222 msgid "Minimum Quantity" msgstr "" -#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1130 +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 msgid "No Response" msgstr "" -#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1131 +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 msgid "No response from the InvenTree server" msgstr "" @@ -11790,27 +12294,27 @@ msgstr "" msgid "API request returned error code 400" msgstr "" -#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1140 +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 msgid "Error 401: Not Authenticated" msgstr "" -#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1141 +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 msgid "Authentication credentials not supplied" msgstr "" -#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1145 +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 msgid "Error 403: Permission Denied" msgstr "" -#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1146 +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 msgid "You do not have the required permissions to access this function" msgstr "" -#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1150 +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 msgid "Error 404: Resource Not Found" msgstr "" -#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1151 +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 msgid "The requested resource could not be located on the server" msgstr "" @@ -11822,11 +12326,11 @@ msgstr "" msgid "HTTP method not allowed at URL" msgstr "" -#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1155 +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 msgid "Error 408: Timeout" msgstr "" -#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1156 +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 msgid "Connection timeout while requesting data from server" msgstr "" @@ -11917,7 +12421,7 @@ msgid "Unknown response from server" msgstr "" #: templates/js/translated/barcode.js:252 -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "Invalid server response" msgstr "" @@ -12012,8 +12516,8 @@ msgid "Row Data" msgstr "" #: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 -#: templates/js/translated/modals.js:74 templates/js/translated/modals.js:628 -#: templates/js/translated/modals.js:752 templates/js/translated/modals.js:1060 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 #: templates/js/translated/purchase_order.js:797 templates/modals.html:15 #: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 msgid "Close" @@ -12133,7 +12637,7 @@ msgstr "" msgid "Substitutes Available" msgstr "" -#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2500 +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2501 msgid "Variant stock allowed" msgstr "" @@ -12153,32 +12657,32 @@ msgstr "" msgid "No pricing available" msgstr "" -#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2621 +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2622 #, fuzzy #| msgid "External Link" msgid "External stock" msgstr "外部链接" -#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2595 +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2596 #: templates/js/translated/sales_order.js:1946 msgid "No Stock Available" msgstr "" -#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2599 +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2600 msgid "Includes variant and substitute stock" msgstr "" -#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2601 -#: templates/js/translated/part.js:1257 +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2602 +#: templates/js/translated/part.js:1260 #: templates/js/translated/sales_order.js:1943 msgid "Includes variant stock" msgstr "" -#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2603 +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2604 msgid "Includes substitute stock" msgstr "" -#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2586 +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2587 msgid "Consumable item" msgstr "" @@ -12210,7 +12714,7 @@ msgstr "" msgid "No BOM items found" msgstr "" -#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2485 +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2486 msgid "Required Part" msgstr "" @@ -12403,12 +12907,6 @@ msgstr "" msgid "No build order allocations found" msgstr "" -#: templates/js/translated/build.js:991 templates/js/translated/build.js:2344 -#, fuzzy -#| msgid "Allocated Parts" -msgid "Allocated Quantity" -msgstr "已分配的部件" - #: templates/js/translated/build.js:1005 msgid "Location not specified" msgstr "未指定仓储地点" @@ -12530,9 +13028,9 @@ msgstr "" msgid "No builds matching query" msgstr "" -#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2479 +#: templates/js/translated/build.js:2117 templates/js/translated/build.js:2480 #: templates/js/translated/forms.js:2163 templates/js/translated/forms.js:2179 -#: templates/js/translated/part.js:2316 templates/js/translated/part.js:2742 +#: templates/js/translated/part.js:2319 templates/js/translated/part.js:2745 #: templates/js/translated/stock.js:1983 templates/js/translated/stock.js:2710 msgid "Select" msgstr "" @@ -12563,71 +13061,71 @@ msgstr "" msgid "Remove Allocation" msgstr "" -#: templates/js/translated/build.js:2455 +#: templates/js/translated/build.js:2456 #, fuzzy #| msgid "Build actions" msgid "build line" msgstr "生产操作" -#: templates/js/translated/build.js:2456 +#: templates/js/translated/build.js:2457 #, fuzzy #| msgid "Build actions" msgid "build lines" msgstr "生产操作" -#: templates/js/translated/build.js:2474 +#: templates/js/translated/build.js:2475 #, fuzzy #| msgid "Subcategories" msgid "No build lines found" msgstr "子类别" -#: templates/js/translated/build.js:2504 templates/js/translated/part.js:791 -#: templates/js/translated/part.js:1203 +#: templates/js/translated/build.js:2505 templates/js/translated/part.js:790 +#: templates/js/translated/part.js:1206 msgid "Trackable part" msgstr "可追溯商品" -#: templates/js/translated/build.js:2539 +#: templates/js/translated/build.js:2540 #, fuzzy #| msgid "Quantity" msgid "Unit Quantity" msgstr "数量" -#: templates/js/translated/build.js:2591 +#: templates/js/translated/build.js:2592 #: templates/js/translated/sales_order.js:1951 msgid "Sufficient stock available" msgstr "" -#: templates/js/translated/build.js:2646 +#: templates/js/translated/build.js:2647 #, fuzzy #| msgid "Minimum Stock" msgid "Consumable Item" msgstr "最低库存" -#: templates/js/translated/build.js:2653 +#: templates/js/translated/build.js:2654 #, fuzzy #| msgid "Stock Item" msgid "Tracked item" msgstr "库存项" -#: templates/js/translated/build.js:2654 +#: templates/js/translated/build.js:2655 msgid "Allocate tracked items against individual build outputs" msgstr "" -#: templates/js/translated/build.js:2662 +#: templates/js/translated/build.js:2663 #: templates/js/translated/sales_order.js:2052 msgid "Build stock" msgstr "" -#: templates/js/translated/build.js:2667 templates/js/translated/stock.js:1868 +#: templates/js/translated/build.js:2668 templates/js/translated/stock.js:1868 msgid "Order stock" msgstr "" -#: templates/js/translated/build.js:2671 +#: templates/js/translated/build.js:2672 #: templates/js/translated/sales_order.js:2046 msgid "Allocate stock" msgstr "" -#: templates/js/translated/build.js:2675 +#: templates/js/translated/build.js:2676 #, fuzzy #| msgid "Confirm stock allocation" msgid "Remove stock allocation" @@ -12808,7 +13306,7 @@ msgid "Delete Parameters" msgstr "删除参数" #: templates/js/translated/company.js:1191 -#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2245 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2248 msgid "Order parts" msgstr "订购商品" @@ -12827,34 +13325,34 @@ msgid "No manufacturer parts found" msgstr "" #: templates/js/translated/company.js:1279 -#: templates/js/translated/company.js:1567 templates/js/translated/part.js:799 -#: templates/js/translated/part.js:1211 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:798 +#: templates/js/translated/part.js:1214 msgid "Template part" msgstr "" #: templates/js/translated/company.js:1283 -#: templates/js/translated/company.js:1571 templates/js/translated/part.js:803 -#: templates/js/translated/part.js:1215 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:802 +#: templates/js/translated/part.js:1218 msgid "Assembled part" msgstr "" -#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1465 +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1468 msgid "No parameters found" msgstr "无指定参数" -#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1528 +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1531 msgid "Edit parameter" msgstr "编辑参数" -#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1529 +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1532 msgid "Delete parameter" msgstr "删除参数" -#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1434 +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1437 msgid "Edit Parameter" msgstr "编辑参数" -#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1550 +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1553 msgid "Delete Parameter" msgstr "删除参数" @@ -13036,78 +13534,78 @@ msgstr "" msgid "No parts required for builds" msgstr "生产订单所需的库存" -#: templates/js/translated/label.js:55 templates/js/translated/report.js:38 +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 #, fuzzy #| msgid "Select Stock Items" msgid "Select Items" msgstr "选择库存项" -#: templates/js/translated/label.js:56 templates/js/translated/report.js:39 +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 #, fuzzy #| msgid "Stock item(s) must be selected before printing labels" msgid "No items selected for printing" msgstr "打印标签前必须选择库存项目" -#: templates/js/translated/label.js:150 +#: templates/js/translated/label.js:143 msgid "Labels sent to printer" msgstr "" -#: templates/js/translated/modals.js:58 templates/js/translated/modals.js:158 -#: templates/js/translated/modals.js:683 +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 msgid "Cancel" msgstr "取消" -#: templates/js/translated/modals.js:63 templates/js/translated/modals.js:157 -#: templates/js/translated/modals.js:751 templates/js/translated/modals.js:1059 +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 #: templates/modals.html:28 templates/modals.html:51 msgid "Submit" msgstr "" -#: templates/js/translated/modals.js:156 +#: templates/js/translated/modals.js:157 msgid "Form Title" msgstr "" -#: templates/js/translated/modals.js:445 +#: templates/js/translated/modals.js:446 msgid "Waiting for server..." msgstr "" -#: templates/js/translated/modals.js:596 +#: templates/js/translated/modals.js:597 msgid "Show Error Information" msgstr "" -#: templates/js/translated/modals.js:682 +#: templates/js/translated/modals.js:687 msgid "Accept" msgstr "" -#: templates/js/translated/modals.js:740 +#: templates/js/translated/modals.js:745 msgid "Loading Data" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Invalid response from server" msgstr "" -#: templates/js/translated/modals.js:1011 +#: templates/js/translated/modals.js:1016 msgid "Form data missing from server response" msgstr "" -#: templates/js/translated/modals.js:1023 +#: templates/js/translated/modals.js:1028 msgid "Error posting form data" msgstr "" -#: templates/js/translated/modals.js:1120 +#: templates/js/translated/modals.js:1125 msgid "JSON response missing form data" msgstr "" -#: templates/js/translated/modals.js:1135 +#: templates/js/translated/modals.js:1140 msgid "Error 400: Bad Request" msgstr "" -#: templates/js/translated/modals.js:1136 +#: templates/js/translated/modals.js:1141 msgid "Server returned error code 400" msgstr "" -#: templates/js/translated/modals.js:1159 +#: templates/js/translated/modals.js:1164 msgid "Error requesting form data" msgstr "" @@ -13117,7 +13615,7 @@ msgstr "" #: templates/js/translated/news.js:38 #: templates/js/translated/notification.js:46 -#: templates/js/translated/part.js:1605 +#: templates/js/translated/part.js:1608 msgid "ID" msgstr "" @@ -13198,353 +13696,353 @@ msgstr "商品重复选项" msgid "Add Part Category" msgstr "增加商品类别" -#: templates/js/translated/part.js:333 templates/js/translated/stock.js:175 +#: templates/js/translated/part.js:332 templates/js/translated/stock.js:175 msgid "Icon (optional) - Explore all available icons on" msgstr "" -#: templates/js/translated/part.js:353 +#: templates/js/translated/part.js:352 msgid "Create Part Category" msgstr "创建商品类别" -#: templates/js/translated/part.js:356 +#: templates/js/translated/part.js:355 #, fuzzy #| msgid "Create new part category" msgid "Create new category after this one" msgstr "新建商品类别" -#: templates/js/translated/part.js:357 +#: templates/js/translated/part.js:356 #, fuzzy #| msgid "Part category" msgid "Part category created" msgstr "商品类别" -#: templates/js/translated/part.js:371 +#: templates/js/translated/part.js:370 msgid "Edit Part Category" msgstr "编辑商品类别" -#: templates/js/translated/part.js:384 +#: templates/js/translated/part.js:383 msgid "Are you sure you want to delete this part category?" msgstr "" -#: templates/js/translated/part.js:389 +#: templates/js/translated/part.js:388 msgid "Move to parent category" msgstr "" -#: templates/js/translated/part.js:398 +#: templates/js/translated/part.js:397 msgid "Delete Part Category" msgstr "删除商品类别" -#: templates/js/translated/part.js:402 +#: templates/js/translated/part.js:401 msgid "Action for parts in this category" msgstr "" -#: templates/js/translated/part.js:407 +#: templates/js/translated/part.js:406 msgid "Action for child categories" msgstr "" -#: templates/js/translated/part.js:431 +#: templates/js/translated/part.js:430 msgid "Create Part" msgstr "创建商品" -#: templates/js/translated/part.js:433 +#: templates/js/translated/part.js:432 msgid "Create another part after this one" msgstr "" -#: templates/js/translated/part.js:434 +#: templates/js/translated/part.js:433 msgid "Part created successfully" msgstr "" -#: templates/js/translated/part.js:462 +#: templates/js/translated/part.js:461 msgid "Edit Part" msgstr "编辑商品" -#: templates/js/translated/part.js:464 +#: templates/js/translated/part.js:463 msgid "Part edited" msgstr "" -#: templates/js/translated/part.js:475 +#: templates/js/translated/part.js:474 msgid "Create Part Variant" msgstr "" -#: templates/js/translated/part.js:532 +#: templates/js/translated/part.js:531 msgid "Active Part" msgstr "" -#: templates/js/translated/part.js:533 +#: templates/js/translated/part.js:532 msgid "Part cannot be deleted as it is currently active" msgstr "" -#: templates/js/translated/part.js:547 +#: templates/js/translated/part.js:546 msgid "Deleting this part cannot be reversed" msgstr "" -#: templates/js/translated/part.js:549 +#: templates/js/translated/part.js:548 msgid "Any stock items for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:550 +#: templates/js/translated/part.js:549 msgid "This part will be removed from any Bills of Material" msgstr "" -#: templates/js/translated/part.js:551 +#: templates/js/translated/part.js:550 msgid "All manufacturer and supplier information for this part will be deleted" msgstr "" -#: templates/js/translated/part.js:558 +#: templates/js/translated/part.js:557 msgid "Delete Part" msgstr "" -#: templates/js/translated/part.js:594 +#: templates/js/translated/part.js:593 msgid "You are subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:596 +#: templates/js/translated/part.js:595 msgid "You have subscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:601 +#: templates/js/translated/part.js:600 msgid "Subscribe to notifications for this item" msgstr "" -#: templates/js/translated/part.js:603 +#: templates/js/translated/part.js:602 msgid "You have unsubscribed to notifications for this item" msgstr "" -#: templates/js/translated/part.js:620 +#: templates/js/translated/part.js:619 msgid "Validating the BOM will mark each line item as valid" msgstr "" -#: templates/js/translated/part.js:630 +#: templates/js/translated/part.js:629 msgid "Validate Bill of Materials" msgstr "" -#: templates/js/translated/part.js:633 +#: templates/js/translated/part.js:632 msgid "Validated Bill of Materials" msgstr "" -#: templates/js/translated/part.js:658 +#: templates/js/translated/part.js:657 msgid "Copy Bill of Materials" msgstr "" -#: templates/js/translated/part.js:686 -#: templates/js/translated/table_filters.js:747 +#: templates/js/translated/part.js:685 +#: templates/js/translated/table_filters.js:752 msgid "Low stock" msgstr "" -#: templates/js/translated/part.js:689 +#: templates/js/translated/part.js:688 msgid "No stock available" msgstr "" -#: templates/js/translated/part.js:749 +#: templates/js/translated/part.js:748 msgid "Demand" msgstr "" -#: templates/js/translated/part.js:772 +#: templates/js/translated/part.js:771 msgid "Unit" msgstr "" -#: templates/js/translated/part.js:795 templates/js/translated/part.js:1207 +#: templates/js/translated/part.js:794 templates/js/translated/part.js:1210 msgid "Virtual part" msgstr "虚拟商品" -#: templates/js/translated/part.js:807 +#: templates/js/translated/part.js:806 msgid "Subscribed part" msgstr "" -#: templates/js/translated/part.js:811 +#: templates/js/translated/part.js:810 msgid "Salable part" msgstr "可销售商品" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Schedule generation of a new stocktake report." msgstr "" -#: templates/js/translated/part.js:890 +#: templates/js/translated/part.js:893 msgid "Once complete, the stocktake report will be available for download." msgstr "" -#: templates/js/translated/part.js:898 +#: templates/js/translated/part.js:901 msgid "Generate Stocktake Report" msgstr "" -#: templates/js/translated/part.js:902 +#: templates/js/translated/part.js:905 msgid "Stocktake report scheduled" msgstr "" -#: templates/js/translated/part.js:1051 +#: templates/js/translated/part.js:1054 msgid "No stocktake information available" msgstr "" -#: templates/js/translated/part.js:1109 templates/js/translated/part.js:1145 +#: templates/js/translated/part.js:1112 templates/js/translated/part.js:1148 msgid "Edit Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1113 templates/js/translated/part.js:1155 +#: templates/js/translated/part.js:1116 templates/js/translated/part.js:1158 msgid "Delete Stocktake Entry" msgstr "" -#: templates/js/translated/part.js:1282 +#: templates/js/translated/part.js:1285 msgid "No variants found" msgstr "" -#: templates/js/translated/part.js:1600 +#: templates/js/translated/part.js:1603 msgid "No part parameter templates found" msgstr "未找到商品参数模板" -#: templates/js/translated/part.js:1663 +#: templates/js/translated/part.js:1666 msgid "Edit Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1675 +#: templates/js/translated/part.js:1678 msgid "Any parameters which reference this template will also be deleted" msgstr "" -#: templates/js/translated/part.js:1683 +#: templates/js/translated/part.js:1686 msgid "Delete Part Parameter Template" msgstr "" -#: templates/js/translated/part.js:1717 +#: templates/js/translated/part.js:1720 #: templates/js/translated/purchase_order.js:1654 msgid "No purchase orders found" msgstr "" -#: templates/js/translated/part.js:1861 +#: templates/js/translated/part.js:1864 #: templates/js/translated/purchase_order.js:2153 #: templates/js/translated/return_order.js:755 #: templates/js/translated/sales_order.js:1911 msgid "This line item is overdue" msgstr "" -#: templates/js/translated/part.js:1907 +#: templates/js/translated/part.js:1910 #: templates/js/translated/purchase_order.js:2220 msgid "Receive line item" msgstr "" -#: templates/js/translated/part.js:1970 +#: templates/js/translated/part.js:1973 msgid "Delete part relationship" msgstr "" -#: templates/js/translated/part.js:1992 +#: templates/js/translated/part.js:1995 msgid "Delete Part Relationship" msgstr "" -#: templates/js/translated/part.js:2080 templates/js/translated/part.js:2506 +#: templates/js/translated/part.js:2083 templates/js/translated/part.js:2509 msgid "No parts found" msgstr "" -#: templates/js/translated/part.js:2201 +#: templates/js/translated/part.js:2204 msgid "Set the part category for the selected parts" msgstr "" -#: templates/js/translated/part.js:2206 +#: templates/js/translated/part.js:2209 msgid "Set Part Category" msgstr "设置商品类别" -#: templates/js/translated/part.js:2236 +#: templates/js/translated/part.js:2239 msgid "Set category" msgstr "设置类别" -#: templates/js/translated/part.js:2287 +#: templates/js/translated/part.js:2290 #, fuzzy #| msgid "Edit part" msgid "part" msgstr "编辑商品" -#: templates/js/translated/part.js:2288 +#: templates/js/translated/part.js:2291 #, fuzzy #| msgid "Parts" msgid "parts" msgstr "商品" -#: templates/js/translated/part.js:2384 +#: templates/js/translated/part.js:2387 msgid "No category" msgstr "没有分类" -#: templates/js/translated/part.js:2531 templates/js/translated/part.js:2661 +#: templates/js/translated/part.js:2534 templates/js/translated/part.js:2664 #: templates/js/translated/stock.js:2669 msgid "Display as list" msgstr "" -#: templates/js/translated/part.js:2547 +#: templates/js/translated/part.js:2550 msgid "Display as grid" msgstr "" -#: templates/js/translated/part.js:2645 +#: templates/js/translated/part.js:2648 #, fuzzy #| msgid "Subcategories" msgid "No subcategories found" msgstr "子类别" -#: templates/js/translated/part.js:2681 templates/js/translated/stock.js:2689 +#: templates/js/translated/part.js:2684 templates/js/translated/stock.js:2689 msgid "Display as tree" msgstr "" -#: templates/js/translated/part.js:2761 +#: templates/js/translated/part.js:2764 msgid "Load Subcategories" msgstr "" -#: templates/js/translated/part.js:2777 +#: templates/js/translated/part.js:2780 msgid "Subscribed category" msgstr "" -#: templates/js/translated/part.js:2865 +#: templates/js/translated/part.js:2868 msgid "No test templates matching query" msgstr "" -#: templates/js/translated/part.js:2887 templates/js/translated/search.js:342 +#: templates/js/translated/part.js:2890 templates/js/translated/search.js:342 msgid "results" msgstr "" -#: templates/js/translated/part.js:2937 templates/js/translated/stock.js:1456 +#: templates/js/translated/part.js:2940 templates/js/translated/stock.js:1456 msgid "Edit test result" msgstr "" -#: templates/js/translated/part.js:2938 templates/js/translated/stock.js:1457 +#: templates/js/translated/part.js:2941 templates/js/translated/stock.js:1457 #: templates/js/translated/stock.js:1731 msgid "Delete test result" msgstr "" -#: templates/js/translated/part.js:2942 +#: templates/js/translated/part.js:2945 msgid "This test is defined for a parent part" msgstr "" -#: templates/js/translated/part.js:2958 +#: templates/js/translated/part.js:2961 msgid "Edit Test Result Template" msgstr "" -#: templates/js/translated/part.js:2972 +#: templates/js/translated/part.js:2975 msgid "Delete Test Result Template" msgstr "" -#: templates/js/translated/part.js:3051 templates/js/translated/part.js:3052 +#: templates/js/translated/part.js:3054 templates/js/translated/part.js:3055 msgid "No date specified" msgstr "" -#: templates/js/translated/part.js:3054 +#: templates/js/translated/part.js:3057 msgid "Specified date is in the past" msgstr "" -#: templates/js/translated/part.js:3060 +#: templates/js/translated/part.js:3063 msgid "Speculative" msgstr "" -#: templates/js/translated/part.js:3110 +#: templates/js/translated/part.js:3113 msgid "No scheduling information available for this part" msgstr "" -#: templates/js/translated/part.js:3116 +#: templates/js/translated/part.js:3119 msgid "Error fetching scheduling information for this part" msgstr "" -#: templates/js/translated/part.js:3212 +#: templates/js/translated/part.js:3215 msgid "Scheduled Stock Quantities" msgstr "" -#: templates/js/translated/part.js:3228 +#: templates/js/translated/part.js:3231 msgid "Maximum Quantity" msgstr "" -#: templates/js/translated/part.js:3273 +#: templates/js/translated/part.js:3276 msgid "Minimum Stock Level" msgstr "" @@ -14378,7 +14876,7 @@ msgstr "" msgid "Add Stock" msgstr "" -#: templates/js/translated/stock.js:1042 users/models.py:392 +#: templates/js/translated/stock.js:1042 users/models.py:396 msgid "Add" msgstr "添加" @@ -14762,7 +15260,7 @@ msgid "Include subcategories" msgstr "" #: templates/js/translated/table_filters.js:287 -#: templates/js/translated/table_filters.js:759 +#: templates/js/translated/table_filters.js:764 msgid "Subscribed" msgstr "" @@ -14917,44 +15415,50 @@ msgstr "" msgid "Show active parts" msgstr "" -#: templates/js/translated/table_filters.js:725 +#: templates/js/translated/table_filters.js:722 +#, fuzzy +#| msgid "Show related parts" +msgid "Show locked parts" +msgstr "显示相关商品" + +#: templates/js/translated/table_filters.js:730 msgid "Available stock" msgstr "" -#: templates/js/translated/table_filters.js:733 -#: templates/js/translated/table_filters.js:833 +#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:838 #, fuzzy #| msgid "Units" msgid "Has Units" msgstr "单位" -#: templates/js/translated/table_filters.js:734 +#: templates/js/translated/table_filters.js:739 #, fuzzy #| msgid "Parameter units" msgid "Part has defined units" msgstr "参数单位" -#: templates/js/translated/table_filters.js:738 +#: templates/js/translated/table_filters.js:743 msgid "Has IPN" msgstr "" -#: templates/js/translated/table_filters.js:739 +#: templates/js/translated/table_filters.js:744 msgid "Part has internal part number" msgstr "商品有内部编号" -#: templates/js/translated/table_filters.js:743 +#: templates/js/translated/table_filters.js:748 msgid "In stock" msgstr "" -#: templates/js/translated/table_filters.js:751 +#: templates/js/translated/table_filters.js:756 msgid "Purchasable" msgstr "" -#: templates/js/translated/table_filters.js:763 +#: templates/js/translated/table_filters.js:768 msgid "Has stocktake entries" msgstr "" -#: templates/js/translated/table_filters.js:829 +#: templates/js/translated/table_filters.js:834 #, fuzzy #| msgid "Units" msgid "Has Choices" @@ -15028,10 +15532,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: templates/js/translated/tables.js:558 -msgid "Columns" -msgstr "" - #: templates/js/translated/tables.js:561 msgid "All" msgstr "" @@ -15321,38 +15821,58 @@ msgstr "" msgid "Revoked" msgstr "" -#: users/models.py:375 +#: users/models.py:379 msgid "Permission set" msgstr "权限设置" -#: users/models.py:384 +#: users/models.py:388 msgid "Group" msgstr "群组" -#: users/models.py:388 +#: users/models.py:392 msgid "View" msgstr "视图" -#: users/models.py:388 +#: users/models.py:392 msgid "Permission to view items" msgstr "查看项目权限" -#: users/models.py:392 +#: users/models.py:396 msgid "Permission to add items" msgstr "添加项目权限" -#: users/models.py:396 +#: users/models.py:400 msgid "Change" msgstr "更改" -#: users/models.py:398 +#: users/models.py:402 msgid "Permissions to edit items" msgstr "编辑项目权限" -#: users/models.py:404 +#: users/models.py:408 msgid "Permission to delete items" msgstr "删除项目权限" +#, fuzzy +#~| msgid "Select Label Template" +#~ msgid "Default part label template" +#~ msgstr "选择标签模板" + +#, fuzzy +#~| msgid "stock items selected" +#~ msgid "Default stock item template" +#~ msgstr "已选择库存项" + +#, fuzzy +#~| msgid "No stock location set" +#~ msgid "Default stock location label template" +#~ msgstr "未设置仓储地点" + +#, fuzzy +#~| msgid "No stock location set" +#~ msgid "Default build line label template" +#~ msgstr "未设置仓储地点" + #~ msgid "parent" #~ msgstr "上级项" diff --git a/src/backend/InvenTree/machine/apps.py b/src/backend/InvenTree/machine/apps.py index 3264ac6319..cfced400c3 100755 --- a/src/backend/InvenTree/machine/apps.py +++ b/src/backend/InvenTree/machine/apps.py @@ -26,7 +26,6 @@ class MachineConfig(AppConfig): if ( not canAppAccessDatabase(allow_test=True) or not isPluginRegistryLoaded() - or not isInMainThread() or isRunningMigrations() or isImportingData() ): @@ -37,7 +36,7 @@ class MachineConfig(AppConfig): try: logger.info('Loading InvenTree machines') - registry.initialize() + registry.initialize(main=isInMainThread()) except (OperationalError, ProgrammingError): # Database might not yet be ready logger.warn('Database was not ready for initializing machines') diff --git a/src/backend/InvenTree/machine/machine_type.py b/src/backend/InvenTree/machine/machine_type.py index 35510e7209..9d9a456e81 100644 --- a/src/backend/InvenTree/machine/machine_type.py +++ b/src/backend/InvenTree/machine/machine_type.py @@ -3,7 +3,11 @@ from typing import TYPE_CHECKING, Any, Literal, Union from generic.states import StatusCode -from InvenTree.helpers_mixin import ClassProviderMixin, ClassValidationMixin +from InvenTree.helpers_mixin import ( + ClassProviderMixin, + ClassValidationMixin, + get_shared_class_instance_state_mixin, +) # Import only for typechecking, otherwise this throws cyclic import errors if TYPE_CHECKING: @@ -44,7 +48,11 @@ class MachineStatus(StatusCode): """ -class BaseDriver(ClassValidationMixin, ClassProviderMixin): +class BaseDriver( + ClassValidationMixin, + ClassProviderMixin, + get_shared_class_instance_state_mixin(lambda x: f'machine:driver:{x.SLUG}'), +): """Base class for all machine drivers. Attributes: @@ -69,8 +77,6 @@ class BaseDriver(ClassValidationMixin, ClassProviderMixin): """Base driver __init__ method.""" super().__init__() - self.errors: list[Union[str, Exception]] = [] - def init_driver(self): """This method gets called after all machines are created and can be used to initialize the driver. @@ -133,10 +139,20 @@ class BaseDriver(ClassValidationMixin, ClassProviderMixin): Arguments: error: Exception or string """ - self.errors.append(error) + self.set_shared_state('errors', self.errors + [error]) + + # --- state getters/setters + @property + def errors(self) -> list[Union[str, Exception]]: + """List of driver errors.""" + return self.get_shared_state('errors', []) -class BaseMachineType(ClassValidationMixin, ClassProviderMixin): +class BaseMachineType( + ClassValidationMixin, + ClassProviderMixin, + get_shared_class_instance_state_mixin(lambda x: f'machine:machine:{x.pk}'), +): """Base class for machine types. Attributes: @@ -178,12 +194,6 @@ class BaseMachineType(ClassValidationMixin, ClassProviderMixin): from machine import registry from machine.models import MachineSetting - self.errors: list[Union[str, Exception]] = [] - self.initialized = False - - self.status = self.default_machine_status - self.status_text: str = '' - self.pk = machine_config.pk self.driver = registry.get_driver_instance(machine_config.driver) @@ -208,8 +218,6 @@ class BaseMachineType(ClassValidationMixin, ClassProviderMixin): (self.driver_settings, MachineSetting.ConfigType.DRIVER), ] - self.restart_required = False - def __str__(self): """String representation of a machine.""" return f'{self.name}' @@ -272,16 +280,32 @@ class BaseMachineType(ClassValidationMixin, ClassProviderMixin): try: self.driver.update_machine(old_state, self) + + # check if the active state has changed and initialize the machine if necessary + if old_state['active'] != self.active: + if self.initialized is False and self.active is True: + self.initialize() + elif self.initialized is True and self.active is False: + self.initialized = False except Exception as e: self.handle_error(e) def restart(self): - """Machine restart function, can be used to manually restart the machine from the admin ui.""" + """Machine restart function, can be used to manually restart the machine from the admin ui. + + This will first reset the machines state (errors, status, status_text) and then call the drivers restart function. + """ if self.driver is None: return try: + # reset the machine state self.restart_required = False + self.reset_errors() + self.set_status(self.default_machine_status) + self.set_status_text('') + + # call the driver restart function self.driver.restart_machine(self) except Exception as e: self.handle_error(e) @@ -293,7 +317,11 @@ class BaseMachineType(ClassValidationMixin, ClassProviderMixin): Arguments: error: Exception or string """ - self.errors.append(error) + self.set_shared_state('errors', self.errors + [error]) + + def reset_errors(self): + """Helper function for resetting the error list for a machine.""" + self.set_shared_state('errors', []) def get_setting( self, key: str, config_type_str: Literal['M', 'D'], cache: bool = False @@ -364,7 +392,7 @@ class BaseMachineType(ClassValidationMixin, ClassProviderMixin): Arguments: status: The new MachineStatus code to set """ - self.status = status + self.set_shared_state('status', status.value) def set_status_text(self, status_text: str): """Set the machine status text. It can be any arbitrary text. @@ -372,4 +400,39 @@ class BaseMachineType(ClassValidationMixin, ClassProviderMixin): Arguments: status_text: The new status text to set """ - self.status_text = status_text + self.set_shared_state('status_text', status_text) + + # --- state getters/setters + @property + def initialized(self) -> bool: + """Initialized state of the machine.""" + return self.get_shared_state('initialized', False) + + @initialized.setter + def initialized(self, value: bool): + self.set_shared_state('initialized', value) + + @property + def restart_required(self) -> bool: + """Restart required state of the machine.""" + return self.get_shared_state('restart_required', False) + + @restart_required.setter + def restart_required(self, value: bool): + self.set_shared_state('restart_required', value) + + @property + def errors(self) -> list[Union[str, Exception]]: + """List of machine errors.""" + return self.get_shared_state('errors', []) + + @property + def status(self) -> MachineStatus: + """Machine status code.""" + status_code = self.get_shared_state('status', self.default_machine_status.value) + return self.MACHINE_STATUS(status_code) + + @property + def status_text(self) -> str: + """Machine status text.""" + return self.get_shared_state('status_text', '') diff --git a/src/backend/InvenTree/machine/machine_types/label_printer.py b/src/backend/InvenTree/machine/machine_types/label_printer.py index 4fd7f04405..e2817322c5 100644 --- a/src/backend/InvenTree/machine/machine_types/label_printer.py +++ b/src/backend/InvenTree/machine/machine_types/label_printer.py @@ -2,9 +2,10 @@ from typing import Union, cast +from django.contrib.auth.models import AnonymousUser from django.db import models from django.db.models.query import QuerySet -from django.http import HttpResponse, JsonResponse +from django.http import HttpRequest, HttpResponse, JsonResponse from django.utils.translation import gettext_lazy as _ from PIL.Image import Image @@ -34,7 +35,6 @@ class LabelPrinterBaseDriver(BaseDriver): machine: 'LabelPrinterMachine', label: LabelTemplate, item: models.Model, - request: Request, **kwargs, ) -> None: """Print a single label with the provided template and item. @@ -43,7 +43,6 @@ class LabelPrinterBaseDriver(BaseDriver): machine: The LabelPrintingMachine instance that should be used for printing label: The LabelTemplate object to use for printing item: The database item to print (e.g. StockItem instance) - request: The HTTP request object which triggered this print job Keyword Arguments: printing_options (dict): The printing options set for this print job defined in the PrintingOptionsSerializer @@ -57,8 +56,7 @@ class LabelPrinterBaseDriver(BaseDriver): self, machine: 'LabelPrinterMachine', label: LabelTemplate, - items: QuerySet, - request: Request, + items: QuerySet[models.Model], **kwargs, ) -> Union[None, JsonResponse]: """Print one or more labels with the provided template and items. @@ -67,7 +65,6 @@ class LabelPrinterBaseDriver(BaseDriver): machine: The LabelPrintingMachine instance that should be used for printing label: The LabelTemplate object to use for printing items: The list of database items to print (e.g. StockItem instances) - request: The HTTP request object which triggered this print job Keyword Arguments: printing_options (dict): The printing options set for this print job defined in the PrintingOptionsSerializer @@ -81,7 +78,7 @@ class LabelPrinterBaseDriver(BaseDriver): but this can be overridden by the particular driver. """ for item in items: - self.print_label(machine, label, item, request, **kwargs) + self.print_label(machine, label, item, **kwargs) def get_printers( self, label: LabelTemplate, items: QuerySet, **kwargs @@ -123,60 +120,50 @@ class LabelPrinterBaseDriver(BaseDriver): return cast(LabelPrintingMixin, plg) def render_to_pdf( - self, label: LabelTemplate, item: models.Model, request: Request, **kwargs + self, label: LabelTemplate, item: models.Model, **kwargs ) -> HttpResponse: """Helper method to render a label to PDF format for a specific item. Arguments: label: The LabelTemplate object to render item: The item to render the label with - request: The HTTP request object which triggered this print job """ - label.object_to_print = item - response = self.machine_plugin.render_to_pdf(label, request, **kwargs) - label.object_to_print = None - return response + request = self._get_dummy_request() + return self.machine_plugin.render_to_pdf(label, item, request, **kwargs) def render_to_pdf_data( - self, label: LabelTemplate, item: models.Model, request: Request, **kwargs + self, label: LabelTemplate, item: models.Model, **kwargs ) -> bytes: """Helper method to render a label to PDF and return it as bytes for a specific item. Arguments: label: The LabelTemplate object to render item: The item to render the label with - request: The HTTP request object which triggered this print job """ return ( - self.render_to_pdf(label, item, request, **kwargs) + self.render_to_pdf(label, item, **kwargs) .get_document() # type: ignore .write_pdf() ) - def render_to_html( - self, label: LabelTemplate, item: models.Model, request: Request, **kwargs - ) -> str: + def render_to_html(self, label: LabelTemplate, item: models.Model, **kwargs) -> str: """Helper method to render a label to HTML format for a specific item. Arguments: label: The LabelTemplate object to render item: The item to render the label with - request: The HTTP request object which triggered this print job """ - label.object_to_print = item - html = self.machine_plugin.render_to_html(label, request, **kwargs) - label.object_to_print = None - return html + request = self._get_dummy_request() + return self.machine_plugin.render_to_html(label, item, request, **kwargs) def render_to_png( - self, label: LabelTemplate, item: models.Model, request: Request, **kwargs - ) -> Image: + self, label: LabelTemplate, item: models.Model, **kwargs + ) -> Union[Image, None]: """Helper method to render a label to PNG format for a specific item. Arguments: label: The LabelTemplate object to render item: The item to render the label with - request: The HTTP request object which triggered this print job Keyword Arguments: pdf_data (bytes): The pdf document as bytes (optional) @@ -186,10 +173,20 @@ class LabelPrinterBaseDriver(BaseDriver): pdf2image_kwargs (dict): Additional keyword arguments to pass to the [`pdf2image.convert_from_bytes`](https://pdf2image.readthedocs.io/en/latest/reference.html#pdf2image.pdf2image.convert_from_bytes) method (optional) """ - label.object_to_print = item - png = self.machine_plugin.render_to_png(label, request, **kwargs) - label.object_to_print = None - return png + request = self._get_dummy_request() + return self.machine_plugin.render_to_png(label, item, request, **kwargs) + + def _get_dummy_request(self): + """Return a dummy request object to it work with legacy code. + + Note: this is a private method and can be removed at anytime + """ + r = HttpRequest() + r.META['SERVER_PORT'] = '80' + r.META['SERVER_NAME'] = 'localhost' + r.user = AnonymousUser() + + return r required_overrides = [[print_label, print_labels]] @@ -235,6 +232,7 @@ class LabelPrinterStatus(MachineStatus): UNKNOWN = 101, _('Unknown'), 'secondary' PRINTING = 110, _('Printing'), 'primary' NO_MEDIA = 301, _('No media'), 'warning' + PAPER_JAM = 302, _('Paper jam'), 'warning' DISCONNECTED = 400, _('Disconnected'), 'danger' diff --git a/src/backend/InvenTree/machine/registry.py b/src/backend/InvenTree/machine/registry.py index c2d09a6e5b..c896546c54 100644 --- a/src/backend/InvenTree/machine/registry.py +++ b/src/backend/InvenTree/machine/registry.py @@ -1,15 +1,20 @@ """Machine registry.""" import logging -from typing import Union +from typing import Union, cast from uuid import UUID +from django.core.cache import cache + +from InvenTree.helpers_mixin import get_shared_class_instance_state_mixin from machine.machine_type import BaseDriver, BaseMachineType logger = logging.getLogger('inventree') -class MachineRegistry: +class MachineRegistry( + get_shared_class_instance_state_mixin(lambda _x: f'machine:registry') +): """Machine registry class.""" def __init__(self) -> None: @@ -23,17 +28,27 @@ class MachineRegistry: self.machines: dict[str, BaseMachineType] = {} self.base_drivers: list[type[BaseDriver]] = [] - self.errors: list[Union[str, Exception]] = [] + + self._hash = None + + @property + def errors(self) -> list[Union[str, Exception]]: + """List of registry errors.""" + return cast(list[Union[str, Exception]], self.get_shared_state('errors', [])) def handle_error(self, error: Union[Exception, str]): """Helper function for capturing errors with the machine registry.""" - self.errors.append(error) + self.set_shared_state('errors', self.errors + [error]) - def initialize(self): + def initialize(self, main: bool = False): """Initialize the machine registry.""" + # clear cache for machines (only needed for global redis cache) + if main and hasattr(cache, 'delete_pattern'): # pragma: no cover + cache.delete_pattern(f'machine:*') + self.discover_machine_types() self.discover_drivers() - self.load_machines() + self.load_machines(main=main) def discover_machine_types(self): """Discovers all machine types by inferring all classes that inherit the BaseMachineType class.""" @@ -113,26 +128,39 @@ class MachineRegistry: return self.driver_instances.get(slug, None) - def load_machines(self): + def load_machines(self, main: bool = False): """Load all machines defined in the database into the machine registry.""" # Imports need to be in this level to prevent early db model imports from machine.models import MachineConfig for machine_config in MachineConfig.objects.all(): - self.add_machine(machine_config, initialize=False) + self.add_machine( + machine_config, initialize=False, update_registry_hash=False + ) - # initialize drivers - for driver in self.driver_instances.values(): - driver.init_driver() + # initialize machines only in main thread + if main: + # initialize drivers + for driver in self.driver_instances.values(): + driver.init_driver() - # initialize machines after all machine instances were created - for machine in self.machines.values(): - if machine.active: - machine.initialize() + # initialize machines after all machine instances were created + for machine in self.machines.values(): + if machine.active: + machine.initialize() - logger.info('Initialized %s machines', len(self.machines.keys())) + self._update_registry_hash() + logger.info('Initialized %s machines', len(self.machines.keys())) + else: + self._hash = None # reset hash to force reload hash + logger.info('Loaded %s machines', len(self.machines.keys())) - def add_machine(self, machine_config, initialize=True): + def reload_machines(self): + """Reload all machines from the database.""" + self.machines = {} + self.load_machines() + + def add_machine(self, machine_config, initialize=True, update_registry_hash=True): """Add a machine to the machine registry.""" machine_type = self.machine_types.get(machine_config.machine_type, None) if machine_type is None: @@ -145,11 +173,19 @@ class MachineRegistry: if initialize and machine.active: machine.initialize() - def update_machine(self, old_machine_state, machine_config): + if update_registry_hash: + self._update_registry_hash() + + def update_machine( + self, old_machine_state, machine_config, update_registry_hash=True + ): """Notify the machine about an update.""" if machine := machine_config.machine: machine.update(old_machine_state) + if update_registry_hash: + self._update_registry_hash() + def restart_machine(self, machine): """Restart a machine.""" machine.restart() @@ -157,6 +193,7 @@ class MachineRegistry: def remove_machine(self, machine: BaseMachineType): """Remove a machine from the registry.""" self.machines.pop(str(machine.pk), None) + self._update_registry_hash() def get_machines(self, **kwargs): """Get loaded machines from registry (By default only initialized machines). @@ -169,6 +206,8 @@ class MachineRegistry: active: (bool) base_driver: base driver (class) """ + self._check_reload() + allowed_fields = [ 'name', 'machine_type', @@ -212,6 +251,7 @@ class MachineRegistry: def get_machine(self, pk: Union[str, UUID]): """Get machine from registry by pk.""" + self._check_reload() return self.machines.get(str(pk), None) def get_drivers(self, machine_type: str): @@ -222,5 +262,37 @@ class MachineRegistry: if driver.machine_type == machine_type ] + def _calculate_registry_hash(self): + """Calculate a hash of the machine registry state.""" + from hashlib import md5 + + data = md5() + + for pk, machine in self.machines.items(): + data.update(str(pk).encode()) + try: + data.update(str(machine.machine_config.active).encode()) + except: + # machine does not exist anymore, hash will be different + pass + + return str(data.hexdigest()) + + def _check_reload(self): + """Check if the registry needs to be reloaded, and reload it.""" + if not self._hash: + self._hash = self._calculate_registry_hash() + + last_hash = self.get_shared_state('hash', None) + + if last_hash and last_hash != self._hash: + logger.info('Machine registry has changed - reloading machines') + self.reload_machines() + + def _update_registry_hash(self): + """Save the current registry hash.""" + self._hash = self._calculate_registry_hash() + self.set_shared_state('hash', self._hash) + registry: MachineRegistry = MachineRegistry() diff --git a/src/backend/InvenTree/machine/tests.py b/src/backend/InvenTree/machine/tests.py index 992ca3fe0e..0293ca2bb9 100755 --- a/src/backend/InvenTree/machine/tests.py +++ b/src/backend/InvenTree/machine/tests.py @@ -32,7 +32,7 @@ class TestMachineRegistryMixin(TestCase): registry.driver_instances = {} registry.machines = {} registry.base_drivers = [] - registry.errors = [] + registry.set_shared_state('errors', []) return super().tearDown() @@ -111,7 +111,7 @@ class TestDriverMachineInterface(TestMachineRegistryMixin, TestCase): self.machines = [self.machine1, self.machine2, self.machine3] # init registry - registry.initialize() + registry.initialize(main=True) # mock machine implementation self.machine_mocks = { @@ -230,7 +230,7 @@ class TestLabelPrinterMachineType(TestMachineRegistryMixin, InvenTreeAPITestCase active=True, ) - registry.initialize() + registry.initialize(main=True) driver_instance = cast( TestingLabelPrinterDriver, registry.get_driver_instance('testing-label-printer'), diff --git a/src/backend/InvenTree/order/api.py b/src/backend/InvenTree/order/api.py index 2cd8e59351..1850439602 100644 --- a/src/backend/InvenTree/order/api.py +++ b/src/backend/InvenTree/order/api.py @@ -21,21 +21,13 @@ import common.models import common.settings import company.models from generic.states.api import StatusView -from InvenTree.api import APIDownloadMixin, ListCreateDestroyAPIView, MetadataView +from importer.mixins import DataExportViewMixin +from InvenTree.api import ListCreateDestroyAPIView, MetadataView from InvenTree.filters import SEARCH_ORDER_FILTER, SEARCH_ORDER_FILTER_ALIAS -from InvenTree.helpers import DownloadFile, str2bool +from InvenTree.helpers import str2bool from InvenTree.helpers_model import construct_absolute_url, get_base_url from InvenTree.mixins import CreateAPI, ListAPI, ListCreateAPI, RetrieveUpdateDestroyAPI from order import models, serializers -from order.admin import ( - PurchaseOrderExtraLineResource, - PurchaseOrderLineItemResource, - PurchaseOrderResource, - ReturnOrderResource, - SalesOrderExtraLineResource, - SalesOrderLineItemResource, - SalesOrderResource, -) from order.status_codes import ( PurchaseOrderStatus, PurchaseOrderStatusGroups, @@ -48,7 +40,7 @@ from part.models import Part from users.models import Owner -class GeneralExtraLineList(APIDownloadMixin): +class GeneralExtraLineList(DataExportViewMixin): """General template for ExtraLine API classes.""" def get_serializer(self, *args, **kwargs): @@ -211,7 +203,7 @@ class PurchaseOrderMixin: return queryset -class PurchaseOrderList(PurchaseOrderMixin, APIDownloadMixin, ListCreateAPI): +class PurchaseOrderList(PurchaseOrderMixin, DataExportViewMixin, ListCreateAPI): """API endpoint for accessing a list of PurchaseOrder objects. - GET: Return list of PurchaseOrder objects (with filters) @@ -268,16 +260,6 @@ class PurchaseOrderList(PurchaseOrderMixin, APIDownloadMixin, ListCreateAPI): serializer.data, status=status.HTTP_201_CREATED, headers=headers ) - def download_queryset(self, queryset, export_format): - """Download the filtered queryset as a file.""" - dataset = PurchaseOrderResource().export(queryset=queryset) - - filedata = dataset.export(export_format) - - filename = f'InvenTree_PurchaseOrders.{export_format}' - - return DownloadFile(filedata, filename) - def filter_queryset(self, queryset): """Custom queryset filtering.""" # Perform basic filtering @@ -529,7 +511,7 @@ class PurchaseOrderLineItemMixin: class PurchaseOrderLineItemList( - PurchaseOrderLineItemMixin, APIDownloadMixin, ListCreateDestroyAPIView + PurchaseOrderLineItemMixin, DataExportViewMixin, ListCreateDestroyAPIView ): """API endpoint for accessing a list of PurchaseOrderLineItem objects. @@ -577,16 +559,6 @@ class PurchaseOrderLineItemList( serializer.data, status=status.HTTP_201_CREATED, headers=headers ) - def download_queryset(self, queryset, export_format): - """Download the requested queryset as a file.""" - dataset = PurchaseOrderLineItemResource().export(queryset=queryset) - - filedata = dataset.export(export_format) - - filename = f'InvenTree_PurchaseOrderItems.{export_format}' - - return DownloadFile(filedata, filename) - filter_backends = SEARCH_ORDER_FILTER_ALIAS ordering_field_aliases = { @@ -632,14 +604,6 @@ class PurchaseOrderExtraLineList(GeneralExtraLineList, ListCreateAPI): queryset = models.PurchaseOrderExtraLine.objects.all() serializer_class = serializers.PurchaseOrderExtraLineSerializer - def download_queryset(self, queryset, export_format): - """Download this queryset as a file.""" - dataset = PurchaseOrderExtraLineResource().export(queryset=queryset) - filedata = dataset.export(export_format) - filename = f'InvenTree_ExtraPurchaseOrderLines.{export_format}' - - return DownloadFile(filedata, filename) - class PurchaseOrderExtraLineDetail(RetrieveUpdateDestroyAPI): """API endpoint for detail view of a PurchaseOrderExtraLine object.""" @@ -689,7 +653,7 @@ class SalesOrderMixin: return queryset -class SalesOrderList(SalesOrderMixin, APIDownloadMixin, ListCreateAPI): +class SalesOrderList(SalesOrderMixin, DataExportViewMixin, ListCreateAPI): """API endpoint for accessing a list of SalesOrder objects. - GET: Return list of SalesOrder objects (with filters) @@ -712,16 +676,6 @@ class SalesOrderList(SalesOrderMixin, APIDownloadMixin, ListCreateAPI): serializer.data, status=status.HTTP_201_CREATED, headers=headers ) - def download_queryset(self, queryset, export_format): - """Download this queryset as a file.""" - dataset = SalesOrderResource().export(queryset=queryset) - - filedata = dataset.export(export_format) - - filename = f'InvenTree_SalesOrders.{export_format}' - - return DownloadFile(filedata, filename) - def filter_queryset(self, queryset): """Perform custom filtering operations on the SalesOrder queryset.""" queryset = super().filter_queryset(queryset) @@ -871,20 +825,13 @@ class SalesOrderLineItemMixin: return queryset -class SalesOrderLineItemList(SalesOrderLineItemMixin, APIDownloadMixin, ListCreateAPI): +class SalesOrderLineItemList( + SalesOrderLineItemMixin, DataExportViewMixin, ListCreateAPI +): """API endpoint for accessing a list of SalesOrderLineItem objects.""" filterset_class = SalesOrderLineItemFilter - def download_queryset(self, queryset, export_format): - """Download the requested queryset as a file.""" - dataset = SalesOrderLineItemResource().export(queryset=queryset) - filedata = dataset.export(export_format) - - filename = f'InvenTree_SalesOrderItems.{export_format}' - - return DownloadFile(filedata, filename) - filter_backends = SEARCH_ORDER_FILTER_ALIAS ordering_fields = [ @@ -919,14 +866,6 @@ class SalesOrderExtraLineList(GeneralExtraLineList, ListCreateAPI): queryset = models.SalesOrderExtraLine.objects.all() serializer_class = serializers.SalesOrderExtraLineSerializer - def download_queryset(self, queryset, export_format): - """Download this queryset as a file.""" - dataset = SalesOrderExtraLineResource().export(queryset=queryset) - filedata = dataset.export(export_format) - filename = f'InvenTree_ExtraSalesOrderLines.{export_format}' - - return DownloadFile(filedata, filename) - class SalesOrderExtraLineDetail(RetrieveUpdateDestroyAPI): """API endpoint for detail view of a SalesOrderExtraLine object.""" @@ -1175,7 +1114,7 @@ class ReturnOrderMixin: return queryset -class ReturnOrderList(ReturnOrderMixin, APIDownloadMixin, ListCreateAPI): +class ReturnOrderList(ReturnOrderMixin, DataExportViewMixin, ListCreateAPI): """API endpoint for accessing a list of ReturnOrder objects.""" filterset_class = ReturnOrderFilter @@ -1194,14 +1133,6 @@ class ReturnOrderList(ReturnOrderMixin, APIDownloadMixin, ListCreateAPI): serializer.data, status=status.HTTP_201_CREATED, headers=headers ) - def download_queryset(self, queryset, export_format): - """Download this queryset as a file.""" - dataset = ReturnOrderResource().export(queryset=queryset) - filedata = dataset.export(export_format) - filename = f'InvenTree_ReturnOrders.{export_format}' - - return DownloadFile(filedata, filename) - filter_backends = SEARCH_ORDER_FILTER_ALIAS ordering_field_aliases = { @@ -1336,18 +1267,12 @@ class ReturnOrderLineItemMixin: class ReturnOrderLineItemList( - ReturnOrderLineItemMixin, APIDownloadMixin, ListCreateAPI + ReturnOrderLineItemMixin, DataExportViewMixin, ListCreateAPI ): """API endpoint for accessing a list of ReturnOrderLineItemList objects.""" filterset_class = ReturnOrderLineItemFilter - def download_queryset(self, queryset, export_format): - """Download the requested queryset as a file.""" - raise NotImplementedError( - 'download_queryset not yet implemented for this endpoint' - ) - filter_backends = SEARCH_ORDER_FILTER ordering_fields = ['reference', 'target_date', 'received_date'] @@ -1372,10 +1297,6 @@ class ReturnOrderExtraLineList(GeneralExtraLineList, ListCreateAPI): queryset = models.ReturnOrderExtraLine.objects.all() serializer_class = serializers.ReturnOrderExtraLineSerializer - def download_queryset(self, queryset, export_format): - """Download this queryset as a file.""" - raise NotImplementedError('download_queryset not yet implemented') - class ReturnOrderExtraLineDetail(RetrieveUpdateDestroyAPI): """API endpoint for detail view of a ReturnOrderExtraLine object.""" diff --git a/src/backend/InvenTree/order/migrations/0001_initial.py b/src/backend/InvenTree/order/migrations/0001_initial.py index edceeffc11..498aad2983 100644 --- a/src/backend/InvenTree/order/migrations/0001_initial.py +++ b/src/backend/InvenTree/order/migrations/0001_initial.py @@ -44,6 +44,7 @@ class Migration(migrations.Migration): ], options={ 'abstract': False, + 'verbose_name': 'Purchase Order Line Item' }, ), ] diff --git a/src/backend/InvenTree/order/migrations/0020_auto_20200420_0940.py b/src/backend/InvenTree/order/migrations/0020_auto_20200420_0940.py index 44d1401438..083c300df3 100644 --- a/src/backend/InvenTree/order/migrations/0020_auto_20200420_0940.py +++ b/src/backend/InvenTree/order/migrations/0020_auto_20200420_0940.py @@ -59,6 +59,7 @@ class Migration(migrations.Migration): ], options={ 'abstract': False, + 'verbose_name': 'Sales Order Line Item', }, ), migrations.CreateModel( diff --git a/src/backend/InvenTree/order/migrations/0024_salesorderallocation.py b/src/backend/InvenTree/order/migrations/0024_salesorderallocation.py index ca8ed182d9..d3a4623b20 100644 --- a/src/backend/InvenTree/order/migrations/0024_salesorderallocation.py +++ b/src/backend/InvenTree/order/migrations/0024_salesorderallocation.py @@ -22,5 +22,8 @@ class Migration(migrations.Migration): ('item', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='sales_order_allocation', to='stock.StockItem')), ('line', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='allocations', to='order.SalesOrderLineItem')), ], + options={ + 'verbose_name': 'Sales Order Allocation', + }, ), ] diff --git a/src/backend/InvenTree/order/migrations/0053_salesordershipment.py b/src/backend/InvenTree/order/migrations/0053_salesordershipment.py index 85ab90f46a..440b9fbeef 100644 --- a/src/backend/InvenTree/order/migrations/0053_salesordershipment.py +++ b/src/backend/InvenTree/order/migrations/0053_salesordershipment.py @@ -23,5 +23,8 @@ class Migration(migrations.Migration): ('checked_by', models.ForeignKey(blank=True, help_text='User who checked this shipment', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='Checked By')), ('order', models.ForeignKey(help_text='Sales Order', on_delete=django.db.models.deletion.CASCADE, related_name='shipments', to='order.salesorder', verbose_name='Order')), ], + options={ + 'verbose_name': 'Sales Order Shipment', + }, ), ] diff --git a/src/backend/InvenTree/order/migrations/0064_purchaseorderextraline_salesorderextraline.py b/src/backend/InvenTree/order/migrations/0064_purchaseorderextraline_salesorderextraline.py index 1c3d2ff743..86784edf93 100644 --- a/src/backend/InvenTree/order/migrations/0064_purchaseorderextraline_salesorderextraline.py +++ b/src/backend/InvenTree/order/migrations/0064_purchaseorderextraline_salesorderextraline.py @@ -86,6 +86,7 @@ class Migration(migrations.Migration): ], options={ 'abstract': False, + 'verbose_name': 'Sales Order Extra Line', }, ), migrations.CreateModel( @@ -103,6 +104,7 @@ class Migration(migrations.Migration): ], options={ 'abstract': False, + 'verbose_name': 'Purchase Order Extra Line', }, ), migrations.RunPython(convert_line_items, reverse_code=nunconvert_line_items), diff --git a/src/backend/InvenTree/order/migrations/0083_returnorderextraline.py b/src/backend/InvenTree/order/migrations/0083_returnorderextraline.py index ba1d8c2812..dd6bf69767 100644 --- a/src/backend/InvenTree/order/migrations/0083_returnorderextraline.py +++ b/src/backend/InvenTree/order/migrations/0083_returnorderextraline.py @@ -30,6 +30,7 @@ class Migration(migrations.Migration): ], options={ 'abstract': False, + 'verbose_name': 'Return Order Extra Line', }, ), ] diff --git a/src/backend/InvenTree/order/migrations/0085_auto_20230322_1056.py b/src/backend/InvenTree/order/migrations/0085_auto_20230322_1056.py index 9a5f4a652f..ea3ad7223d 100644 --- a/src/backend/InvenTree/order/migrations/0085_auto_20230322_1056.py +++ b/src/backend/InvenTree/order/migrations/0085_auto_20230322_1056.py @@ -44,6 +44,7 @@ class Migration(migrations.Migration): ], options={ 'unique_together': {('order', 'item')}, + 'verbose_name': 'Return Order Line Item', }, ), ] diff --git a/src/backend/InvenTree/order/models.py b/src/backend/InvenTree/order/models.py index 077dd94bda..6020456971 100644 --- a/src/backend/InvenTree/order/models.py +++ b/src/backend/InvenTree/order/models.py @@ -400,7 +400,7 @@ class PurchaseOrder(TotalPriceMixin, Order): return PurchaseOrderStatusGroups @classmethod - def api_defaults(cls, request): + def api_defaults(cls, request=None): """Return default values for this model when issuing an API OPTIONS request.""" defaults = { 'reference': order.validators.generate_next_purchase_order_reference() @@ -742,6 +742,14 @@ class PurchaseOrder(TotalPriceMixin, Order): # Extract optional notes field notes = kwargs.get('notes', '') + # Extract optional packaging field + packaging = kwargs.get('packaging', None) + + if not packaging: + # Default to the packaging field for the linked supplier part + if line.part: + packaging = line.part.packaging + # Extract optional barcode field barcode = kwargs.get('barcode', None) @@ -791,6 +799,7 @@ class PurchaseOrder(TotalPriceMixin, Order): purchase_order=self, status=status, batch=batch_code, + packaging=packaging, serial=sn, purchase_price=unit_purchase_price, ) @@ -865,7 +874,7 @@ class SalesOrder(TotalPriceMixin, Order): return SalesOrderStatusGroups @classmethod - def api_defaults(cls, request): + def api_defaults(cls, request=None): """Return default values for this model when issuing an API OPTIONS request.""" defaults = {'reference': order.validators.generate_next_sales_order_reference()} @@ -1355,6 +1364,11 @@ class PurchaseOrderLineItem(OrderLineItem): order: Reference to a PurchaseOrder object """ + class Meta: + """Model meta options.""" + + verbose_name = _('Purchase Order Line Item') + # Filter for determining if a particular PurchaseOrderLineItem is overdue OVERDUE_FILTER = ( Q(received__lt=F('quantity')) @@ -1492,6 +1506,11 @@ class PurchaseOrderExtraLine(OrderExtraLine): price: The unit price for this OrderLine """ + class Meta: + """Model meta options.""" + + verbose_name = _('Purchase Order Extra Line') + @staticmethod def get_api_url(): """Return the API URL associated with the PurchaseOrderExtraLine model.""" @@ -1516,6 +1535,11 @@ class SalesOrderLineItem(OrderLineItem): shipped: The number of items which have actually shipped against this line item """ + class Meta: + """Model meta options.""" + + verbose_name = _('Sales Order Line Item') + # Filter for determining if a particular SalesOrderLineItem is overdue OVERDUE_FILTER = ( Q(shipped__lt=F('quantity')) @@ -1649,6 +1673,7 @@ class SalesOrderShipment( # Shipment reference must be unique for a given sales order unique_together = ['order', 'reference'] + verbose_name = _('Sales Order Shipment') @staticmethod def get_api_url(): @@ -1806,6 +1831,11 @@ class SalesOrderExtraLine(OrderExtraLine): price: The unit price for this OrderLine """ + class Meta: + """Model meta options.""" + + verbose_name = _('Sales Order Extra Line') + @staticmethod def get_api_url(): """Return the API URL associated with the SalesOrderExtraLine model.""" @@ -1830,6 +1860,11 @@ class SalesOrderAllocation(models.Model): quantity: Quantity to take from the StockItem """ + class Meta: + """Model meta options.""" + + verbose_name = _('Sales Order Allocation') + @staticmethod def get_api_url(): """Return the API URL associated with the SalesOrderAllocation model.""" @@ -2001,7 +2036,7 @@ class ReturnOrder(TotalPriceMixin, Order): return ReturnOrderStatusGroups @classmethod - def api_defaults(cls, request): + def api_defaults(cls, request=None): """Return default values for this model when issuing an API OPTIONS request.""" defaults = { 'reference': order.validators.generate_next_return_order_reference() @@ -2208,6 +2243,7 @@ class ReturnOrderLineItem(OrderLineItem): class Meta: """Metaclass options for this model.""" + verbose_name = _('Return Order Line Item') unique_together = [('order', 'item')] @staticmethod @@ -2270,6 +2306,11 @@ class ReturnOrderLineItem(OrderLineItem): class ReturnOrderExtraLine(OrderExtraLine): """Model for a single ExtraLine in a ReturnOrder.""" + class Meta: + """Metaclass options for this model.""" + + verbose_name = _('Return Order Extra Line') + @staticmethod def get_api_url(): """Return the API URL associated with the ReturnOrderExtraLine model.""" diff --git a/src/backend/InvenTree/order/serializers.py b/src/backend/InvenTree/order/serializers.py index 75f0990a03..f8ed5c6f39 100644 --- a/src/backend/InvenTree/order/serializers.py +++ b/src/backend/InvenTree/order/serializers.py @@ -33,6 +33,8 @@ from company.serializers import ( ContactSerializer, SupplierPartSerializer, ) +from importer.mixins import DataImportExportSerializerMixin +from importer.registry import register_importer from InvenTree.helpers import ( current_date, extract_serial_numbers, @@ -72,9 +74,11 @@ class TotalPriceMixin(serializers.Serializer): ) -class AbstractOrderSerializer(serializers.Serializer): +class AbstractOrderSerializer(DataImportExportSerializerMixin, serializers.Serializer): """Abstract serializer class which provides fields common to all order types.""" + export_exclude_fields = ['notes'] + # Number of line items in this order line_items = serializers.IntegerField(read_only=True, label=_('Line Items')) @@ -100,6 +104,10 @@ class AbstractOrderSerializer(serializers.Serializer): source='responsible', read_only=True, many=False ) + project_code_label = serializers.CharField( + source='project_code.code', read_only=True, label='Project Code Label' + ) + # Detail for project code field project_code_detail = ProjectCodeSerializer( source='project_code', read_only=True, many=False @@ -143,6 +151,7 @@ class AbstractOrderSerializer(serializers.Serializer): 'completed_lines', 'link', 'project_code', + 'project_code_label', 'project_code_detail', 'reference', 'responsible', @@ -159,7 +168,17 @@ class AbstractOrderSerializer(serializers.Serializer): ] + extra_fields -class AbstractExtraLineSerializer(serializers.Serializer): +class AbstractLineItemSerializer: + """Abstract serializer for LineItem object.""" + + target_date = serializers.DateField( + required=False, allow_null=True, label=_('Target Date') + ) + + +class AbstractExtraLineSerializer( + DataImportExportSerializerMixin, serializers.Serializer +): """Abstract Serializer for a ExtraLine object.""" def __init__(self, *args, **kwargs): @@ -169,7 +188,7 @@ class AbstractExtraLineSerializer(serializers.Serializer): super().__init__(*args, **kwargs) if order_detail is not True: - self.fields.pop('order_detail') + self.fields.pop('order_detail', None) quantity = serializers.FloatField() @@ -196,6 +215,7 @@ class AbstractExtraLineMeta: ] +@register_importer() class PurchaseOrderSerializer( NotesFieldMixin, TotalPriceMixin, AbstractOrderSerializer, InvenTreeModelSerializer ): @@ -230,7 +250,7 @@ class PurchaseOrderSerializer( super().__init__(*args, **kwargs) if supplier_detail is not True: - self.fields.pop('supplier_detail') + self.fields.pop('supplier_detail', None) @staticmethod def annotate_queryset(queryset): @@ -338,7 +358,12 @@ class PurchaseOrderIssueSerializer(serializers.Serializer): order.place_order() -class PurchaseOrderLineItemSerializer(InvenTreeModelSerializer): +@register_importer() +class PurchaseOrderLineItemSerializer( + DataImportExportSerializerMixin, + AbstractLineItemSerializer, + InvenTreeModelSerializer, +): """Serializer class for the PurchaseOrderLineItem model.""" class Meta: @@ -348,13 +373,13 @@ class PurchaseOrderLineItemSerializer(InvenTreeModelSerializer): fields = [ 'pk', + 'part', 'quantity', 'reference', 'notes', 'order', 'order_detail', 'overdue', - 'part', 'part_detail', 'supplier_part_detail', 'received', @@ -367,6 +392,11 @@ class PurchaseOrderLineItemSerializer(InvenTreeModelSerializer): 'total_price', 'link', 'merge_items', + 'sku', + 'mpn', + 'ipn', + 'internal_part', + 'internal_part_name', ] def __init__(self, *args, **kwargs): @@ -378,11 +408,11 @@ class PurchaseOrderLineItemSerializer(InvenTreeModelSerializer): super().__init__(*args, **kwargs) if part_detail is not True: - self.fields.pop('part_detail') - self.fields.pop('supplier_part_detail') + self.fields.pop('part_detail', None) + self.fields.pop('supplier_part_detail', None) if order_detail is not True: - self.fields.pop('order_detail') + self.fields.pop('order_detail', None) def skip_create_fields(self): """Return a list of fields to skip when creating a new object.""" @@ -424,6 +454,14 @@ class PurchaseOrderLineItemSerializer(InvenTreeModelSerializer): return queryset + part = serializers.PrimaryKeyRelatedField( + queryset=part_models.SupplierPart.objects.all(), + many=False, + required=True, + allow_null=True, + label=_('Supplier Part'), + ) + quantity = serializers.FloatField(min_value=0, required=True) def validate_quantity(self, quantity): @@ -480,6 +518,25 @@ class PurchaseOrderLineItemSerializer(InvenTreeModelSerializer): 'Merge items with the same part, destination and target date into one line item' ), default=True, + write_only=True, + ) + + sku = serializers.CharField(source='part.SKU', read_only=True, label=_('SKU')) + + mpn = serializers.CharField( + source='part.manufacturer_part.MPN', read_only=True, label=_('MPN') + ) + + ipn = serializers.CharField( + source='part.part.IPN', read_only=True, label=_('Internal Part Number') + ) + + internal_part = serializers.PrimaryKeyRelatedField( + source='part.part', read_only=True, many=False, label=_('Internal Part') + ) + + internal_part_name = serializers.CharField( + source='part.part.name', read_only=True, label=_('Internal Part Name') ) def validate(self, data): @@ -513,6 +570,7 @@ class PurchaseOrderLineItemSerializer(InvenTreeModelSerializer): return data +@register_importer() class PurchaseOrderExtraLineSerializer( AbstractExtraLineSerializer, InvenTreeModelSerializer ): @@ -538,7 +596,10 @@ class PurchaseOrderLineItemReceiveSerializer(serializers.Serializer): 'location', 'quantity', 'status', - 'batch_code' 'serial_numbers', + 'batch_code', + 'serial_numbers', + 'packaging', + 'note', ] line_item = serializers.PrimaryKeyRelatedField( @@ -566,7 +627,7 @@ class PurchaseOrderLineItemReceiveSerializer(serializers.Serializer): ) quantity = serializers.DecimalField( - max_digits=15, decimal_places=5, min_value=0, required=True + max_digits=15, decimal_places=5, min_value=Decimal(0), required=True ) def validate_quantity(self, quantity): @@ -596,6 +657,22 @@ class PurchaseOrderLineItemReceiveSerializer(serializers.Serializer): choices=StockStatus.items(), default=StockStatus.OK.value, label=_('Status') ) + packaging = serializers.CharField( + label=_('Packaging'), + help_text=_('Override packaging information for incoming stock items'), + required=False, + default='', + allow_blank=True, + ) + + note = serializers.CharField( + label=_('Note'), + help_text=_('Additional note for incoming stock items'), + required=False, + default='', + allow_blank=True, + ) + barcode = serializers.CharField( label=_('Barcode'), help_text=_('Scanned barcode'), @@ -748,13 +825,16 @@ class PurchaseOrderReceiveSerializer(serializers.Serializer): status=item['status'], barcode=item.get('barcode', ''), batch_code=item.get('batch_code', ''), + packaging=item.get('packaging', ''), serials=item.get('serials', None), + notes=item.get('note', None), ) except (ValidationError, DjangoValidationError) as exc: # Catch model errors and re-throw as DRF errors raise ValidationError(detail=serializers.as_serializer_error(exc)) +@register_importer() class SalesOrderSerializer( NotesFieldMixin, TotalPriceMixin, AbstractOrderSerializer, InvenTreeModelSerializer ): @@ -785,7 +865,7 @@ class SalesOrderSerializer( super().__init__(*args, **kwargs) if customer_detail is not True: - self.fields.pop('customer_detail') + self.fields.pop('customer_detail', None) @staticmethod def annotate_queryset(queryset): @@ -872,19 +952,19 @@ class SalesOrderAllocationSerializer(InvenTreeModelSerializer): super().__init__(*args, **kwargs) if not order_detail: - self.fields.pop('order_detail') + self.fields.pop('order_detail', None) if not part_detail: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) if not item_detail: - self.fields.pop('item_detail') + self.fields.pop('item_detail', None) if not location_detail: - self.fields.pop('location_detail') + self.fields.pop('location_detail', None) if not customer_detail: - self.fields.pop('customer_detail') + self.fields.pop('customer_detail', None) part = serializers.PrimaryKeyRelatedField(source='item.part', read_only=True) order = serializers.PrimaryKeyRelatedField( @@ -914,7 +994,12 @@ class SalesOrderAllocationSerializer(InvenTreeModelSerializer): ) -class SalesOrderLineItemSerializer(InvenTreeModelSerializer): +@register_importer() +class SalesOrderLineItemSerializer( + DataImportExportSerializerMixin, + AbstractLineItemSerializer, + InvenTreeModelSerializer, +): """Serializer for a SalesOrderLineItem object.""" class Meta: @@ -957,16 +1042,16 @@ class SalesOrderLineItemSerializer(InvenTreeModelSerializer): super().__init__(*args, **kwargs) if part_detail is not True: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) if order_detail is not True: - self.fields.pop('order_detail') + self.fields.pop('order_detail', None) if allocations is not True: - self.fields.pop('allocations') + self.fields.pop('allocations', None) if customer_detail is not True: - self.fields.pop('customer_detail') + self.fields.pop('customer_detail', None) @staticmethod def annotate_queryset(queryset): @@ -1063,6 +1148,7 @@ class SalesOrderLineItemSerializer(InvenTreeModelSerializer): ) +@register_importer() class SalesOrderShipmentSerializer(NotesFieldMixin, InvenTreeModelSerializer): """Serializer for the SalesOrderShipment class.""" @@ -1193,7 +1279,7 @@ class SalesOrderShipmentAllocationItemSerializer(serializers.Serializer): ) quantity = serializers.DecimalField( - max_digits=15, decimal_places=5, min_value=0, required=True + max_digits=15, decimal_places=5, min_value=Decimal(0), required=True ) def validate_quantity(self, quantity): @@ -1499,6 +1585,7 @@ class SalesOrderShipmentAllocationSerializer(serializers.Serializer): allocation.save() +@register_importer() class SalesOrderExtraLineSerializer( AbstractExtraLineSerializer, InvenTreeModelSerializer ): @@ -1512,6 +1599,7 @@ class SalesOrderExtraLineSerializer( order_detail = SalesOrderSerializer(source='order', many=False, read_only=True) +@register_importer() class ReturnOrderSerializer( NotesFieldMixin, AbstractOrderSerializer, TotalPriceMixin, InvenTreeModelSerializer ): @@ -1539,7 +1627,7 @@ class ReturnOrderSerializer( super().__init__(*args, **kwargs) if customer_detail is not True: - self.fields.pop('customer_detail') + self.fields.pop('customer_detail', None) @staticmethod def annotate_queryset(queryset): @@ -1690,7 +1778,12 @@ class ReturnOrderReceiveSerializer(serializers.Serializer): order.receive_line_item(line_item, location, request.user) -class ReturnOrderLineItemSerializer(InvenTreeModelSerializer): +@register_importer() +class ReturnOrderLineItemSerializer( + DataImportExportSerializerMixin, + AbstractLineItemSerializer, + InvenTreeModelSerializer, +): """Serializer for a ReturnOrderLineItem object.""" class Meta: @@ -1725,13 +1818,13 @@ class ReturnOrderLineItemSerializer(InvenTreeModelSerializer): super().__init__(*args, **kwargs) if not order_detail: - self.fields.pop('order_detail') + self.fields.pop('order_detail', None) if not item_detail: - self.fields.pop('item_detail') + self.fields.pop('item_detail', None) if not part_detail: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) order_detail = ReturnOrderSerializer(source='order', many=False, read_only=True) item_detail = stock.serializers.StockItemSerializer( @@ -1743,6 +1836,7 @@ class ReturnOrderLineItemSerializer(InvenTreeModelSerializer): price_currency = InvenTreeCurrencySerializer(help_text=_('Line price currency')) +@register_importer() class ReturnOrderExtraLineSerializer( AbstractExtraLineSerializer, InvenTreeModelSerializer ): diff --git a/src/backend/InvenTree/order/test_api.py b/src/backend/InvenTree/order/test_api.py index 5fb5fb560d..7ebabf97b5 100644 --- a/src/backend/InvenTree/order/test_api.py +++ b/src/backend/InvenTree/order/test_api.py @@ -793,14 +793,14 @@ class PurchaseOrderDownloadTest(OrderTest): """Unit tests for downloading PurchaseOrder data via the API endpoint.""" required_cols = [ - 'id', - 'line_items', - 'description', - 'issue_date', - 'notes', - 'reference', - 'status', - 'supplier_reference', + 'ID', + 'Line Items', + 'Description', + 'Issue Date', + 'Order Currency', + 'Reference', + 'Order Status', + 'Supplier Reference', ] excluded_cols = ['metadata'] @@ -818,7 +818,7 @@ class PurchaseOrderDownloadTest(OrderTest): reverse('api-po-list'), {'export': 'csv'}, expected_code=200, - expected_fn='InvenTree_PurchaseOrders.csv', + expected_fn=r'InvenTree_PurchaseOrder_.+\.csv', ) as file: data = self.process_csv( file, @@ -828,10 +828,10 @@ class PurchaseOrderDownloadTest(OrderTest): ) for row in data: - order = models.PurchaseOrder.objects.get(pk=row['id']) + order = models.PurchaseOrder.objects.get(pk=row['ID']) - self.assertEqual(order.description, row['description']) - self.assertEqual(order.reference, row['reference']) + self.assertEqual(order.description, row['Description']) + self.assertEqual(order.reference, row['Reference']) def test_download_line_items(self): """Test that the PurchaseOrderLineItems can be downloaded to a file.""" @@ -840,7 +840,7 @@ class PurchaseOrderDownloadTest(OrderTest): {'export': 'xlsx'}, decode=False, expected_code=200, - expected_fn='InvenTree_PurchaseOrderItems.xlsx', + expected_fn=r'InvenTree_PurchaseOrderLineItem.+\.xlsx', ) as file: self.assertIsInstance(file, io.BytesIO) @@ -1137,6 +1137,56 @@ class PurchaseOrderReceiveTest(OrderTest): self.assertEqual(item.quantity, 10) self.assertEqual(item.batch, 'B-xyz-789') + def test_packaging(self): + """Test that we can supply a 'packaging' value when receiving items.""" + line_1 = models.PurchaseOrderLineItem.objects.get(pk=1) + line_2 = models.PurchaseOrderLineItem.objects.get(pk=2) + + line_1.part.packaging = 'Reel' + line_1.part.save() + + line_2.part.packaging = 'Tube' + line_2.part.save() + + # Receive items without packaging data + data = { + 'items': [ + {'line_item': line_1.pk, 'quantity': 1}, + {'line_item': line_2.pk, 'quantity': 1}, + ], + 'location': 1, + } + + n = StockItem.objects.count() + + self.post(self.url, data, expected_code=201) + + item_1 = StockItem.objects.filter(supplier_part=line_1.part).first() + self.assertEqual(item_1.packaging, 'Reel') + + item_2 = StockItem.objects.filter(supplier_part=line_2.part).first() + self.assertEqual(item_2.packaging, 'Tube') + + # Receive items and override packaging data + data = { + 'items': [ + {'line_item': line_1.pk, 'quantity': 1, 'packaging': 'Bag'}, + {'line_item': line_2.pk, 'quantity': 1, 'packaging': 'Box'}, + ], + 'location': 1, + } + + self.post(self.url, data, expected_code=201) + + item_1 = StockItem.objects.filter(supplier_part=line_1.part).last() + self.assertEqual(item_1.packaging, 'Bag') + + item_2 = StockItem.objects.filter(supplier_part=line_2.part).last() + self.assertEqual(item_2.packaging, 'Box') + + # Check that the expected number of stock items has been created + self.assertEqual(n + 4, StockItem.objects.count()) + class SalesOrderTest(OrderTest): """Tests for the SalesOrder API.""" @@ -1473,13 +1523,13 @@ class SalesOrderTest(OrderTest): order.save() # Download file, check we get a 200 response - for fmt in ['csv', 'xls', 'xlsx']: + for fmt in ['csv', 'xlsx', 'tsv']: self.download_file( reverse('api-so-list'), {'export': fmt}, decode=True if fmt == 'csv' else False, expected_code=200, - expected_fn=f'InvenTree_SalesOrders.{fmt}', + expected_fn=r'InvenTree_SalesOrder_.+', ) def test_sales_order_complete(self): @@ -1635,17 +1685,13 @@ class SalesOrderDownloadTest(OrderTest): with self.assertRaises(ValueError): self.download_file(url, {}, expected_code=200) - def test_download_xls(self): - """Test xls file download.""" + def test_download_xlsx(self): + """Test xlsx file download.""" url = reverse('api-so-list') # Download .xls file with self.download_file( - url, - {'export': 'xls'}, - expected_code=200, - expected_fn='InvenTree_SalesOrders.xls', - decode=False, + url, {'export': 'xlsx'}, expected_code=200, decode=False ) as file: self.assertIsInstance(file, io.BytesIO) @@ -1654,25 +1700,22 @@ class SalesOrderDownloadTest(OrderTest): url = reverse('api-so-list') required_cols = [ - 'line_items', - 'id', - 'reference', - 'customer', - 'status', - 'shipment_date', - 'notes', - 'description', + 'Line Items', + 'ID', + 'Reference', + 'Customer', + 'Order Status', + 'Shipment Date', + 'Description', + 'Project Code', + 'Responsible', ] excluded_cols = ['metadata'] # Download .xls file with self.download_file( - url, - {'export': 'csv'}, - expected_code=200, - expected_fn='InvenTree_SalesOrders.csv', - decode=True, + url, {'export': 'csv'}, expected_code=200, decode=True ) as file: data = self.process_csv( file, @@ -1682,18 +1725,14 @@ class SalesOrderDownloadTest(OrderTest): ) for line in data: - order = models.SalesOrder.objects.get(pk=line['id']) + order = models.SalesOrder.objects.get(pk=line['ID']) - self.assertEqual(line['description'], order.description) - self.assertEqual(line['status'], str(order.status)) + self.assertEqual(line['Description'], order.description) + self.assertEqual(line['Order Status'], str(order.status)) # Download only outstanding sales orders with self.download_file( - url, - {'export': 'tsv', 'outstanding': True}, - expected_code=200, - expected_fn='InvenTree_SalesOrders.tsv', - decode=True, + url, {'export': 'tsv', 'outstanding': True}, expected_code=200, decode=True ) as file: self.process_csv( file, @@ -1989,6 +2028,18 @@ class ReturnOrderTests(InvenTreeAPITestCase): self.assertEqual(reference['required'], True) self.assertEqual(reference['type'], 'string') + def test_project_code(self): + """Test the 'project_code' serializer field.""" + self.assignRole('return_order.add') + response = self.options(reverse('api-return-order-list'), expected_code=200) + project_code = response.data['actions']['POST']['project_code'] + + self.assertFalse(project_code['required']) + self.assertFalse(project_code['read_only']) + self.assertEqual(project_code['type'], 'related field') + self.assertEqual(project_code['label'], 'Project Code') + self.assertEqual(project_code['model'], 'projectcode') + def test_list(self): """Tests for the list endpoint.""" url = reverse('api-return-order-list') diff --git a/src/backend/InvenTree/part/api.py b/src/backend/InvenTree/part/api.py index 9634e5071d..2d9be8b099 100644 --- a/src/backend/InvenTree/part/api.py +++ b/src/backend/InvenTree/part/api.py @@ -19,7 +19,8 @@ import order.models import part.filters from build.models import Build, BuildItem from build.status_codes import BuildStatusGroups -from InvenTree.api import APIDownloadMixin, ListCreateDestroyAPIView, MetadataView +from importer.mixins import DataExportViewMixin +from InvenTree.api import ListCreateDestroyAPIView, MetadataView from InvenTree.filters import ( ORDER_FILTER, ORDER_FILTER_ALIAS, @@ -28,7 +29,7 @@ from InvenTree.filters import ( InvenTreeDateFilter, InvenTreeSearchFilter, ) -from InvenTree.helpers import DownloadFile, increment_serial_number, isNull, str2bool +from InvenTree.helpers import increment_serial_number, isNull, str2bool from InvenTree.mixins import ( CreateAPI, CustomRetrieveUpdateDestroyAPI, @@ -228,7 +229,7 @@ class CategoryFilter(rest_filters.FilterSet): return queryset -class CategoryList(CategoryMixin, APIDownloadMixin, ListCreateAPI): +class CategoryList(CategoryMixin, DataExportViewMixin, ListCreateAPI): """API endpoint for accessing a list of PartCategory objects. - GET: Return a list of PartCategory objects @@ -237,14 +238,6 @@ class CategoryList(CategoryMixin, APIDownloadMixin, ListCreateAPI): filterset_class = CategoryFilter - def download_queryset(self, queryset, export_format): - """Download the filtered queryset as a data file.""" - dataset = PartCategoryResource().export(queryset=queryset) - filedata = dataset.export(export_format) - filename = f'InvenTree_Categories.{export_format}' - - return DownloadFile(filedata, filename) - filter_backends = SEARCH_ORDER_FILTER ordering_fields = ['name', 'pathstring', 'level', 'tree_id', 'lft', 'part_count'] @@ -327,7 +320,7 @@ class CategoryTree(ListAPI): return queryset -class CategoryParameterList(ListCreateAPI): +class CategoryParameterList(DataExportViewMixin, ListCreateAPI): """API endpoint for accessing a list of PartCategoryParameterTemplate objects. - GET: Return a list of PartCategoryParameterTemplate objects @@ -382,7 +375,7 @@ class PartSalePriceDetail(RetrieveUpdateDestroyAPI): serializer_class = part_serializers.PartSalePriceSerializer -class PartSalePriceList(ListCreateAPI): +class PartSalePriceList(DataExportViewMixin, ListCreateAPI): """API endpoint for list view of PartSalePriceBreak model.""" queryset = PartSellPriceBreak.objects.all() @@ -401,7 +394,7 @@ class PartInternalPriceDetail(RetrieveUpdateDestroyAPI): serializer_class = part_serializers.PartInternalPriceSerializer -class PartInternalPriceList(ListCreateAPI): +class PartInternalPriceList(DataExportViewMixin, ListCreateAPI): """API endpoint for list view of PartInternalPriceBreak model.""" queryset = PartInternalPriceBreak.objects.all() @@ -477,7 +470,7 @@ class PartTestTemplateDetail(PartTestTemplateMixin, RetrieveUpdateDestroyAPI): pass -class PartTestTemplateList(PartTestTemplateMixin, ListCreateAPI): +class PartTestTemplateList(PartTestTemplateMixin, DataExportViewMixin, ListCreateAPI): """API endpoint for listing (and creating) a PartTestTemplate.""" filterset_class = PartTestTemplateFilter @@ -918,7 +911,27 @@ class PartFilter(rest_filters.FilterSet): """Metaclass options for this filter set.""" model = Part - fields = [] + fields = ['revision_of'] + + is_revision = rest_filters.BooleanFilter( + label=_('Is Revision'), method='filter_is_revision' + ) + + def filter_is_revision(self, queryset, name, value): + """Filter by whether the Part is a revision or not.""" + if str2bool(value): + return queryset.exclude(revision_of=None) + return queryset.filter(revision_of=None) + + has_revisions = rest_filters.BooleanFilter( + label=_('Has Revisions'), method='filter_has_revisions' + ) + + def filter_has_revisions(self, queryset, name, value): + """Filter by whether the Part has any revisions or not.""" + if str2bool(value): + return queryset.exclude(revision_count=0) + return queryset.filter(revision_count=0) has_units = rest_filters.BooleanFilter(label='Has units', method='filter_has_units') @@ -1151,6 +1164,8 @@ class PartFilter(rest_filters.FilterSet): active = rest_filters.BooleanFilter() + locked = rest_filters.BooleanFilter() + virtual = rest_filters.BooleanFilter() tags_name = rest_filters.CharFilter(field_name='tags__name', lookup_expr='iexact') @@ -1209,6 +1224,7 @@ class PartMixin: kwargs['parameters'] = str2bool(params.get('parameters', None)) kwargs['category_detail'] = str2bool(params.get('category_detail', False)) + kwargs['location_detail'] = str2bool(params.get('location_detail', False)) kwargs['path_detail'] = str2bool(params.get('path_detail', False)) except AttributeError: @@ -1224,21 +1240,12 @@ class PartMixin: return context -class PartList(PartMixin, APIDownloadMixin, ListCreateAPI): +class PartList(PartMixin, DataExportViewMixin, ListCreateAPI): """API endpoint for accessing a list of Part objects, or creating a new Part instance.""" filterset_class = PartFilter is_create = True - def download_queryset(self, queryset, export_format): - """Download the filtered queryset as a data file.""" - dataset = PartResource().export(queryset=queryset) - - filedata = dataset.export(export_format) - filename = f'InvenTree_Parts.{export_format}' - - return DownloadFile(filedata, filename) - def filter_queryset(self, queryset): """Perform custom filtering of the queryset.""" params = self.request.query_params @@ -1368,11 +1375,14 @@ class PartList(PartMixin, APIDownloadMixin, ListCreateAPI): 'total_in_stock', 'unallocated_stock', 'category', + 'default_location', 'last_stocktake', 'units', 'pricing_min', 'pricing_max', 'pricing_updated', + 'revision', + 'revision_count', ] ordering_field_aliases = { @@ -1534,7 +1544,9 @@ class PartParameterTemplateMixin: return queryset -class PartParameterTemplateList(PartParameterTemplateMixin, ListCreateAPI): +class PartParameterTemplateList( + PartParameterTemplateMixin, DataExportViewMixin, ListCreateAPI +): """API endpoint for accessing a list of PartParameterTemplate objects. - GET: Return list of PartParameterTemplate objects @@ -1615,7 +1627,7 @@ class PartParameterFilter(rest_filters.FilterSet): return queryset.filter(part=part) -class PartParameterList(PartParameterAPIMixin, ListCreateAPI): +class PartParameterList(PartParameterAPIMixin, DataExportViewMixin, ListCreateAPI): """API endpoint for accessing a list of PartParameter objects. - GET: Return list of PartParameter objects @@ -1843,7 +1855,7 @@ class BomMixin: return queryset -class BomList(BomMixin, ListCreateDestroyAPIView): +class BomList(BomMixin, DataExportViewMixin, ListCreateDestroyAPIView): """API endpoint for accessing a list of BomItem objects. - GET: Return list of BomItem objects @@ -1851,7 +1863,6 @@ class BomList(BomMixin, ListCreateDestroyAPIView): """ filterset_class = BomFilter - filter_backends = SEARCH_ORDER_FILTER_ALIAS search_fields = [ @@ -1865,6 +1876,7 @@ class BomList(BomMixin, ListCreateDestroyAPIView): ] ordering_fields = [ + 'can_build', 'quantity', 'sub_part', 'available_stock', @@ -1872,6 +1884,7 @@ class BomList(BomMixin, ListCreateDestroyAPIView): 'inherited', 'optional', 'consumable', + 'validated', 'pricing_min', 'pricing_max', 'pricing_min_total', @@ -1886,6 +1899,12 @@ class BomList(BomMixin, ListCreateDestroyAPIView): 'pricing_updated': 'sub_part__pricing_data__updated', } + def validate_delete(self, queryset, request) -> None: + """Ensure that there are no 'locked' items.""" + for bom_item in queryset: + # Note: Calling check_part_lock may raise a ValidationError + bom_item.check_part_lock(bom_item.part) + class BomDetail(BomMixin, RetrieveUpdateDestroyAPI): """API endpoint for detail view of a single BomItem object.""" diff --git a/src/backend/InvenTree/part/migrations/0014_partparameter.py b/src/backend/InvenTree/part/migrations/0014_partparameter.py index a1eef38ec6..e9058bbdf6 100644 --- a/src/backend/InvenTree/part/migrations/0014_partparameter.py +++ b/src/backend/InvenTree/part/migrations/0014_partparameter.py @@ -19,5 +19,8 @@ class Migration(migrations.Migration): ('data', models.CharField(help_text='Parameter Value', max_length=100)), ('part', models.ForeignKey(help_text='Parent Part', on_delete=django.db.models.deletion.CASCADE, related_name='parameters', to='part.Part')), ], + options={ + 'verbose_name': 'Part Parameter', + }, ), ] diff --git a/src/backend/InvenTree/part/migrations/0015_auto_20190820_0251.py b/src/backend/InvenTree/part/migrations/0015_auto_20190820_0251.py index b981358519..a05555beb5 100644 --- a/src/backend/InvenTree/part/migrations/0015_auto_20190820_0251.py +++ b/src/backend/InvenTree/part/migrations/0015_auto_20190820_0251.py @@ -18,6 +18,9 @@ class Migration(migrations.Migration): ('name', models.CharField(help_text='Parameter Name', max_length=100)), ('units', models.CharField(blank=True, help_text='Parameter Units', max_length=25)), ], + options={ + 'verbose_name': 'Part Parameter Template', + }, ), migrations.RemoveField( model_name='partparameter', diff --git a/src/backend/InvenTree/part/migrations/0040_parttesttemplate.py b/src/backend/InvenTree/part/migrations/0040_parttesttemplate.py index 45e270c88c..4471cf19c5 100644 --- a/src/backend/InvenTree/part/migrations/0040_parttesttemplate.py +++ b/src/backend/InvenTree/part/migrations/0040_parttesttemplate.py @@ -19,5 +19,8 @@ class Migration(migrations.Migration): ('required', models.BooleanField(default=True, help_text='Is this test required to pass?', verbose_name='Required')), ('part', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='test_templates', to='part.Part')), ], + options={ + 'verbose_name': 'Part Test Template', + }, ), ] diff --git a/src/backend/InvenTree/part/migrations/0049_partsellpricebreak.py b/src/backend/InvenTree/part/migrations/0049_partsellpricebreak.py index 1d49dcbfac..8332d353af 100644 --- a/src/backend/InvenTree/part/migrations/0049_partsellpricebreak.py +++ b/src/backend/InvenTree/part/migrations/0049_partsellpricebreak.py @@ -24,6 +24,7 @@ class Migration(migrations.Migration): ('part', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='salepricebreaks', to='part.Part')), ], options={ + 'verbose_name': 'Part Sale Price Break', 'unique_together': {('part', 'quantity')}, }, ), diff --git a/src/backend/InvenTree/part/migrations/0053_partcategoryparametertemplate.py b/src/backend/InvenTree/part/migrations/0053_partcategoryparametertemplate.py index 6f2809af12..e6742dd6c8 100644 --- a/src/backend/InvenTree/part/migrations/0053_partcategoryparametertemplate.py +++ b/src/backend/InvenTree/part/migrations/0053_partcategoryparametertemplate.py @@ -19,6 +19,9 @@ class Migration(migrations.Migration): ('category', models.ForeignKey(help_text='Part Category', on_delete=django.db.models.deletion.CASCADE, related_name='parameter_templates', to='part.PartCategory')), ('parameter_template', models.ForeignKey(help_text='Parameter Template', on_delete=django.db.models.deletion.CASCADE, related_name='part_categories', to='part.PartParameterTemplate')), ], + options={ + 'verbose_name': 'Part Category Parameter Template', + }, ), migrations.AddConstraint( model_name='partcategoryparametertemplate', diff --git a/src/backend/InvenTree/part/migrations/0125_part_locked.py b/src/backend/InvenTree/part/migrations/0125_part_locked.py new file mode 100644 index 0000000000..a5ac79876c --- /dev/null +++ b/src/backend/InvenTree/part/migrations/0125_part_locked.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.12 on 2024-06-27 01:39 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('part', '0124_delete_partattachment'), + ] + + operations = [ + migrations.AddField( + model_name='part', + name='locked', + field=models.BooleanField(default=False, help_text='Locked parts cannot be edited', verbose_name='Locked'), + ), + ] diff --git a/src/backend/InvenTree/part/migrations/0126_part_revision_of.py b/src/backend/InvenTree/part/migrations/0126_part_revision_of.py new file mode 100644 index 0000000000..e5324d60a9 --- /dev/null +++ b/src/backend/InvenTree/part/migrations/0126_part_revision_of.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.12 on 2024-07-07 04:42 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('part', '0125_part_locked'), + ] + + operations = [ + migrations.AddField( + model_name='part', + name='revision_of', + field=models.ForeignKey(help_text='Is this part a revision of another part?', null=True, blank=True, on_delete=django.db.models.deletion.SET_NULL, related_name='revisions', to='part.part', verbose_name='Revision Of'), + ), + ] diff --git a/src/backend/InvenTree/part/models.py b/src/backend/InvenTree/part/models.py index 8fa973a964..730cf5a270 100644 --- a/src/backend/InvenTree/part/models.py +++ b/src/backend/InvenTree/part/models.py @@ -5,6 +5,7 @@ from __future__ import annotations import decimal import hashlib import logging +import math import os import re from datetime import timedelta @@ -377,6 +378,7 @@ class Part( purchaseable: Can this part be purchased from suppliers? trackable: Trackable parts can have unique serial numbers assigned, etc, etc active: Is this part active? Parts are deactivated instead of being deleted + locked: This part is locked and cannot be edited virtual: Is this part "virtual"? e.g. a software product or similar notes: Additional notes field for this part creation_date: Date that this part was added to the database @@ -481,6 +483,9 @@ class Part( - The part is still active - The part is used in a BOM for a different part. """ + if self.locked: + raise ValidationError(_('Cannot delete this part as it is locked')) + if self.active: raise ValidationError(_('Cannot delete this part as it is still active')) @@ -657,6 +662,49 @@ class Part( if match is None: raise ValidationError(_(f'IPN must match regex pattern {pattern}')) + def validate_revision(self): + """Check the 'revision' and 'revision_of' fields.""" + # Part cannot be a revision of itself + if self.revision_of: + if self.revision_of == self: + raise ValidationError({ + 'revision_of': _('Part cannot be a revision of itself') + }) + + # Part cannot be a revision of a part which is itself a revision + if self.revision_of.revision_of: + raise ValidationError({ + 'revision_of': _( + 'Cannot make a revision of a part which is already a revision' + ) + }) + + # If this part is a revision, it must have a revision code + if not self.revision: + raise ValidationError({ + 'revision': _('Revision code must be specified') + }) + + if get_global_setting('PART_REVISION_ASSEMBLY_ONLY'): + if not self.assembly or not self.revision_of.assembly: + raise ValidationError({ + 'revision_of': _( + 'Revisions are only allowed for assembly parts' + ) + }) + + # Cannot have a revision of a "template" part + if self.revision_of.is_template: + raise ValidationError({ + 'revision_of': _('Cannot make a revision of a template part') + }) + + # parent part must point to the same template (via variant_of) + if self.variant_of != self.revision_of.variant_of: + raise ValidationError({ + 'revision_of': _('Parent part must point to the same template') + }) + def validate_serial_number( self, serial: str, @@ -837,15 +885,24 @@ class Part( 'IPN': _('Duplicate IPN not allowed in part settings') }) + if self.revision_of and self.revision: + if ( + Part.objects.exclude(pk=self.pk) + .filter(revision_of=self.revision_of, revision=self.revision) + .exists() + ): + raise ValidationError(_('Duplicate part revision already exists.')) + # Ensure unique across (Name, revision, IPN) (as specified) - if ( - Part.objects.exclude(pk=self.pk) - .filter(name=self.name, revision=self.revision, IPN=self.IPN) - .exists() - ): - raise ValidationError( - _('Part with this Name, IPN and Revision already exists.') - ) + if self.revision or self.IPN: + if ( + Part.objects.exclude(pk=self.pk) + .filter(name=self.name, revision=self.revision, IPN=self.IPN) + .exists() + ): + raise ValidationError( + _('Part with this Name, IPN and Revision already exists.') + ) def clean(self): """Perform cleaning operations for the Part model. @@ -862,6 +919,9 @@ class Part( 'category': _('Parts cannot be assigned to structural part categories!') }) + # Check the 'revision' and 'revision_of' fields + self.validate_revision() + super().clean() # Strip IPN field @@ -949,6 +1009,16 @@ class Part( verbose_name=_('Revision'), ) + revision_of = models.ForeignKey( + 'part.Part', + related_name='revisions', + null=True, + blank=True, + on_delete=models.SET_NULL, + help_text=_('Is this part a revision of another part?'), + verbose_name=_('Revision Of'), + ) + link = InvenTreeURLField( blank=True, null=True, @@ -1081,6 +1151,12 @@ class Part( default=True, verbose_name=_('Active'), help_text=_('Is this part active?') ) + locked = models.BooleanField( + default=False, + verbose_name=_('Locked'), + help_text=_('Locked parts cannot be edited'), + ) + virtual = models.BooleanField( default=part_settings.part_virtual_default, verbose_name=_('Virtual'), @@ -3288,6 +3364,7 @@ class PartSellPriceBreak(common.models.PriceBreak): class Meta: """Metaclass providing extra model definition.""" + verbose_name = _('Part Sale Price Break') unique_together = ('part', 'quantity') @staticmethod @@ -3396,6 +3473,11 @@ class PartTestTemplate(InvenTree.models.InvenTreeMetadataModel): run on the model (refer to the validate_unique function). """ + class Meta: + """Metaclass options for the PartTestTemplate model.""" + + verbose_name = _('Part Test Template') + def __str__(self): """Format a string representation of this PartTestTemplate.""" return ' | '.join([self.part.name, self.test_name]) @@ -3555,6 +3637,11 @@ class PartParameterTemplate(InvenTree.models.InvenTreeMetadataModel): choices: List of valid choices for the parameter [string] """ + 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.""" @@ -3699,6 +3786,7 @@ class PartParameter(InvenTree.models.InvenTreeMetadataModel): 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') @@ -3711,11 +3799,29 @@ class PartParameter(InvenTree.models.InvenTreeMetadataModel): """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) @@ -3780,6 +3886,12 @@ class PartParameter(InvenTree.models.InvenTreeMetadataModel): 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, @@ -3841,9 +3953,16 @@ class PartCategoryParameterTemplate(InvenTree.models.InvenTreeMetadataModel): 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'], @@ -4018,15 +4137,53 @@ class BomItem( """ return Q(part__in=self.get_valid_parts_for_allocation()) + def delete(self): + """Check if this item can be deleted.""" + self.check_part_lock(self.part) + super().delete() + def save(self, *args, **kwargs): """Enforce 'clean' operation when saving a BomItem instance.""" self.clean() + self.check_part_lock(self.part) + + # Check if the part was changed + deltas = self.get_field_deltas() + + if 'part' in deltas: + if old_part := deltas['part'].get('old', None): + self.check_part_lock(old_part) + # Update the 'validated' field based on checksum calculation self.validated = self.is_line_valid super().save(*args, **kwargs) + def check_part_lock(self, assembly): + """When editing or deleting a BOM item, check if the assembly is locked. + + If locked, raise an exception. + + Arguments: + assembly: The assembly part + + Raises: + ValidationError: If the assembly is locked + """ + # TODO: Perhaps control this with a global setting? + + if assembly.locked: + raise ValidationError(_('BOM item cannot be modified - assembly is locked')) + + # If this BOM item is inherited, check all variants of the assembly + if self.inherited: + for part in assembly.get_descendants(include_self=False): + if part.locked: + raise ValidationError( + _('BOM item cannot be modified - variant assembly is locked') + ) + # A link to the parent part # Each part will get a reverse lookup field 'bom_items' part = models.ForeignKey( diff --git a/src/backend/InvenTree/part/serializers.py b/src/backend/InvenTree/part/serializers.py index 90af41890e..a87453348f 100644 --- a/src/backend/InvenTree/part/serializers.py +++ b/src/backend/InvenTree/part/serializers.py @@ -34,6 +34,8 @@ import part.tasks import stock.models import users.models from build.status_codes import BuildStatusGroups +from importer.mixins import DataImportExportSerializerMixin +from importer.registry import register_importer from InvenTree.tasks import offload_task from .models import ( @@ -57,7 +59,10 @@ from .models import ( logger = logging.getLogger('inventree') -class CategorySerializer(InvenTree.serializers.InvenTreeModelSerializer): +@register_importer() +class CategorySerializer( + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer +): """Serializer for PartCategory.""" class Meta: @@ -82,6 +87,7 @@ class CategorySerializer(InvenTree.serializers.InvenTreeModelSerializer): 'icon', 'parent_default_location', ] + read_only_fields = ['level', 'pathstring'] def __init__(self, *args, **kwargs): """Optionally add or remove extra fields.""" @@ -90,7 +96,7 @@ class CategorySerializer(InvenTree.serializers.InvenTreeModelSerializer): super().__init__(*args, **kwargs) if not path_detail: - self.fields.pop('path') + self.fields.pop('path', None) def get_starred(self, category) -> bool: """Return True if the category is directly "starred" by the current user.""" @@ -153,7 +159,10 @@ class CategoryTree(InvenTree.serializers.InvenTreeModelSerializer): return queryset.annotate(subcategories=part.filters.annotate_sub_categories()) -class PartTestTemplateSerializer(InvenTree.serializers.InvenTreeModelSerializer): +@register_importer() +class PartTestTemplateSerializer( + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer +): """Serializer for the PartTestTemplate class.""" class Meta: @@ -188,7 +197,10 @@ class PartTestTemplateSerializer(InvenTree.serializers.InvenTreeModelSerializer) return queryset.annotate(results=SubqueryCount('test_results')) -class PartSalePriceSerializer(InvenTree.serializers.InvenTreeModelSerializer): +@register_importer() +class PartSalePriceSerializer( + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer +): """Serializer for sale prices for Part model.""" class Meta: @@ -253,7 +265,10 @@ class PartThumbSerializerUpdate(InvenTree.serializers.InvenTreeModelSerializer): image = InvenTree.serializers.InvenTreeAttachmentSerializerField(required=True) -class PartParameterTemplateSerializer(InvenTree.serializers.InvenTreeModelSerializer): +@register_importer() +class PartParameterTemplateSerializer( + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer +): """JSON serializer for the PartParameterTemplate model.""" class Meta: @@ -294,7 +309,9 @@ class PartBriefSerializer(InvenTree.serializers.InvenTreeModelSerializer): 'image', 'thumbnail', 'active', + 'locked', 'assembly', + 'component', 'is_template', 'purchaseable', 'salable', @@ -314,8 +331,8 @@ class PartBriefSerializer(InvenTree.serializers.InvenTreeModelSerializer): super().__init__(*args, **kwargs) if not pricing: - self.fields.pop('pricing_min') - self.fields.pop('pricing_max') + self.fields.pop('pricing_min', None) + self.fields.pop('pricing_max', None) category_default_location = serializers.IntegerField(read_only=True) @@ -331,7 +348,10 @@ class PartBriefSerializer(InvenTree.serializers.InvenTreeModelSerializer): ) -class PartParameterSerializer(InvenTree.serializers.InvenTreeModelSerializer): +@register_importer() +class PartParameterSerializer( + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer +): """JSON serializers for the PartParameter model.""" class Meta: @@ -359,10 +379,10 @@ class PartParameterSerializer(InvenTree.serializers.InvenTreeModelSerializer): super().__init__(*args, **kwargs) if not part_detail: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) if not template_detail: - self.fields.pop('template_detail') + self.fields.pop('template_detail', None) part_detail = PartBriefSerializer(source='part', many=False, read_only=True) template_detail = PartParameterTemplateSerializer( @@ -573,7 +593,24 @@ class InitialSupplierSerializer(serializers.Serializer): return data +class DefaultLocationSerializer(InvenTree.serializers.InvenTreeModelSerializer): + """Brief serializer for a StockLocation object. + + Defined here, rather than stock.serializers, to negotiate circular imports. + """ + + class Meta: + """Metaclass options.""" + + import stock.models as stock_models + + model = stock_models.StockLocation + fields = ['pk', 'name', 'pathstring'] + + +@register_importer() class PartSerializer( + DataImportExportSerializerMixin, InvenTree.serializers.NotesFieldMixin, InvenTree.serializers.RemoteImageMixin, InvenTree.serializers.InvenTreeTagModelSerializer, @@ -583,6 +620,8 @@ class PartSerializer( Used when displaying all details of a single component. """ + import_exclude_fields = ['duplicate'] + class Meta: """Metaclass defining serializer fields.""" @@ -595,11 +634,13 @@ class PartSerializer( 'category', 'category_detail', 'category_path', + 'category_name', 'component', 'creation_date', 'creation_user', 'default_expiry', 'default_location', + 'default_location_detail', 'default_supplier', 'description', 'full_name', @@ -611,6 +652,7 @@ class PartSerializer( 'keywords', 'last_stocktake', 'link', + 'locked', 'minimum_stock', 'name', 'notes', @@ -618,6 +660,8 @@ class PartSerializer( 'pk', 'purchaseable', 'revision', + 'revision_of', + 'revision_count', 'salable', 'starred', 'thumbnail', @@ -663,6 +707,7 @@ class PartSerializer( """ self.starred_parts = kwargs.pop('starred_parts', []) category_detail = kwargs.pop('category_detail', False) + location_detail = kwargs.pop('location_detail', False) parameters = kwargs.pop('parameters', False) create = kwargs.pop('create', False) pricing = kwargs.pop('pricing', True) @@ -671,13 +716,16 @@ class PartSerializer( super().__init__(*args, **kwargs) if not category_detail: - self.fields.pop('category_detail') + self.fields.pop('category_detail', None) + + if not location_detail: + self.fields.pop('default_location_detail', None) if not parameters: - self.fields.pop('parameters') + self.fields.pop('parameters', None) if not path_detail: - self.fields.pop('category_path') + self.fields.pop('category_path', None) if not create: # These fields are only used for the LIST API endpoint @@ -685,12 +733,12 @@ class PartSerializer( # Fields required for certain operations, but are not part of the model if f in ['remote_image', 'existing_image']: continue - self.fields.pop(f) + self.fields.pop(f, None) if not pricing: - self.fields.pop('pricing_min') - self.fields.pop('pricing_max') - self.fields.pop('pricing_updated') + self.fields.pop('pricing_min', None) + self.fields.pop('pricing_max', None) + self.fields.pop('pricing_updated', None) def get_api_url(self): """Return the API url associated with this serializer.""" @@ -716,6 +764,11 @@ 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')) + # Annotate with the total number of stock items queryset = queryset.annotate(stock_item_count=SubqueryCount('stock_items')) @@ -809,6 +862,14 @@ class PartSerializer( child=serializers.DictField(), source='category.get_path', read_only=True ) + default_location_detail = DefaultLocationSerializer( + source='default_location', many=False, read_only=True + ) + + category_name = serializers.CharField( + source='category.name', read_only=True, label=_('Category Name') + ) + responsible = serializers.PrimaryKeyRelatedField( queryset=users.models.Owner.objects.all(), required=False, @@ -823,12 +884,13 @@ class PartSerializer( # Annotated fields allocated_to_build_orders = serializers.FloatField(read_only=True) allocated_to_sales_orders = serializers.FloatField(read_only=True) - building = serializers.FloatField(read_only=True) - in_stock = serializers.FloatField(read_only=True) + building = serializers.FloatField(read_only=True, label=_('Building')) + in_stock = serializers.FloatField(read_only=True, label=_('In Stock')) ordering = serializers.FloatField(read_only=True, label=_('On Order')) required_for_build_orders = serializers.IntegerField(read_only=True) required_for_sales_orders = serializers.IntegerField(read_only=True) stock_item_count = serializers.IntegerField(read_only=True, label=_('Stock Items')) + revision_count = serializers.IntegerField(read_only=True, label=_('Revisions')) suppliers = serializers.IntegerField(read_only=True, label=_('Suppliers')) total_in_stock = serializers.FloatField(read_only=True, label=_('Total Stock')) external_stock = serializers.FloatField(read_only=True, label=_('External Stock')) @@ -1412,31 +1474,36 @@ class BomItemSubstituteSerializer(InvenTree.serializers.InvenTreeModelSerializer ) -class BomItemSerializer(InvenTree.serializers.InvenTreeModelSerializer): +@register_importer() +class BomItemSerializer( + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer +): """Serializer for BomItem object.""" + import_exclude_fields = ['validated', 'substitutes'] + class Meta: """Metaclass defining serializer fields.""" model = BomItem fields = [ + 'part', + 'sub_part', + 'reference', + 'quantity', + 'overage', 'allow_variants', 'inherited', - 'note', 'optional', 'consumable', - 'overage', + 'note', 'pk', - 'part', 'part_detail', 'pricing_min', 'pricing_max', 'pricing_min_total', 'pricing_max_total', 'pricing_updated', - 'quantity', - 'reference', - 'sub_part', 'sub_part_detail', 'substitutes', 'validated', @@ -1449,6 +1516,8 @@ class BomItemSerializer(InvenTree.serializers.InvenTreeModelSerializer): 'on_order', # Annotated field describing quantity being built 'building', + # Annotate the total potential quantity we can build + 'can_build', ] def __init__(self, *args, **kwargs): @@ -1458,23 +1527,23 @@ class BomItemSerializer(InvenTree.serializers.InvenTreeModelSerializer): - This saves a bunch of database requests """ part_detail = kwargs.pop('part_detail', False) - sub_part_detail = kwargs.pop('sub_part_detail', False) + sub_part_detail = kwargs.pop('sub_part_detail', True) pricing = kwargs.pop('pricing', True) super().__init__(*args, **kwargs) if not part_detail: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) if not sub_part_detail: - self.fields.pop('sub_part_detail') + self.fields.pop('sub_part_detail', None) if not pricing: - self.fields.pop('pricing_min') - self.fields.pop('pricing_max') - self.fields.pop('pricing_min_total') - self.fields.pop('pricing_max_total') - self.fields.pop('pricing_updated') + self.fields.pop('pricing_min', None) + self.fields.pop('pricing_max', None) + self.fields.pop('pricing_min_total', None) + self.fields.pop('pricing_max_total', None) + self.fields.pop('pricing_updated', None) quantity = InvenTree.serializers.InvenTreeDecimalField(required=True) @@ -1503,6 +1572,8 @@ class BomItemSerializer(InvenTree.serializers.InvenTreeModelSerializer): building = serializers.FloatField(label=_('In Production'), read_only=True) + can_build = serializers.FloatField(label=_('Can Build'), read_only=True) + # Cached pricing fields pricing_min = InvenTree.serializers.InvenTreeMoneySerializer( source='sub_part.pricing_data.overall_min', allow_null=True, read_only=True @@ -1676,11 +1747,26 @@ class BomItemSerializer(InvenTree.serializers.InvenTreeModelSerializer): ) ) + # Annotate the "can_build" quantity + queryset = queryset.alias( + total_stock=ExpressionWrapper( + F('available_variant_stock') + + F('available_substitute_stock') + + F('available_stock'), + output_field=FloatField(), + ) + ).annotate( + can_build=ExpressionWrapper( + F('total_stock') / F('quantity'), output_field=FloatField() + ) + ) + return queryset +@register_importer() class CategoryParameterTemplateSerializer( - InvenTree.serializers.InvenTreeModelSerializer + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer ): """Serializer for the PartCategoryParameterTemplate model.""" @@ -1771,7 +1857,10 @@ class PartCopyBOMSerializer(serializers.Serializer): class BomImportUploadSerializer(InvenTree.serializers.DataFileUploadSerializer): - """Serializer for uploading a file and extracting data from it.""" + """Serializer for uploading a file and extracting data from it. + + TODO: Delete this entirely once the new importer process is working + """ TARGET_MODEL = BomItem @@ -1804,6 +1893,8 @@ class BomImportExtractSerializer(InvenTree.serializers.DataFileExtractSerializer """Serializer class for exatracting BOM data from an uploaded file. The parent class DataFileExtractSerializer does most of the heavy lifting here. + + TODO: Delete this entirely once the new importer process is working """ TARGET_MODEL = BomItem @@ -1891,7 +1982,9 @@ class BomImportExtractSerializer(InvenTree.serializers.DataFileExtractSerializer class BomImportSubmitSerializer(serializers.Serializer): """Serializer for uploading a BOM against a specified part. - A "BOM" is a set of BomItem objects which are to be validated together as a set + A "BOM" is a set of BomItem objects which are to be validated together as a set. + + TODO: Delete this entirely once the new importer process is working """ items = BomItemSerializer(many=True, required=True) diff --git a/src/backend/InvenTree/part/templates/part/part_base.html b/src/backend/InvenTree/part/templates/part/part_base.html index 3b6b57542d..835258c8ea 100644 --- a/src/backend/InvenTree/part/templates/part/part_base.html +++ b/src/backend/InvenTree/part/templates/part/part_base.html @@ -271,6 +271,15 @@ {% endif %} {% settings_value "PART_ENABLE_REVISION" as show_revision %} + {% if show_revision and part.revision_of %} + + + {% trans "Revision Of" %} + + {{ part.revision_of.full_name }} + + + {% endif %} {% if show_revision and part.revision %} diff --git a/src/backend/InvenTree/part/test_api.py b/src/backend/InvenTree/part/test_api.py index 6fb7265410..078c53f586 100644 --- a/src/backend/InvenTree/part/test_api.py +++ b/src/backend/InvenTree/part/test_api.py @@ -1033,25 +1033,26 @@ class PartAPITest(PartAPITestBase): url = reverse('api-part-list') required_cols = [ - 'Part ID', - 'Part Name', - 'Part Description', - 'In Stock', + 'ID', + 'Name', + 'Description', + 'Total Stock', 'Category Name', 'Keywords', - 'Template', + 'Is Template', 'Virtual', 'Trackable', 'Active', 'Notes', - 'creation_date', + 'Creation Date', + 'On Order', + 'In Stock', + 'Link', ] excluded_cols = ['lft', 'rght', 'level', 'tree_id', 'metadata'] - with self.download_file( - url, {'export': 'csv'}, expected_fn='InvenTree_Parts.csv' - ) as file: + with self.download_file(url, {'export': 'csv'}) as file: data = self.process_csv( file, excluded_cols=excluded_cols, @@ -1060,13 +1061,13 @@ class PartAPITest(PartAPITestBase): ) for row in data: - part = Part.objects.get(pk=row['Part ID']) + part = Part.objects.get(pk=row['ID']) if part.IPN: self.assertEqual(part.IPN, row['IPN']) - self.assertEqual(part.name, row['Part Name']) - self.assertEqual(part.description, row['Part Description']) + self.assertEqual(part.name, row['Name']) + self.assertEqual(part.description, row['Description']) if part.category: self.assertEqual(part.category.name, row['Category Name']) @@ -2936,7 +2937,7 @@ class PartTestTemplateTest(PartAPITestBase): options = response.data['actions']['PUT'] self.assertTrue(options['pk']['read_only']) - self.assertTrue(options['pk']['required']) + self.assertFalse(options['pk']['required']) self.assertEqual(options['part']['api_url'], '/api/part/') self.assertTrue(options['test_name']['required']) self.assertFalse(options['test_name']['read_only']) diff --git a/src/backend/InvenTree/part/test_bom_export.py b/src/backend/InvenTree/part/test_bom_export.py index c1abe0de39..6913c43944 100644 --- a/src/backend/InvenTree/part/test_bom_export.py +++ b/src/backend/InvenTree/part/test_bom_export.py @@ -29,11 +29,11 @@ class BomExportTest(InvenTreeTestCase): url = reverse('api-bom-upload-template') # Download an XLS template - response = self.client.get(url, data={'format': 'xls'}) + response = self.client.get(url, data={'format': 'xlsx'}) self.assertEqual(response.status_code, 200) self.assertEqual( response.headers['Content-Disposition'], - 'attachment; filename="InvenTree_BOM_Template.xls"', + 'attachment; filename="InvenTree_BOM_Template.xlsx"', ) # Return a simple CSV template @@ -134,10 +134,10 @@ class BomExportTest(InvenTreeTestCase): for header in headers: self.assertIn(header, expected) - def test_export_xls(self): - """Test BOM download in XLS format.""" + def test_export_xlsx(self): + """Test BOM download in XLSX format.""" params = { - 'format': 'xls', + 'format': 'xlsx', 'cascade': True, 'parameter_data': True, 'stock_data': True, diff --git a/src/backend/InvenTree/part/test_bom_item.py b/src/backend/InvenTree/part/test_bom_item.py index 86d4578f4a..f978f90638 100644 --- a/src/backend/InvenTree/part/test_bom_item.py +++ b/src/backend/InvenTree/part/test_bom_item.py @@ -303,3 +303,50 @@ class BomItemTest(TestCase): with self.assertRaises(django_exceptions.ValidationError): BomItem.objects.create(part=part_v, sub_part=part_a, quantity=10) + + def test_locked_assembly(self): + """Test that BomItem objects work correctly for a 'locked' assembly.""" + assembly = Part.objects.create( + name='Assembly2', description='An assembly part', assembly=True + ) + + sub_part = Part.objects.create( + name='SubPart1', description='A sub-part', component=True + ) + + # Initially, the assembly is not locked + self.assertFalse(assembly.locked) + + # Create a BOM item for the assembly + bom_item = BomItem.objects.create(part=assembly, sub_part=sub_part, quantity=1) + + # Lock the assembly + assembly.locked = True + assembly.save() + + # Try to edit the BOM item + with self.assertRaises(django_exceptions.ValidationError): + bom_item.quantity = 10 + bom_item.save() + + # Try to delete the BOM item + with self.assertRaises(django_exceptions.ValidationError): + bom_item.delete() + + # Try to create a new BOM item + with self.assertRaises(django_exceptions.ValidationError): + BomItem.objects.create(part=assembly, sub_part=sub_part, quantity=1) + + # Unlock the part and try again + assembly.locked = False + assembly.save() + + # Create a new BOM item + bom_item = BomItem.objects.create(part=assembly, sub_part=sub_part, quantity=1) + + # Edit the new BOM item + bom_item.quantity = 10 + bom_item.save() + + # Delete the new BOM item + bom_item.delete() diff --git a/src/backend/InvenTree/part/test_param.py b/src/backend/InvenTree/part/test_param.py index 314fe11eb5..54a8d7edfe 100644 --- a/src/backend/InvenTree/part/test_param.py +++ b/src/backend/InvenTree/part/test_param.py @@ -47,6 +47,25 @@ class TestParams(TestCase): 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') + + valid_floats = ['-12', '1.234', '17', '3e45', '-12e34'] + + for value in valid_floats: + param = PartParameter(part=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.full_clean() + self.assertIsNone(param.data_numeric) + def test_metadata(self): """Unit tests for the metadata field.""" for model in [PartParameterTemplate]: @@ -77,6 +96,43 @@ class TestParams(TestCase): param = prt.get_parameter('Not a parameter') self.assertIsNone(param) + def test_locked_part(self): + """Test parameter editing for a locked part.""" + part = Part.objects.create( + name='Test Part 3', + description='A part for testing', + category=PartCategory.objects.first(), + IPN='TEST-PART', + ) + + parameter = PartParameter.objects.create( + part=part, template=PartParameterTemplate.objects.first(), data='123' + ) + + # Lock the part + part.locked = True + part.save() + + # Attempt to edit the parameter + with self.assertRaises(django_exceptions.ValidationError): + parameter.data = '456' + parameter.save() + + # Attempt to delete the parameter + with self.assertRaises(django_exceptions.ValidationError): + parameter.delete() + + # Unlock the part + part.locked = False + part.save() + + # Now we can edit the parameter + parameter.data = '456' + parameter.save() + + # And we can delete the parameter + parameter.delete() + class TestCategoryTemplates(TransactionTestCase): """Test class for PartCategoryParameterTemplate model.""" diff --git a/src/backend/InvenTree/part/test_part.py b/src/backend/InvenTree/part/test_part.py index 58a88c3055..6f0eb5beba 100644 --- a/src/backend/InvenTree/part/test_part.py +++ b/src/backend/InvenTree/part/test_part.py @@ -371,6 +371,101 @@ class PartTest(TestCase): self.assertIsNotNone(p.last_stocktake) self.assertEqual(p.last_stocktake, ps.date) + def test_delete(self): + """Test delete operation for a Part instance.""" + part = Part.objects.first() + + for active, locked in [(True, True), (True, False), (False, True)]: + # Cannot delete part if it is active or locked + part.active = active + part.locked = locked + part.save() + + with self.assertRaises(ValidationError): + part.delete() + + part.active = False + part.locked = False + + part.delete() + + def test_revisions(self): + """Test the 'revision' and 'revision_of' field.""" + template = Part.objects.create( + name='Template part', description='A template part', is_template=True + ) + + # Create a new part + part = Part.objects.create( + name='Master Part', + description='Master part (will have revisions)', + variant_of=template, + ) + + self.assertEqual(part.revisions.count(), 0) + + # Try to set as revision of itself + with self.assertRaises(ValidationError) as exc: + part.revision_of = part + part.save() + + self.assertIn('Part cannot be a revision of itself', str(exc.exception)) + + part.refresh_from_db() + + rev_a = Part.objects.create( + name='Master Part', description='Master part (revision A)' + ) + + with self.assertRaises(ValidationError) as exc: + print('rev a:', rev_a.revision_of, part.revision_of) + rev_a.revision_of = part + rev_a.save() + + self.assertIn('Revision code must be specified', str(exc.exception)) + + with self.assertRaises(ValidationError) as exc: + rev_a.revision_of = template + rev_a.revision = 'A' + rev_a.save() + + self.assertIn('Cannot make a revision of a template part', str(exc.exception)) + + with self.assertRaises(ValidationError) as exc: + rev_a.revision_of = part + rev_a.revision = 'A' + rev_a.save() + + self.assertIn('Parent part must point to the same template', str(exc.exception)) + + rev_a.variant_of = template + rev_a.revision_of = part + rev_a.revision = 'A' + rev_a.save() + + self.assertEqual(part.revisions.count(), 1) + + rev_b = Part.objects.create( + name='Master Part', description='Master part (revision B)' + ) + + with self.assertRaises(ValidationError) as exc: + rev_b.revision_of = rev_a + rev_b.revision = 'B' + rev_b.save() + + self.assertIn( + 'Cannot make a revision of a part which is already a revision', + str(exc.exception), + ) + + rev_b.variant_of = template + rev_b.revision_of = part + rev_b.revision = 'B' + rev_b.save() + + self.assertEqual(part.revisions.count(), 2) + class TestTemplateTest(TestCase): """Unit test for the TestTemplate class.""" diff --git a/src/backend/InvenTree/plugin/api.py b/src/backend/InvenTree/plugin/api.py index df1877bf56..2c5d3cc864 100644 --- a/src/backend/InvenTree/plugin/api.py +++ b/src/backend/InvenTree/plugin/api.py @@ -1,5 +1,7 @@ """API for the plugin app.""" +from typing import Optional + from django.core.exceptions import ValidationError from django.urls import include, path, re_path from django.utils.translation import gettext_lazy as _ @@ -266,7 +268,9 @@ class PluginSettingList(ListAPI): filterset_fields = ['plugin__active', 'plugin__key'] -def check_plugin(plugin_slug: str, plugin_pk: int) -> InvenTreePlugin: +def check_plugin( + plugin_slug: Optional[str], plugin_pk: Optional[int] +) -> InvenTreePlugin: """Check that a plugin for the provided slug exists and get the config. Args: @@ -286,16 +290,16 @@ def check_plugin(plugin_slug: str, plugin_pk: int) -> InvenTreePlugin: raise NotFound(detail='Plugin not specified') # Define filter - filter = {} + filters = {} if plugin_slug: - filter['key'] = plugin_slug + filters['key'] = plugin_slug elif plugin_pk: - filter['pk'] = plugin_pk + filters['pk'] = plugin_pk ref = plugin_slug or plugin_pk # Check that the 'plugin' specified is valid try: - plugin_cgf = PluginConfig.objects.filter(**filter).first() + plugin_cgf = PluginConfig.objects.filter(**filters).first() except PluginConfig.DoesNotExist: raise NotFound(detail=f"Plugin '{ref}' not installed") diff --git a/src/backend/InvenTree/plugin/base/event/events.py b/src/backend/InvenTree/plugin/base/event/events.py index ee5a814763..6aa341f3e3 100644 --- a/src/backend/InvenTree/plugin/base/event/events.py +++ b/src/backend/InvenTree/plugin/base/event/events.py @@ -131,6 +131,7 @@ def allow_table_event(table_name): 'socialaccount_', 'user_', 'users_', + 'importer_', ] if any(table_name.startswith(prefix) for prefix in ignore_prefixes): diff --git a/src/backend/InvenTree/plugin/builtin/labels/inventree_label.py b/src/backend/InvenTree/plugin/builtin/labels/inventree_label.py index 07bb3c8ef1..a0480ec89f 100644 --- a/src/backend/InvenTree/plugin/builtin/labels/inventree_label.py +++ b/src/backend/InvenTree/plugin/builtin/labels/inventree_label.py @@ -35,26 +35,17 @@ class InvenTreeLabelPlugin(LabelPrintingMixin, SettingsMixin, InvenTreePlugin): # Keep track of individual label outputs # These will be stitched together at the end of printing outputs = [] - debug = None def before_printing(self): """Reset the list of label outputs.""" self.outputs = [] - self.debug = None - - def in_debug_mode(self): - """Check if the plugin is printing in debug mode.""" - if self.debug is None: - self.debug = str2bool(self.get_setting('DEBUG')) - - return self.debug def print_label(self, **kwargs): """Print a single label.""" label = kwargs['label_instance'] instance = kwargs['item_instance'] - if self.in_debug_mode(): + if str2bool(self.get_setting('DEBUG')): # In debug mode, return raw HTML output output = self.render_to_html(label, instance, None, **kwargs) else: @@ -68,7 +59,7 @@ class InvenTreeLabelPlugin(LabelPrintingMixin, SettingsMixin, InvenTreePlugin): if len(self.outputs) == 0: return None - if self.in_debug_mode(): + if str2bool(self.get_setting('DEBUG')): # Simple HTML output data = '\n'.join(self.outputs) filename = 'labels.html' diff --git a/src/backend/InvenTree/plugin/builtin/labels/inventree_machine.py b/src/backend/InvenTree/plugin/builtin/labels/inventree_machine.py index 39af2e7cca..f147edad3c 100644 --- a/src/backend/InvenTree/plugin/builtin/labels/inventree_machine.py +++ b/src/backend/InvenTree/plugin/builtin/labels/inventree_machine.py @@ -93,11 +93,9 @@ class InvenTreeLabelPlugin(LabelPrintingMixin, InvenTreePlugin): # execute the print job if driver.USE_BACKGROUND_WORKER is False: - return driver.print_labels(machine, label, items, request, **print_kwargs) + return driver.print_labels(machine, label, items, **print_kwargs) - offload_task( - driver.print_labels, machine, label, items, request, **print_kwargs - ) + offload_task(driver.print_labels, machine, label, items, **print_kwargs) return JsonResponse({ 'success': True, diff --git a/src/backend/InvenTree/plugin/builtin/labels/label_sheet.py b/src/backend/InvenTree/plugin/builtin/labels/label_sheet.py index bf88e0f132..c11f06d111 100644 --- a/src/backend/InvenTree/plugin/builtin/labels/label_sheet.py +++ b/src/backend/InvenTree/plugin/builtin/labels/label_sheet.py @@ -12,6 +12,7 @@ import weasyprint from rest_framework import serializers import report.helpers +from InvenTree.helpers import str2bool from plugin import InvenTreePlugin from plugin.mixins import LabelPrintingMixin, SettingsMixin from report.models import LabelOutput, LabelTemplate @@ -64,7 +65,14 @@ class InvenTreeLabelSheetPlugin(LabelPrintingMixin, SettingsMixin, InvenTreePlug BLOCKING_PRINT = True - SETTINGS = {} + SETTINGS = { + 'DEBUG': { + 'name': _('Debug mode'), + 'description': _('Enable debug mode - returns raw HTML instead of PDF'), + 'validator': bool, + 'default': False, + } + } PrintingOptionsSerializer = LabelPrintingOptionsSerializer @@ -135,11 +143,16 @@ class InvenTreeLabelSheetPlugin(LabelPrintingMixin, SettingsMixin, InvenTreePlug # Render to a single HTML document html_data = self.wrap_pages(pages, **document_data) - # Render HTML to PDF - html = weasyprint.HTML(string=html_data) - document = html.render().write_pdf() + if str2bool(self.get_setting('DEBUG')): + # In debug mode return with the raw HTML + output.output = ContentFile(html_data, 'labels.html') + else: + # Render HTML to PDF + html = weasyprint.HTML(string=html_data) + document = html.render().write_pdf() + + output.output = ContentFile(document, 'labels.pdf') - output.output = ContentFile(document, 'labels.pdf') output.progress = 100 output.complete = True output.save() diff --git a/src/backend/InvenTree/plugin/staticfiles.py b/src/backend/InvenTree/plugin/staticfiles.py index e80f4a25f5..c930ff497b 100644 --- a/src/backend/InvenTree/plugin/staticfiles.py +++ b/src/backend/InvenTree/plugin/staticfiles.py @@ -38,19 +38,20 @@ def collect_plugins_static_files(): logger.info('Collecting static files for all installed plugins.') for slug in registry.plugins.keys(): - copy_plugin_static_files(slug) + copy_plugin_static_files(slug, check_reload=False) -def copy_plugin_static_files(slug): +def copy_plugin_static_files(slug, check_reload=True): """Copy static files for the specified plugin.""" - registry.check_reload() + if check_reload: + registry.check_reload() plugin = registry.get_plugin(slug) if not plugin: return - logger.info("Copying static files for plugin '%s'") + logger.info("Copying static files for plugin '%s'", slug) # Get the source path for the plugin source_path = plugin.path().joinpath('static') @@ -86,7 +87,7 @@ def copy_plugin_static_files(slug): with item.open('rb') as src: staticfiles_storage.save(destination_path, src) - logger.debug(f'- copied {item} to {destination_path}') + logger.debug('- copied %s to %s', str(item), str(destination_path)) copied += 1 logger.info(f"Copied %s static files for plugin '%s'.", copied, slug) diff --git a/src/backend/InvenTree/report/helpers.py b/src/backend/InvenTree/report/helpers.py index 8dcb196024..04e328da8a 100644 --- a/src/backend/InvenTree/report/helpers.py +++ b/src/backend/InvenTree/report/helpers.py @@ -78,21 +78,21 @@ def report_page_size_default(): return page_size -def encode_image_base64(image, format: str = 'PNG'): +def encode_image_base64(image, img_format: str = 'PNG'): """Return a base-64 encoded image which can be rendered in an tag. Arguments: image: {Image} -- Image to encode - format: {str} -- Image format (default = 'PNG') + img_format: {str} -- Image format (default = 'PNG') Returns: str -- Base64 encoded image data e.g. 'data:image/png;base64,xxxxxxxxx' """ - fmt = format.lower() + img_format = str(img_format).lower() buffered = io.BytesIO() - image.save(buffered, fmt) + image.save(buffered, img_format) img_str = base64.b64encode(buffered.getvalue()) - return f'data:image/{fmt};charset=utf-8;base64,' + img_str.decode() + return f'data:image/{img_format};charset=utf-8;base64,' + img_str.decode() diff --git a/src/backend/InvenTree/report/models.py b/src/backend/InvenTree/report/models.py index ec4ba2f2d5..56a1ffe2fd 100644 --- a/src/backend/InvenTree/report/models.py +++ b/src/backend/InvenTree/report/models.py @@ -409,7 +409,7 @@ class LabelTemplate(TemplateUploadMixin, ReportTemplateBase): for plugin in plugins: # Let each plugin add its own context data - plugin.add_label_context(self, self.object_to_print, request, context) + plugin.add_label_context(self, instance, request, context) return context diff --git a/src/backend/InvenTree/report/templatetags/barcode.py b/src/backend/InvenTree/report/templatetags/barcode.py index 72568421ad..8e9f2af993 100644 --- a/src/backend/InvenTree/report/templatetags/barcode.py +++ b/src/backend/InvenTree/report/templatetags/barcode.py @@ -39,7 +39,7 @@ def qrcode(data, **kwargs): fill_color = kwargs.pop('fill_color', 'black') back_color = kwargs.pop('back_color', 'white') - format = kwargs.pop('format', 'PNG') + img_format = kwargs.pop('format', 'PNG') params.update(**kwargs) @@ -51,7 +51,7 @@ def qrcode(data, **kwargs): qri = qr.make_image(fill_color=fill_color, back_color=back_color) # Render to byte-encoded image - return image_data(qri, fmt=format) + return image_data(qri, fmt=img_format) @register.simple_tag() @@ -59,7 +59,7 @@ def barcode(data, barcode_class='code128', **kwargs): """Render a barcode.""" constructor = python_barcode.get_barcode_class(barcode_class) - format = kwargs.pop('format', 'PNG') + img_format = kwargs.pop('format', 'PNG') data = str(data).zfill(constructor.digits) @@ -70,4 +70,4 @@ def barcode(data, barcode_class='code128', **kwargs): image = barcode_image.render(writer_options=kwargs) # Render to byte-encoded image - return image_data(image, fmt=format) + return image_data(image, fmt=img_format) diff --git a/src/backend/InvenTree/stock/admin.py b/src/backend/InvenTree/stock/admin.py index 3ca5c6a664..ced26f60fa 100644 --- a/src/backend/InvenTree/stock/admin.py +++ b/src/backend/InvenTree/stock/admin.py @@ -233,17 +233,17 @@ class StockItemResource(InvenTreeResource): is_building = Field( attribute='is_building', column_name=_('Building'), - widget=widgets.IntegerWidget(), + widget=widgets.BooleanWidget(), ) review_needed = Field( attribute='review_needed', column_name=_('Review Needed'), - widget=widgets.IntegerWidget(), + widget=widgets.BooleanWidget(), ) delete_on_deplete = Field( attribute='delete_on_deplete', column_name=_('Delete on Deplete'), - widget=widgets.IntegerWidget(), + widget=widgets.BooleanWidget(), ) # Date management diff --git a/src/backend/InvenTree/stock/api.py b/src/backend/InvenTree/stock/api.py index 4823e40211..4ea5be3117 100644 --- a/src/backend/InvenTree/stock/api.py +++ b/src/backend/InvenTree/stock/api.py @@ -28,7 +28,8 @@ from build.serializers import BuildSerializer from company.models import Company, SupplierPart from company.serializers import CompanySerializer from generic.states.api import StatusView -from InvenTree.api import APIDownloadMixin, ListCreateDestroyAPIView, MetadataView +from importer.mixins import DataExportViewMixin +from InvenTree.api import ListCreateDestroyAPIView, MetadataView from InvenTree.filters import ( ORDER_FILTER_ALIAS, SEARCH_ORDER_FILTER, @@ -36,7 +37,6 @@ from InvenTree.filters import ( InvenTreeDateFilter, ) from InvenTree.helpers import ( - DownloadFile, extract_serial_numbers, generateTestKey, is_ajax, @@ -399,7 +399,7 @@ class StockLocationFilter(rest_filters.FilterSet): return queryset -class StockLocationList(APIDownloadMixin, ListCreateAPI): +class StockLocationList(DataExportViewMixin, ListCreateAPI): """API endpoint for list view of StockLocation objects. - GET: Return list of StockLocation objects @@ -410,14 +410,6 @@ class StockLocationList(APIDownloadMixin, ListCreateAPI): serializer_class = StockSerializers.LocationSerializer filterset_class = StockLocationFilter - def download_queryset(self, queryset, export_format): - """Download the filtered queryset as a data file.""" - dataset = LocationResource().export(queryset=queryset) - filedata = dataset.export(export_format) - filename = f'InvenTree_Locations.{export_format}' - - return DownloadFile(filedata, filename) - def get_queryset(self, *args, **kwargs): """Return annotated queryset for the StockLocationList endpoint.""" queryset = super().get_queryset(*args, **kwargs) @@ -870,7 +862,7 @@ class StockFilter(rest_filters.FilterSet): return queryset.exclude(stale_filter) -class StockList(APIDownloadMixin, ListCreateDestroyAPIView): +class StockList(DataExportViewMixin, ListCreateDestroyAPIView): """API endpoint for list view of Stock objects. - GET: Return a list of all StockItem objects (with optional query filters) @@ -1088,19 +1080,6 @@ class StockList(APIDownloadMixin, ListCreateDestroyAPIView): headers=self.get_success_headers(serializer.data), ) - def download_queryset(self, queryset, export_format): - """Download this queryset as a file. - - Uses the APIDownloadMixin mixin class - """ - dataset = StockItemResource().export(queryset=queryset) - - filedata = dataset.export(export_format) - - filename = f'InvenTree_StockItems_{InvenTree.helpers.current_date().strftime("%d-%b-%Y")}.{export_format}' - - return DownloadFile(filedata, filename) - def get_queryset(self, *args, **kwargs): """Annotate queryset before returning.""" queryset = super().get_queryset(*args, **kwargs) @@ -1211,6 +1190,7 @@ class StockList(APIDownloadMixin, ListCreateDestroyAPIView): 'updated', 'stocktake_date', 'expiry_date', + 'packaging', 'quantity', 'stock', 'status', @@ -1370,7 +1350,7 @@ class StockTrackingDetail(RetrieveAPI): serializer_class = StockSerializers.StockTrackingSerializer -class StockTrackingList(ListAPI): +class StockTrackingList(DataExportViewMixin, ListAPI): """API endpoint for list view of StockItemTracking objects. StockItemTracking objects are read-only diff --git a/src/backend/InvenTree/stock/migrations/0001_initial.py b/src/backend/InvenTree/stock/migrations/0001_initial.py index 040a48efeb..ac8b7b7a48 100644 --- a/src/backend/InvenTree/stock/migrations/0001_initial.py +++ b/src/backend/InvenTree/stock/migrations/0001_initial.py @@ -64,6 +64,9 @@ class Migration(migrations.Migration): ('item', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='tracking_info', to='stock.StockItem')), ('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL)), ], + options={ + 'verbose_name': 'Stock Item Tracking', + } ), migrations.AddField( model_name='stockitem', diff --git a/src/backend/InvenTree/stock/migrations/0040_stockitemtestresult.py b/src/backend/InvenTree/stock/migrations/0040_stockitemtestresult.py index fdf0344925..6629d6634d 100644 --- a/src/backend/InvenTree/stock/migrations/0040_stockitemtestresult.py +++ b/src/backend/InvenTree/stock/migrations/0040_stockitemtestresult.py @@ -25,5 +25,8 @@ class Migration(migrations.Migration): ('stock_item', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='test_results', to='stock.StockItem')), ('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL)), ], + options={ + 'verbose_name': 'Stock Item Test Result', + }, ), ] diff --git a/src/backend/InvenTree/stock/models.py b/src/backend/InvenTree/stock/models.py index f587cdf71f..3a65f2c2f6 100644 --- a/src/backend/InvenTree/stock/models.py +++ b/src/backend/InvenTree/stock/models.py @@ -20,6 +20,7 @@ from django.dispatch import receiver from django.urls import reverse from django.utils.translation import gettext_lazy as _ +from djmoney.contrib.exchange.models import convert_money from mptt.managers import TreeManager from mptt.models import MPTTModel, TreeForeignKey from taggit.managers import TaggableManager @@ -713,8 +714,6 @@ class StockItem( self.delete_on_deplete = False except PartModels.Part.DoesNotExist: - # This gets thrown if self.supplier_part is null - # TODO - Find a test than can be performed... pass # Ensure that the item cannot be assigned to itself @@ -1108,7 +1107,11 @@ class StockItem( item.add_tracking_entry(code, user, deltas, notes=notes) - trigger_event('stockitem.assignedtocustomer', id=self.id, customer=customer.id) + trigger_event( + 'stockitem.assignedtocustomer', + id=self.id, + customer=customer.id if customer else None, + ) # Return the reference to the stock item return item @@ -1706,6 +1709,12 @@ class StockItem( parent_id = self.parent.pk if self.parent else None + # Keep track of pricing data for the merged data + pricing_data = [] + + if self.purchase_price: + pricing_data.append([self.purchase_price, self.quantity]) + for other in other_items: # If the stock item cannot be merged, return if not self.can_merge(other, raise_error=raise_error, **kwargs): @@ -1714,11 +1723,15 @@ class StockItem( ) return + for other in other_items: tree_ids.add(other.tree_id) - for other in other_items: self.quantity += other.quantity + if other.purchase_price: + # Only add pricing data if it is available + pricing_data.append([other.purchase_price, other.quantity]) + # Any "build order allocations" for the other item must be assigned to this one for allocation in other.allocations.all(): allocation.stock_item = self @@ -1744,7 +1757,31 @@ class StockItem( deltas={'location': location.pk if location else None}, ) + # Update the location of the item self.location = location + + # Update the unit price - calculate weighted average of available pricing data + if len(pricing_data) > 0: + unit_price, quantity = pricing_data[0] + + # Use the first currency as the base currency + base_currency = unit_price.currency + + total_price = unit_price * quantity + + for price, qty in pricing_data[1:]: + # Attempt to convert the price to the base currency + try: + price = convert_money(price, base_currency) + total_price += price * qty + quantity += qty + except Exception: + # Skip this entry, cannot convert to base currency + continue + + if quantity > 0: + self.purchase_price = total_price / quantity + self.save() # Rebuild stock trees as required @@ -2276,6 +2313,11 @@ class StockItemTracking(InvenTree.models.InvenTreeModel): deltas: The changes associated with this history item """ + class Meta: + """Meta data for the StockItemTracking class.""" + + verbose_name = _('Stock Item Tracking') + @staticmethod def get_api_url(): """Return API url.""" @@ -2344,6 +2386,11 @@ class StockItemTestResult(InvenTree.models.InvenTreeMetadataModel): date: Date the test result was recorded """ + class Meta: + """Meta data for the StockItemTestResult class.""" + + verbose_name = _('Stock Item Test Result') + def __str__(self): """Return string representation.""" return f'{self.test_name} - {self.result}' diff --git a/src/backend/InvenTree/stock/serializers.py b/src/backend/InvenTree/stock/serializers.py index a305bb90d2..8cbdd28566 100644 --- a/src/backend/InvenTree/stock/serializers.py +++ b/src/backend/InvenTree/stock/serializers.py @@ -17,17 +17,19 @@ from taggit.serializers import TagListSerializerField import build.models import company.models +import company.serializers as company_serializers import InvenTree.helpers import InvenTree.serializers import order.models import part.filters as part_filters import part.models as part_models +import part.serializers as part_serializers import stock.filters import stock.status_codes from common.settings import get_global_setting -from company.serializers import SupplierPartSerializer +from importer.mixins import DataImportExportSerializerMixin +from importer.registry import register_importer from InvenTree.serializers import InvenTreeCurrencySerializer, InvenTreeDecimalField -from part.serializers import PartBriefSerializer, PartTestTemplateSerializer from .models import ( StockItem, @@ -177,7 +179,10 @@ class LocationBriefSerializer(InvenTree.serializers.InvenTreeModelSerializer): fields = ['pk', 'name', 'pathstring'] -class StockItemTestResultSerializer(InvenTree.serializers.InvenTreeModelSerializer): +@register_importer() +class StockItemTestResultSerializer( + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer +): """Serializer for the StockItemTestResult model.""" class Meta: @@ -212,10 +217,10 @@ class StockItemTestResultSerializer(InvenTree.serializers.InvenTreeModelSerializ super().__init__(*args, **kwargs) if user_detail is not True: - self.fields.pop('user_detail') + self.fields.pop('user_detail', None) if template_detail is not True: - self.fields.pop('template_detail') + self.fields.pop('template_detail', None) user_detail = InvenTree.serializers.UserSerializer(source='user', read_only=True) @@ -228,7 +233,9 @@ class StockItemTestResultSerializer(InvenTree.serializers.InvenTreeModelSerializ label=_('Test template for this result'), ) - template_detail = PartTestTemplateSerializer(source='template', read_only=True) + template_detail = part_serializers.PartTestTemplateSerializer( + source='template', read_only=True + ) attachment = InvenTree.serializers.InvenTreeAttachmentSerializerField( required=False @@ -299,6 +306,7 @@ class StockItemSerializerBrief( 'location', 'quantity', 'serial', + 'batch', 'supplier_part', 'barcode_hash', ] @@ -316,13 +324,22 @@ class StockItemSerializerBrief( return value -class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): +@register_importer() +class StockItemSerializer( + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeTagModelSerializer +): """Serializer for a StockItem. - Includes serialization for the linked part - Includes serialization for the item location """ + export_exclude_fields = ['tracking_items'] + + export_only_fields = ['part_pricing_min', 'part_pricing_max'] + + import_exclude_fields = ['use_pack_size', 'tags'] + class Meta: """Metaclass options.""" @@ -338,11 +355,13 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): 'is_building', 'link', 'location', + 'location_name', 'location_detail', 'location_path', 'notes', 'owner', 'packaging', + 'parent', 'part', 'part_detail', 'purchase_order', @@ -356,6 +375,7 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): 'status_text', 'stocktake_date', 'supplier_part', + 'sku', 'supplier_part_detail', 'barcode_hash', 'updated', @@ -371,6 +391,9 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): 'stale', 'tracking_items', 'tags', + # Export only fields + 'part_pricing_min', + 'part_pricing_max', ] """ @@ -401,19 +424,19 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): super(StockItemSerializer, self).__init__(*args, **kwargs) if not part_detail: - self.fields.pop('part_detail') + self.fields.pop('part_detail', None) if not location_detail: - self.fields.pop('location_detail') + self.fields.pop('location_detail', None) if not supplier_part_detail: - self.fields.pop('supplier_part_detail') + self.fields.pop('supplier_part_detail', None) if not tests: - self.fields.pop('tests') + self.fields.pop('tests', None) if not path_detail: - self.fields.pop('location_path') + self.fields.pop('location_path', None) part = serializers.PrimaryKeyRelatedField( queryset=part_models.Part.objects.all(), @@ -423,6 +446,17 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): label=_('Part'), ) + parent = serializers.PrimaryKeyRelatedField( + many=False, + read_only=True, + label=_('Parent Item'), + help_text=_('Parent stock item'), + ) + + location_name = serializers.CharField( + source='location.name', read_only=True, label=_('Location Name') + ) + location_path = serializers.ListField( child=serializers.DictField(), source='location.get_path', read_only=True ) @@ -468,6 +502,7 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): ) ).prefetch_related(None), ), + 'parent', 'part__category', 'part__pricing_data', 'supplier_part', @@ -525,8 +560,10 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): status_text = serializers.CharField(source='get_status_display', read_only=True) + sku = serializers.CharField(source='supplier_part.SKU', read_only=True) + # Optional detail fields, which can be appended via query parameters - supplier_part_detail = SupplierPartSerializer( + supplier_part_detail = company_serializers.SupplierPartSerializer( source='supplier_part', supplier_detail=False, manufacturer_detail=False, @@ -534,10 +571,14 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): many=False, read_only=True, ) - part_detail = PartBriefSerializer(source='part', many=False, read_only=True) + part_detail = part_serializers.PartBriefSerializer( + source='part', many=False, read_only=True + ) + location_detail = LocationBriefSerializer( source='location', many=False, read_only=True ) + tests = StockItemTestResultSerializer( source='test_results', many=True, read_only=True ) @@ -545,12 +586,22 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): quantity = InvenTreeDecimalField() # Annotated fields - allocated = serializers.FloatField(required=False) - expired = serializers.BooleanField(required=False, read_only=True) - installed_items = serializers.IntegerField(read_only=True, required=False) - child_items = serializers.IntegerField(read_only=True, required=False) - stale = serializers.BooleanField(required=False, read_only=True) - tracking_items = serializers.IntegerField(read_only=True, required=False) + allocated = serializers.FloatField( + required=False, read_only=True, label=_('Allocated Quantity') + ) + expired = serializers.BooleanField( + required=False, read_only=True, label=_('Expired') + ) + installed_items = serializers.IntegerField( + read_only=True, required=False, label=_('Installed Items') + ) + child_items = serializers.IntegerField( + read_only=True, required=False, label=_('Child Items') + ) + stale = serializers.BooleanField(required=False, read_only=True, label=_('Stale')) + tracking_items = serializers.IntegerField( + read_only=True, required=False, label=_('Tracking Items') + ) purchase_price = InvenTree.serializers.InvenTreeMoneySerializer( label=_('Purchase Price'), @@ -571,6 +622,18 @@ class StockItemSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): tags = TagListSerializerField(required=False) + part_pricing_min = InvenTree.serializers.InvenTreeMoneySerializer( + source='part.pricing_data.overall_min', + read_only=True, + label=_('Minimum Pricing'), + ) + + part_pricing_max = InvenTree.serializers.InvenTreeMoneySerializer( + source='part.pricing_data.overall_max', + read_only=True, + label=_('Maximum Pricing'), + ) + class SerializeStockItemSerializer(serializers.Serializer): """A DRF serializer for "serializing" a StockItem. @@ -1026,9 +1089,14 @@ class LocationTreeSerializer(InvenTree.serializers.InvenTreeModelSerializer): return queryset.annotate(sublocations=stock.filters.annotate_sub_locations()) -class LocationSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): +@register_importer() +class LocationSerializer( + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeTagModelSerializer +): """Detailed information about a stock location.""" + import_exclude_fields = ['tags'] + class Meta: """Metaclass options.""" @@ -1055,7 +1123,7 @@ class LocationSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): 'tags', ] - read_only_fields = ['barcode_hash', 'icon'] + read_only_fields = ['barcode_hash', 'icon', 'level', 'pathstring'] def __init__(self, *args, **kwargs): """Optionally add or remove extra fields.""" @@ -1064,7 +1132,7 @@ class LocationSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): super().__init__(*args, **kwargs) if not path_detail: - self.fields.pop('path') + self.fields.pop('path', None) @staticmethod def annotate_queryset(queryset): @@ -1109,7 +1177,10 @@ class LocationSerializer(InvenTree.serializers.InvenTreeTagModelSerializer): ) -class StockTrackingSerializer(InvenTree.serializers.InvenTreeModelSerializer): +@register_importer() +class StockTrackingSerializer( + DataImportExportSerializerMixin, InvenTree.serializers.InvenTreeModelSerializer +): """Serializer for StockItemTracking model.""" class Meta: @@ -1139,10 +1210,10 @@ class StockTrackingSerializer(InvenTree.serializers.InvenTreeModelSerializer): super().__init__(*args, **kwargs) if item_detail is not True: - self.fields.pop('item_detail') + self.fields.pop('item_detail', None) if user_detail is not True: - self.fields.pop('user_detail') + self.fields.pop('user_detail', None) label = serializers.CharField(read_only=True) @@ -1448,7 +1519,7 @@ class StockAdjustmentItemSerializer(serializers.Serializer): ) quantity = serializers.DecimalField( - max_digits=15, decimal_places=5, min_value=0, required=True + max_digits=15, decimal_places=5, min_value=Decimal(0), required=True ) batch = serializers.CharField( diff --git a/src/backend/InvenTree/stock/test_api.py b/src/backend/InvenTree/stock/test_api.py index 7848fd8234..4b8471cf8b 100644 --- a/src/backend/InvenTree/stock/test_api.py +++ b/src/backend/InvenTree/stock/test_api.py @@ -765,11 +765,11 @@ class StockItemListTest(StockAPITestCase): # Expected headers headers = [ - 'Part ID', - 'Customer ID', - 'Location ID', + 'Part', + 'Customer', + 'Stock Location', 'Location Name', - 'Parent ID', + 'Parent Item', 'Quantity', 'Status', ] diff --git a/src/backend/InvenTree/stock/tests.py b/src/backend/InvenTree/stock/tests.py index fe7a2b0e9d..99f6f51a48 100644 --- a/src/backend/InvenTree/stock/tests.py +++ b/src/backend/InvenTree/stock/tests.py @@ -755,23 +755,14 @@ class StockTest(StockTestBase): # First, we will create a stock location structure A = StockLocation.objects.create(name='A', description='Top level location') - B1 = StockLocation.objects.create(name='B1', parent=A) - B2 = StockLocation.objects.create(name='B2', parent=A) - B3 = StockLocation.objects.create(name='B3', parent=A) - C11 = StockLocation.objects.create(name='C11', parent=B1) - C12 = StockLocation.objects.create(name='C12', parent=B1) - C21 = StockLocation.objects.create(name='C21', parent=B2) - C22 = StockLocation.objects.create(name='C22', parent=B2) - C31 = StockLocation.objects.create(name='C31', parent=B3) - C32 = StockLocation.objects.create(name='C32', parent=B3) # Check that the tree_id is correct for each sublocation @@ -895,6 +886,62 @@ class StockTest(StockTestBase): self.assertEqual(len(p.metadata.keys()), 4) + def test_merge(self): + """Test merging of multiple stock items.""" + from djmoney.money import Money + + part = Part.objects.first() + part.stock_items.all().delete() + + # Test simple merge without any pricing information + s1 = StockItem.objects.create(part=part, quantity=10) + s2 = StockItem.objects.create(part=part, quantity=20) + s3 = StockItem.objects.create(part=part, quantity=30) + + self.assertEqual(part.stock_items.count(), 3) + s1.merge_stock_items([s2, s3]) + self.assertEqual(part.stock_items.count(), 1) + s1.refresh_from_db() + self.assertEqual(s1.quantity, 60) + self.assertIsNone(s1.purchase_price) + + part.stock_items.all().delete() + + # Create some stock items with pricing information + s1 = StockItem.objects.create(part=part, quantity=10, purchase_price=None) + s2 = StockItem.objects.create( + part=part, quantity=15, purchase_price=Money(10, 'USD') + ) + s3 = StockItem.objects.create(part=part, quantity=30) + + self.assertEqual(part.stock_items.count(), 3) + s1.merge_stock_items([s2, s3]) + self.assertEqual(part.stock_items.count(), 1) + s1.refresh_from_db() + self.assertEqual(s1.quantity, 55) + self.assertEqual(s1.purchase_price, Money(10, 'USD')) + + part.stock_items.all().delete() + + s1 = StockItem.objects.create( + part=part, quantity=10, purchase_price=Money(5, 'USD') + ) + s2 = StockItem.objects.create( + part=part, quantity=25, purchase_price=Money(10, 'USD') + ) + s3 = StockItem.objects.create( + part=part, quantity=5, purchase_price=Money(75, 'USD') + ) + + self.assertEqual(part.stock_items.count(), 3) + s1.merge_stock_items([s2, s3]) + self.assertEqual(part.stock_items.count(), 1) + s1.refresh_from_db() + self.assertEqual(s1.quantity, 40) + + # Final purchase price should be the weighted average + self.assertAlmostEqual(s1.purchase_price.amount, 16.875, places=3) + class StockBarcodeTest(StockTestBase): """Run barcode tests for the stock app.""" diff --git a/src/backend/InvenTree/templates/InvenTree/settings/barcode.html b/src/backend/InvenTree/templates/InvenTree/settings/barcode.html index 3e6fb6835b..982548a58c 100644 --- a/src/backend/InvenTree/templates/InvenTree/settings/barcode.html +++ b/src/backend/InvenTree/templates/InvenTree/settings/barcode.html @@ -15,6 +15,7 @@ {% include "InvenTree/settings/setting.html" with key="BARCODE_ENABLE" icon="fa-qrcode" %} {% include "InvenTree/settings/setting.html" with key="BARCODE_INPUT_DELAY" icon="fa-hourglass-half" %} {% include "InvenTree/settings/setting.html" with key="BARCODE_WEBCAM_SUPPORT" icon="fa-video" %} + {% include "InvenTree/settings/setting.html" with key="BARCODE_SHOW_TEXT" icon="fa-closed-captioning" %} diff --git a/src/backend/InvenTree/templates/InvenTree/settings/build.html b/src/backend/InvenTree/templates/InvenTree/settings/build.html index 781bb71525..9eb1ce47bb 100644 --- a/src/backend/InvenTree/templates/InvenTree/settings/build.html +++ b/src/backend/InvenTree/templates/InvenTree/settings/build.html @@ -14,6 +14,9 @@ {% include "InvenTree/settings/setting.html" with key="BUILDORDER_REFERENCE_PATTERN" %} {% include "InvenTree/settings/setting.html" with key="BUILDORDER_REQUIRE_RESPONSIBLE" %} + {% include "InvenTree/settings/setting.html" with key="BUILDORDER_REQUIRE_ACTIVE_PART" %} + {% include "InvenTree/settings/setting.html" with key="BUILDORDER_REQUIRE_LOCKED_PART" %} + {% include "InvenTree/settings/setting.html" with key="BUILDORDER_REQUIRE_VALID_BOM" %} {% include "InvenTree/settings/setting.html" with key="PREVENT_BUILD_COMPLETION_HAVING_INCOMPLETED_TESTS" %} diff --git a/src/backend/InvenTree/templates/InvenTree/settings/login.html b/src/backend/InvenTree/templates/InvenTree/settings/login.html index d2b557978c..d94a3a1831 100644 --- a/src/backend/InvenTree/templates/InvenTree/settings/login.html +++ b/src/backend/InvenTree/templates/InvenTree/settings/login.html @@ -39,6 +39,10 @@ {% include "InvenTree/settings/setting.html" with key="LOGIN_ENABLE_SSO" icon="fa-user-shield" %} {% include "InvenTree/settings/setting.html" with key="LOGIN_ENABLE_SSO_REG" icon="fa-user-plus" %} {% include "InvenTree/settings/setting.html" with key="LOGIN_SIGNUP_SSO_AUTO" icon="fa-key" %} + {% include "InvenTree/settings/setting.html" with key="LOGIN_ENABLE_SSO_GROUP_SYNC" icon="fa-users" %} + {% include "InvenTree/settings/setting.html" with key="SSO_GROUP_KEY" icon="fa-key" %} + {% include "InvenTree/settings/setting.html" with key="SSO_GROUP_MAP" icon="fa-book" %} + {% include "InvenTree/settings/setting.html" with key="SSO_REMOVE_GROUPS" icon="fa-user-minus" %} diff --git a/src/backend/InvenTree/templates/InvenTree/settings/part.html b/src/backend/InvenTree/templates/InvenTree/settings/part.html index dae8368b7f..96aafc3f30 100644 --- a/src/backend/InvenTree/templates/InvenTree/settings/part.html +++ b/src/backend/InvenTree/templates/InvenTree/settings/part.html @@ -12,6 +12,7 @@ {% include "InvenTree/settings/setting.html" with key="PART_ENABLE_REVISION" %} + {% include "InvenTree/settings/setting.html" with key="PART_REVISION_ASSEMBLY_ONLY" %} {% include "InvenTree/settings/setting.html" with key="PART_IPN_REGEX" %} {% include "InvenTree/settings/setting.html" with key="PART_ALLOW_DUPLICATE_IPN" %} {% include "InvenTree/settings/setting.html" with key="PART_ALLOW_EDIT_IPN" %} diff --git a/src/backend/InvenTree/templates/InvenTree/settings/user_display.html b/src/backend/InvenTree/templates/InvenTree/settings/user_display.html index 7ae7ae19e3..ab2144939d 100644 --- a/src/backend/InvenTree/templates/InvenTree/settings/user_display.html +++ b/src/backend/InvenTree/templates/InvenTree/settings/user_display.html @@ -41,7 +41,7 @@
    + + + + + + + + + + + `; return html; @@ -1472,6 +1535,14 @@ function receivePurchaseOrderItems(order_id, line_items, options={}) { line.batch_code = getFormFieldValue(`items_batch_code_${pk}`); } + if (getFormFieldElement(`items_packaging_${pk}`).exists()) { + line.packaging = getFormFieldValue(`items_packaging_${pk}`); + } + + if (getFormFieldElement(`items_note_${pk}`).exists()) { + line.note = getFormFieldValue(`items_note_${pk}`); + } + if (getFormFieldElement(`items_serial_numbers_${pk}`).exists()) { line.serial_numbers = getFormFieldValue(`items_serial_numbers_${pk}`); } diff --git a/src/backend/InvenTree/templates/js/translated/stock.js b/src/backend/InvenTree/templates/js/translated/stock.js index d5d9e15e4b..5df28f95c1 100644 --- a/src/backend/InvenTree/templates/js/translated/stock.js +++ b/src/backend/InvenTree/templates/js/translated/stock.js @@ -17,6 +17,7 @@ formatDecimal, formatPriceRange, getCurrencyConversionRates, + getFormFieldElement, getFormFieldValue, getTableData, global_settings, @@ -1010,14 +1011,16 @@ function mergeStockItems(items, options={}) { */ function adjustStock(action, items, options={}) { - var formTitle = 'Form Title Here'; - var actionTitle = null; + let formTitle = 'Form Title Here'; + let actionTitle = null; + + const allowExtraFields = action == 'move'; // API url var url = null; - var specifyLocation = false; - var allowSerializedStock = false; + let specifyLocation = false; + let allowSerializedStock = false; switch (action) { case 'move': @@ -1069,7 +1072,7 @@ function adjustStock(action, items, options={}) { for (var idx = 0; idx < items.length; idx++) { - var item = items[idx]; + const item = items[idx]; if ((item.serial != null) && (item.serial != '') && !allowSerializedStock) { continue; @@ -1112,7 +1115,6 @@ function adjustStock(action, items, options={}) { let quantityString = ''; - var location = locationDetail(item, false); if (item.location_detail) { @@ -1152,11 +1154,68 @@ function adjustStock(action, items, options={}) { ); } - let buttons = wrapButtons(makeRemoveButton( + let buttons = ''; + + if (allowExtraFields) { + buttons += makeIconButton( + 'fa-layer-group', + 'button-row-add-batch', + pk, + '{% trans "Adjust batch code" %}', + { + collapseTarget: `row-batch-${pk}` + } + ); + + buttons += makeIconButton( + 'fa-boxes', + 'button-row-add-packaging', + pk, + '{% trans "Adjust packaging" %}', + { + collapseTarget: `row-packaging-${pk}` + } + ); + } + + buttons += makeRemoveButton( 'button-stock-item-remove', pk, '{% trans "Remove stock item" %}', - )); + ); + + buttons = wrapButtons(buttons); + + // Add in options for "batch code" and "serial numbers" + const batch_input = constructField( + `items_batch_code_${pk}`, + { + type: 'string', + required: false, + label: '{% trans "Batch Code" %}', + help_text: '{% trans "Enter batch code for incoming stock items" %}', + icon: 'fa-layer-group', + value: item.batch, + }, + { + hideLabels: true, + } + ); + + const packaging_input = constructField( + `items_packaging_${pk}`, + { + type: 'string', + required: false, + label: '{% trans "Packaging" %}', + help_text: '{% trans "Specify packaging for incoming stock items" %}', + icon: 'fa-boxes', + value: item.packaging, + }, + { + hideLabels: true, + } + ); html += ` @@ -1170,6 +1229,19 @@ function adjustStock(action, items, options={}) { + + + + + + + + + + + + + `; itemCount += 1; @@ -1266,21 +1338,30 @@ function adjustStock(action, items, options={}) { var item_pk_values = []; items.forEach(function(item) { - var pk = item.pk; + let pk = item.pk; // Does the row exist in the form? - var row = $(opts.modal).find(`#stock_item_${pk}`); + let row = $(opts.modal).find(`#stock_item_${pk}`); if (row.exists()) { item_pk_values.push(pk); - var quantity = getFormFieldValue(`items_quantity_${pk}`, {}, opts); - - data.items.push({ + let quantity = getFormFieldValue(`items_quantity_${pk}`, {}, opts); + let line = { pk: pk, - quantity: quantity, - }); + quantity: quantity + }; + + if (getFormFieldElement(`items_batch_code_${pk}`).exists()) { + line.batch = getFormFieldValue(`items_batch_code_${pk}`); + } + + if (getFormFieldElement(`items_packaging_${pk}`).exists()) { + line.packaging = getFormFieldValue(`items_packaging_${pk}`); + } + + data.items.push(line); } }); diff --git a/src/backend/InvenTree/templates/js/translated/table_filters.js b/src/backend/InvenTree/templates/js/translated/table_filters.js index 0c10b06f33..c32b69f8b6 100644 --- a/src/backend/InvenTree/templates/js/translated/table_filters.js +++ b/src/backend/InvenTree/templates/js/translated/table_filters.js @@ -716,6 +716,11 @@ function getPartTableFilters() { title: '{% trans "Active" %}', description: '{% trans "Show active parts" %}', }, + locked: { + type: 'bool', + title: '{% trans "Locked" %}', + description: '{% trans "Show locked parts" %}', + }, assembly: { type: 'bool', title: '{% trans "Assembly" %}', diff --git a/src/backend/InvenTree/users/models.py b/src/backend/InvenTree/users/models.py index 48bb915b6a..9b8a72b292 100644 --- a/src/backend/InvenTree/users/models.py +++ b/src/backend/InvenTree/users/models.py @@ -357,6 +357,10 @@ class RuleSet(models.Model): 'django_q_task', 'django_q_schedule', 'django_q_success', + # Importing + 'importer_dataimportsession', + 'importer_dataimportcolumnmap', + 'importer_dataimportrow', ] RULESET_CHANGE_INHERIT = [('part', 'partparameter'), ('part', 'bomitem')] @@ -405,7 +409,7 @@ class RuleSet(models.Model): ) @classmethod - def check_table_permission(cls, user, table, permission): + def check_table_permission(cls, user: User, table, permission): """Check if the provided user has the specified permission against the table.""" # Superuser knows no bounds if user.is_superuser: @@ -664,7 +668,7 @@ def update_group_roles(group, debug=False): ) -def clear_user_role_cache(user): +def clear_user_role_cache(user: User): """Remove user role permission information from the cache. - This function is called whenever the user / group is updated @@ -674,11 +678,11 @@ def clear_user_role_cache(user): """ for role in RuleSet.get_ruleset_models().keys(): for perm in ['add', 'change', 'view', 'delete']: - key = f'role_{user}_{role}_{perm}' + key = f'role_{user.pk}_{role}_{perm}' cache.delete(key) -def check_user_role(user, role, permission): +def check_user_role(user: User, role, permission): """Check if a user has a particular role:permission combination. If the user is a superuser, this will return True @@ -687,7 +691,7 @@ def check_user_role(user, role, permission): return True # First, check the cache - key = f'role_{user}_{role}_{permission}' + key = f'role_{user.pk}_{role}_{permission}' try: result = cache.get(key) diff --git a/src/backend/requirements-dev.txt b/src/backend/requirements-dev.txt index 7debaf3965..bb6952cfca 100644 --- a/src/backend/requirements-dev.txt +++ b/src/backend/requirements-dev.txt @@ -162,100 +162,100 @@ click==8.1.7 \ --hash=sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28 \ --hash=sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de # via pip-tools -coverage[toml]==7.5.1 \ - --hash=sha256:0646599e9b139988b63704d704af8e8df7fa4cbc4a1f33df69d97f36cb0a38de \ - --hash=sha256:0cdcbc320b14c3e5877ee79e649677cb7d89ef588852e9583e6b24c2e5072661 \ - --hash=sha256:0d0a0f5e06881ecedfe6f3dd2f56dcb057b6dbeb3327fd32d4b12854df36bf26 \ - --hash=sha256:1434e088b41594baa71188a17533083eabf5609e8e72f16ce8c186001e6b8c41 \ - --hash=sha256:16db7f26000a07efcf6aea00316f6ac57e7d9a96501e990a36f40c965ec7a95d \ - --hash=sha256:1cc0fe9b0b3a8364093c53b0b4c0c2dd4bb23acbec4c9240b5f284095ccf7981 \ - --hash=sha256:1fc81d5878cd6274ce971e0a3a18a8803c3fe25457165314271cf78e3aae3aa2 \ - --hash=sha256:2ec92012fefebee89a6b9c79bc39051a6cb3891d562b9270ab10ecfdadbc0c34 \ - --hash=sha256:39afcd3d4339329c5f58de48a52f6e4e50f6578dd6099961cf22228feb25f38f \ - --hash=sha256:4a7b0ceee8147444347da6a66be737c9d78f3353b0681715b668b72e79203e4a \ - --hash=sha256:4a9ca3f2fae0088c3c71d743d85404cec8df9be818a005ea065495bedc33da35 \ - --hash=sha256:4bf0655ab60d754491004a5efd7f9cccefcc1081a74c9ef2da4735d6ee4a6223 \ - --hash=sha256:4cc37def103a2725bc672f84bd939a6fe4522310503207aae4d56351644682f1 \ - --hash=sha256:4fc84a37bfd98db31beae3c2748811a3fa72bf2007ff7902f68746d9757f3746 \ - --hash=sha256:5037f8fcc2a95b1f0e80585bd9d1ec31068a9bcb157d9750a172836e98bc7a90 \ - --hash=sha256:54de9ef3a9da981f7af93eafde4ede199e0846cd819eb27c88e2b712aae9708c \ - --hash=sha256:556cf1a7cbc8028cb60e1ff0be806be2eded2daf8129b8811c63e2b9a6c43bca \ - --hash=sha256:57e0204b5b745594e5bc14b9b50006da722827f0b8c776949f1135677e88d0b8 \ - --hash=sha256:5a5740d1fb60ddf268a3811bcd353de34eb56dc24e8f52a7f05ee513b2d4f596 \ - --hash=sha256:5c3721c2c9e4c4953a41a26c14f4cef64330392a6d2d675c8b1db3b645e31f0e \ - --hash=sha256:5fa567e99765fe98f4e7d7394ce623e794d7cabb170f2ca2ac5a4174437e90dd \ - --hash=sha256:5fd215c0c7d7aab005221608a3c2b46f58c0285a819565887ee0b718c052aa4e \ - --hash=sha256:6175d1a0559986c6ee3f7fccfc4a90ecd12ba0a383dcc2da30c2b9918d67d8a3 \ - --hash=sha256:61c4bf1ba021817de12b813338c9be9f0ad5b1e781b9b340a6d29fc13e7c1b5e \ - --hash=sha256:6537e7c10cc47c595828b8a8be04c72144725c383c4702703ff4e42e44577312 \ - --hash=sha256:68f962d9b72ce69ea8621f57551b2fa9c70509af757ee3b8105d4f51b92b41a7 \ - --hash=sha256:7352b9161b33fd0b643ccd1f21f3a3908daaddf414f1c6cb9d3a2fd618bf2572 \ - --hash=sha256:796a79f63eca8814ca3317a1ea443645c9ff0d18b188de470ed7ccd45ae79428 \ - --hash=sha256:79afb6197e2f7f60c4824dd4b2d4c2ec5801ceb6ba9ce5d2c3080e5660d51a4f \ - --hash=sha256:7a588d39e0925f6a2bff87154752481273cdb1736270642aeb3635cb9b4cad07 \ - --hash=sha256:8748731ad392d736cc9ccac03c9845b13bb07d020a33423fa5b3a36521ac6e4e \ - --hash=sha256:8fe7502616b67b234482c3ce276ff26f39ffe88adca2acf0261df4b8454668b4 \ - --hash=sha256:9314d5678dcc665330df5b69c1e726a0e49b27df0461c08ca12674bcc19ef136 \ - --hash=sha256:9735317685ba6ec7e3754798c8871c2f49aa5e687cc794a0b1d284b2389d1bd5 \ - --hash=sha256:9981706d300c18d8b220995ad22627647be11a4276721c10911e0e9fa44c83e8 \ - --hash=sha256:9e78295f4144f9dacfed4f92935fbe1780021247c2fabf73a819b17f0ccfff8d \ - --hash=sha256:b016ea6b959d3b9556cb401c55a37547135a587db0115635a443b2ce8f1c7228 \ - --hash=sha256:b6cf3764c030e5338e7f61f95bd21147963cf6aa16e09d2f74f1fa52013c1206 \ - --hash=sha256:beccf7b8a10b09c4ae543582c1319c6df47d78fd732f854ac68d518ee1fb97fa \ - --hash=sha256:c0884920835a033b78d1c73b6d3bbcda8161a900f38a488829a83982925f6c2e \ - --hash=sha256:c3e757949f268364b96ca894b4c342b41dc6f8f8b66c37878aacef5930db61be \ - --hash=sha256:ca498687ca46a62ae590253fba634a1fe9836bc56f626852fb2720f334c9e4e5 \ - --hash=sha256:d1d0d98d95dd18fe29dc66808e1accf59f037d5716f86a501fc0256455219668 \ - --hash=sha256:d21918e9ef11edf36764b93101e2ae8cc82aa5efdc7c5a4e9c6c35a48496d601 \ - --hash=sha256:d7fed867ee50edf1a0b4a11e8e5d0895150e572af1cd6d315d557758bfa9c057 \ - --hash=sha256:db66fc317a046556a96b453a58eced5024af4582a8dbdc0c23ca4dbc0d5b3146 \ - --hash=sha256:dde0070c40ea8bb3641e811c1cfbf18e265d024deff6de52c5950677a8fb1e0f \ - --hash=sha256:df4e745a81c110e7446b1cc8131bf986157770fa405fe90e15e850aaf7619bc8 \ - --hash=sha256:e2213def81a50519d7cc56ed643c9e93e0247f5bbe0d1247d15fa520814a7cd7 \ - --hash=sha256:ef48e2707fb320c8f139424a596f5b69955a85b178f15af261bab871873bb987 \ - --hash=sha256:f152cbf5b88aaeb836127d920dd0f5e7edff5a66f10c079157306c4343d86c19 \ - --hash=sha256:fc0b4d8bfeabd25ea75e94632f5b6e047eef8adaed0c2161ada1e922e7f7cece -cryptography==42.0.7 \ - --hash=sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55 \ - --hash=sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785 \ - --hash=sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b \ - --hash=sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886 \ - --hash=sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82 \ - --hash=sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1 \ - --hash=sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda \ - --hash=sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f \ - --hash=sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68 \ - --hash=sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60 \ - --hash=sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7 \ - --hash=sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd \ - --hash=sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582 \ - --hash=sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc \ - --hash=sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858 \ - --hash=sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b \ - --hash=sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2 \ - --hash=sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678 \ - --hash=sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13 \ - --hash=sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4 \ - --hash=sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8 \ - --hash=sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604 \ - --hash=sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477 \ - --hash=sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e \ - --hash=sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a \ - --hash=sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9 \ - --hash=sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14 \ - --hash=sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda \ - --hash=sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da \ - --hash=sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562 \ - --hash=sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2 \ - --hash=sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9 +coverage[toml]==7.5.4 \ + --hash=sha256:018a12985185038a5b2bcafab04ab833a9a0f2c59995b3cec07e10074c78635f \ + --hash=sha256:02ff6e898197cc1e9fa375581382b72498eb2e6d5fc0b53f03e496cfee3fac6d \ + --hash=sha256:042183de01f8b6d531e10c197f7f0315a61e8d805ab29c5f7b51a01d62782747 \ + --hash=sha256:1014fbf665fef86cdfd6cb5b7371496ce35e4d2a00cda501cf9f5b9e6fced69f \ + --hash=sha256:1137f46adb28e3813dec8c01fefadcb8c614f33576f672962e323b5128d9a68d \ + --hash=sha256:16852febd96acd953b0d55fc842ce2dac1710f26729b31c80b940b9afcd9896f \ + --hash=sha256:2174e7c23e0a454ffe12267a10732c273243b4f2d50d07544a91198f05c48f47 \ + --hash=sha256:2214ee920787d85db1b6a0bd9da5f8503ccc8fcd5814d90796c2f2493a2f4d2e \ + --hash=sha256:3257fdd8e574805f27bb5342b77bc65578e98cbc004a92232106344053f319ba \ + --hash=sha256:3684bc2ff328f935981847082ba4fdc950d58906a40eafa93510d1b54c08a66c \ + --hash=sha256:3a6612c99081d8d6134005b1354191e103ec9705d7ba2754e848211ac8cacc6b \ + --hash=sha256:3d7564cc09dd91b5a6001754a5b3c6ecc4aba6323baf33a12bd751036c998be4 \ + --hash=sha256:44da56a2589b684813f86d07597fdf8a9c6ce77f58976727329272f5a01f99f7 \ + --hash=sha256:5013ed890dc917cef2c9f765c4c6a8ae9df983cd60dbb635df8ed9f4ebc9f555 \ + --hash=sha256:54317c2b806354cbb2dc7ac27e2b93f97096912cc16b18289c5d4e44fc663233 \ + --hash=sha256:56b4eafa21c6c175b3ede004ca12c653a88b6f922494b023aeb1e836df953ace \ + --hash=sha256:581ea96f92bf71a5ec0974001f900db495488434a6928a2ca7f01eee20c23805 \ + --hash=sha256:5cd64adedf3be66f8ccee418473c2916492d53cbafbfcff851cbec5a8454b136 \ + --hash=sha256:5df54843b88901fdc2f598ac06737f03d71168fd1175728054c8f5a2739ac3e4 \ + --hash=sha256:65e528e2e921ba8fd67d9055e6b9f9e34b21ebd6768ae1c1723f4ea6ace1234d \ + --hash=sha256:6aae5cce399a0f065da65c7bb1e8abd5c7a3043da9dceb429ebe1b289bc07806 \ + --hash=sha256:6cfb5a4f556bb51aba274588200a46e4dd6b505fb1a5f8c5ae408222eb416f99 \ + --hash=sha256:7076b4b3a5f6d2b5d7f1185fde25b1e54eb66e647a1dfef0e2c2bfaf9b4c88c8 \ + --hash=sha256:73ca8fbc5bc622e54627314c1a6f1dfdd8db69788f3443e752c215f29fa87a0b \ + --hash=sha256:79b356f3dd5b26f3ad23b35c75dbdaf1f9e2450b6bcefc6d0825ea0aa3f86ca5 \ + --hash=sha256:7a892be37ca35eb5019ec85402c3371b0f7cda5ab5056023a7f13da0961e60da \ + --hash=sha256:8192794d120167e2a64721d88dbd688584675e86e15d0569599257566dec9bf0 \ + --hash=sha256:820bc841faa502e727a48311948e0461132a9c8baa42f6b2b84a29ced24cc078 \ + --hash=sha256:8f894208794b164e6bd4bba61fc98bf6b06be4d390cf2daacfa6eca0a6d2bb4f \ + --hash=sha256:a04e990a2a41740b02d6182b498ee9796cf60eefe40cf859b016650147908029 \ + --hash=sha256:a44963520b069e12789d0faea4e9fdb1e410cdc4aab89d94f7f55cbb7fef0353 \ + --hash=sha256:a6bb74ed465d5fb204b2ec41d79bcd28afccf817de721e8a807d5141c3426638 \ + --hash=sha256:ab73b35e8d109bffbda9a3e91c64e29fe26e03e49addf5b43d85fc426dde11f9 \ + --hash=sha256:aea072a941b033813f5e4814541fc265a5c12ed9720daef11ca516aeacd3bd7f \ + --hash=sha256:b1ccf5e728ccf83acd313c89f07c22d70d6c375a9c6f339233dcf792094bcbf7 \ + --hash=sha256:b385d49609f8e9efc885790a5a0e89f2e3ae042cdf12958b6034cc442de428d3 \ + --hash=sha256:b3d45ff86efb129c599a3b287ae2e44c1e281ae0f9a9bad0edc202179bcc3a2e \ + --hash=sha256:b4a474f799456e0eb46d78ab07303286a84a3140e9700b9e154cfebc8f527016 \ + --hash=sha256:b95c3a8cb0463ba9f77383d0fa8c9194cf91f64445a63fc26fb2327e1e1eb088 \ + --hash=sha256:c5986ee7ea0795a4095ac4d113cbb3448601efca7f158ec7f7087a6c705304e4 \ + --hash=sha256:cdd31315fc20868c194130de9ee6bfd99755cc9565edff98ecc12585b90be882 \ + --hash=sha256:cef4649ec906ea7ea5e9e796e68b987f83fa9a718514fe147f538cfeda76d7a7 \ + --hash=sha256:d05c16cf4b4c2fc880cb12ba4c9b526e9e5d5bb1d81313d4d732a5b9fe2b9d53 \ + --hash=sha256:d2e344d6adc8ef81c5a233d3a57b3c7d5181f40e79e05e1c143da143ccb6377d \ + --hash=sha256:d45d3cbd94159c468b9b8c5a556e3f6b81a8d1af2a92b77320e887c3e7a5d080 \ + --hash=sha256:db14f552ac38f10758ad14dd7b983dbab424e731588d300c7db25b6f89e335b5 \ + --hash=sha256:dbc5958cb471e5a5af41b0ddaea96a37e74ed289535e8deca404811f6cb0bc3d \ + --hash=sha256:ddbd2f9713a79e8e7242d7c51f1929611e991d855f414ca9996c20e44a895f7c \ + --hash=sha256:e16f3d6b491c48c5ae726308e6ab1e18ee830b4cdd6913f2d7f77354b33f91c8 \ + --hash=sha256:e2afe743289273209c992075a5a4913e8d007d569a406ffed0bd080ea02b0633 \ + --hash=sha256:e564c2cf45d2f44a9da56f4e3a26b2236504a496eb4cb0ca7221cd4cc7a9aca9 \ + --hash=sha256:ed550e7442f278af76d9d65af48069f1fb84c9f745ae249c1a183c1e9d1b025c +cryptography==42.0.8 \ + --hash=sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad \ + --hash=sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583 \ + --hash=sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b \ + --hash=sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c \ + --hash=sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1 \ + --hash=sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648 \ + --hash=sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949 \ + --hash=sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba \ + --hash=sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c \ + --hash=sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9 \ + --hash=sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d \ + --hash=sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c \ + --hash=sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e \ + --hash=sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2 \ + --hash=sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d \ + --hash=sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7 \ + --hash=sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70 \ + --hash=sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2 \ + --hash=sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7 \ + --hash=sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14 \ + --hash=sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe \ + --hash=sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e \ + --hash=sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71 \ + --hash=sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961 \ + --hash=sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7 \ + --hash=sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c \ + --hash=sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28 \ + --hash=sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842 \ + --hash=sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902 \ + --hash=sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801 \ + --hash=sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a \ + --hash=sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e # via pdfminer-six distlib==0.3.8 \ --hash=sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784 \ --hash=sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64 # via virtualenv -django==4.2.12 \ - --hash=sha256:6a6b4aff8a2db2dc7dcc5650cb2c7a7a0d1eb38e2aa2335fdf001e41801e9797 \ - --hash=sha256:7640e86835d44ae118c2916a803d8081f40e214ee18a5a92a0202994ca60a4b4 +django==4.2.14 \ + --hash=sha256:3ec32bc2c616ab02834b9cac93143a7dc1cdcd5b822d78ac95fc20a38c534240 \ + --hash=sha256:fc6919875a6226c7ffcae1a7d51e0f2ceaf6f160393180818f6c95f51b1e7b96 # via # django-admin-shell # django-slowtests @@ -269,46 +269,46 @@ django-slowtests==1.1.1 \ django-test-migrations==1.3.0 \ --hash=sha256:b42edb1af481e08c9d91c95aa9b373e76e905a931bc19c086ec00a6cb936876e \ --hash=sha256:b52b29475f9a1bcaa4512f2ec8fad08b5f470cf1cf522e86b7d950252fb6fbf1 -filelock==3.14.0 \ - --hash=sha256:43339835842f110ca7ae60f1e1c160714c5a6afd15a2873419ab185334975c0f \ - --hash=sha256:6ea72da3be9b8c82afd3edcf99f2fffbb5076335a5ae4d03248bb5b6c3eae78a +filelock==3.15.4 \ + --hash=sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb \ + --hash=sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7 # via virtualenv identify==2.5.36 \ --hash=sha256:37d93f380f4de590500d9dba7db359d0d3da95ffe7f9de1753faa159e71e7dfa \ --hash=sha256:e5e00f54165f9047fbebeb4a560f9acfb8af4c88232be60a488e9b68d122745d # via pre-commit -importlib-metadata==7.0.0 \ - --hash=sha256:7fc841f8b8332803464e5dc1c63a2e59121f46ca186c0e2e182e80bf8c1319f7 \ - --hash=sha256:d97503976bb81f40a193d41ee6570868479c69d5068651eb039c40d850c59d67 +importlib-metadata==7.1.0 \ + --hash=sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570 \ + --hash=sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2 # via build isort==5.13.2 \ --hash=sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109 \ --hash=sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6 -nodeenv==1.8.0 \ - --hash=sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2 \ - --hash=sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec +nodeenv==1.9.1 \ + --hash=sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f \ + --hash=sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9 # via pre-commit -packaging==24.0 \ - --hash=sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5 \ - --hash=sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9 +packaging==24.1 \ + --hash=sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002 \ + --hash=sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124 # via build pdfminer-six==20231228 \ --hash=sha256:6004da3ad1a7a4d45930cb950393df89b068e73be365a6ff64a838d37bcb08c4 \ --hash=sha256:e8d3c3310e6fbc1fe414090123ab01351634b4ecb021232206c4c9a8ca3e3b8f -pip==24.0 \ - --hash=sha256:ba0d021a166865d2265246961bec0152ff124de910c5cc39f1156ce3fa7c69dc \ - --hash=sha256:ea9bd1a847e8c5774a5777bb398c19e80bcd4e2aa16a4b301b718fe6f593aba2 +pip==24.1 \ + --hash=sha256:a775837439bf5da2c1a0c2fa43d5744854497c689ddbd9344cf3ea6d00598540 \ + --hash=sha256:bdae551038c0ce6a83030b4aedef27fc95f0daa683593fea22fa05e55ed8e317 # via pip-tools pip-tools==7.4.1 \ --hash=sha256:4c690e5fbae2f21e87843e89c26191f0d9454f362d8acdbd695716493ec8b3a9 \ --hash=sha256:864826f5073864450e24dbeeb85ce3920cdfb09848a3d69ebf537b521f14bcc9 -platformdirs==4.2.1 \ - --hash=sha256:031cd18d4ec63ec53e82dceaac0417d218a6863f7745dfcc9efe7793b7039bdf \ - --hash=sha256:17d5a1161b3fd67b390023cb2d3b026bbd40abde6fdb052dfbd3a29c3ba22ee1 +platformdirs==4.2.2 \ + --hash=sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee \ + --hash=sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3 # via virtualenv -pre-commit==3.7.0 \ - --hash=sha256:5eae9e10c2b5ac51577c3452ec0a490455c45a0533f7960f993a0d01e59decab \ - --hash=sha256:e209d61b8acdcf742404408531f0c37d49d2c734fd7cff2d6076083d191cb060 +pre-commit==3.7.1 \ + --hash=sha256:8ca3ad567bc78a4972a3f1a477e94a79d4597e8140a6e0b651c5e33899c3654a \ + --hash=sha256:fae36fd1d7ad7d6a5a1c0b0d5adb2ed1a3bda5a21bf6c3e5372073d7a11cd4c5 pycparser==2.22 \ --hash=sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6 \ --hash=sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc @@ -372,12 +372,10 @@ pyyaml==6.0.1 \ --hash=sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d \ --hash=sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f # via pre-commit -setuptools==70.0.0 \ - --hash=sha256:54faa7f2e8d2d11bcd2c07bed282eef1046b5c080d1c32add737d7b5817b1ad4 \ - --hash=sha256:f211a66637b8fa059bb28183da127d4e86396c991a942b028c6650d4319c3fd0 - # via - # nodeenv - # pip-tools +setuptools==70.3.0 \ + --hash=sha256:f171bab1dfbc86b132997f26a119f6056a57950d058587841a0082e8830f9dc5 \ + --hash=sha256:fe384da74336c398e0d956d1cae0669bc02eed936cdb1d49b57de1990dc11ffc + # via pip-tools sqlparse==0.5.0 \ --hash=sha256:714d0a4932c059d16189f58ef5411ec2287a4360f17cdd0edd2d09d4c5087c93 \ --hash=sha256:c204494cd97479d0e39f28c93d46c0b2d5959c7b9ab904762ea6c7af211c8663 @@ -389,21 +387,21 @@ tomli==2.0.1 \ # build # coverage # pip-tools -typing-extensions==4.11.0 \ - --hash=sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0 \ - --hash=sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a +typing-extensions==4.12.2 \ + --hash=sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d \ + --hash=sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8 # via # asgiref # django-test-migrations -virtualenv==20.26.1 \ - --hash=sha256:604bfdceaeece392802e6ae48e69cec49168b9c5f4a44e483963f9242eb0e78b \ - --hash=sha256:7aa9982a728ae5892558bff6a2839c00b9ed145523ece2274fad6f414690ae75 +virtualenv==20.26.3 \ + --hash=sha256:4c43a2a236279d9ea36a0d76f98d84bd6ca94ac4e0f4a3b9d46d05e10fea542a \ + --hash=sha256:8cc4a31139e796e9a7de2cd5cf2489de1217193116a8fd42328f1bd65f434589 # via pre-commit wheel==0.43.0 \ --hash=sha256:465ef92c69fa5c5da2d1cf8ac40559a8c940886afcef87dcf14b9470862f1d85 \ --hash=sha256:55c570405f142630c6b9f72fe09d9b67cf1477fcf543ae5b8dcb1f5b7377da81 # via pip-tools -zipp==3.18.1 \ - --hash=sha256:206f5a15f2af3dbaee80769fb7dc6f249695e940acca08dfb2a4769fe61e538b \ - --hash=sha256:2884ed22e7d8961de1c9a05142eb69a247f120291bc0206a00a7642f09b5b715 +zipp==3.19.2 \ + --hash=sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19 \ + --hash=sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c # via importlib-metadata diff --git a/src/backend/requirements.in b/src/backend/requirements.in index b0ede62f5e..327047bb49 100644 --- a/src/backend/requirements.in +++ b/src/backend/requirements.in @@ -2,7 +2,7 @@ Django<5.0 # Django package coreapi # API documentation for djangorestframework cryptography>=40.0.0,!=40.0.2 # Core cryptographic functionality -django-allauth # SSO for external providers via OpenID +django-allauth[openid,saml] # SSO for external providers via OpenID django-allauth-2fa # MFA / 2FA django-cleanup # Automated deletion of old / unused uploaded files django-cors-headers # CORS headers extension for DRF @@ -13,7 +13,7 @@ django-filter # Extended filtering options django-flags # Feature flags django-formtools # Form wizard tools django-ical # iCal export for calendar views -django-import-export # Data import / export for admin interface +django-import-export<4.0 # Data import / export for admin interface # FIXED 2024-06-26 see https://github.com/inventree/InvenTree/pull/7521 django-maintenance-mode # Shut down application while reloading etc. django-markdownify # Markdown rendering django-mptt # Modified Preorder Tree Traversal @@ -30,7 +30,7 @@ django-stdimage # Advanced ImageField management django-taggit # Tagging support django-user-sessions # user sessions in DB django-weasyprint # django weasyprint integration -djangorestframework # DRF framework +djangorestframework<3.15 # DRF framework # FIXED 2024-06-26 see https://github.com/inventree/InvenTree/pull/7521 djangorestframework-simplejwt[crypto] # JWT authentication django-xforwardedfor-middleware # IP forwarding metadata dj-rest-auth # Authentication API endpoints diff --git a/src/backend/requirements.txt b/src/backend/requirements.txt index e631ad0619..a6c9b32f25 100644 --- a/src/backend/requirements.txt +++ b/src/backend/requirements.txt @@ -109,9 +109,9 @@ brotli==1.1.0 \ --hash=sha256:fd5f17ff8f14003595ab414e45fce13d073e0762394f957182e69035c9f3d7c2 \ --hash=sha256:fdc3ff3bfccdc6b9cc7c342c03aa2400683f0cb891d46e94b64a197910dc4064 # via fonttools -certifi==2024.2.2 \ - --hash=sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f \ - --hash=sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1 +certifi==2024.7.4 \ + --hash=sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b \ + --hash=sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90 # via # requests # sentry-sdk @@ -270,42 +270,40 @@ coreschema==0.0.4 \ --hash=sha256:5e6ef7bf38c1525d5e55a895934ab4273548629f16aed5c0a6caa74ebf45551f \ --hash=sha256:9503506007d482ab0867ba14724b93c18a33b22b6d19fb419ef2d239dd4a1607 # via coreapi -cryptography==42.0.7 \ - --hash=sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55 \ - --hash=sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785 \ - --hash=sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b \ - --hash=sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886 \ - --hash=sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82 \ - --hash=sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1 \ - --hash=sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda \ - --hash=sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f \ - --hash=sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68 \ - --hash=sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60 \ - --hash=sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7 \ - --hash=sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd \ - --hash=sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582 \ - --hash=sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc \ - --hash=sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858 \ - --hash=sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b \ - --hash=sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2 \ - --hash=sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678 \ - --hash=sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13 \ - --hash=sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4 \ - --hash=sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8 \ - --hash=sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604 \ - --hash=sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477 \ - --hash=sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e \ - --hash=sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a \ - --hash=sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9 \ - --hash=sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14 \ - --hash=sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda \ - --hash=sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da \ - --hash=sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562 \ - --hash=sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2 \ - --hash=sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9 - # via - # djangorestframework-simplejwt - # pyjwt +cryptography==42.0.8 \ + --hash=sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad \ + --hash=sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583 \ + --hash=sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b \ + --hash=sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c \ + --hash=sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1 \ + --hash=sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648 \ + --hash=sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949 \ + --hash=sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba \ + --hash=sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c \ + --hash=sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9 \ + --hash=sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d \ + --hash=sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c \ + --hash=sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e \ + --hash=sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2 \ + --hash=sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d \ + --hash=sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7 \ + --hash=sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70 \ + --hash=sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2 \ + --hash=sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7 \ + --hash=sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14 \ + --hash=sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe \ + --hash=sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e \ + --hash=sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71 \ + --hash=sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961 \ + --hash=sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7 \ + --hash=sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c \ + --hash=sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28 \ + --hash=sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842 \ + --hash=sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902 \ + --hash=sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801 \ + --hash=sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a \ + --hash=sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e + # via djangorestframework-simplejwt cssselect2==0.7.0 \ --hash=sha256:1ccd984dab89fc68955043aca4e1b03e0cf29cad9880f6e28e3ba7a74b14aa5a \ --hash=sha256:fd23a65bfd444595913f02fc71f6b286c29261e354c41d722ca7a261a49b5969 @@ -329,9 +327,9 @@ diff-match-patch==20230430 \ # via django-import-export dj-rest-auth==6.0.0 \ --hash=sha256:760b45f3a07cd6182e6a20fe07d0c55230c5f950167df724d7914d0dd8c50133 -django==4.2.12 \ - --hash=sha256:6a6b4aff8a2db2dc7dcc5650cb2c7a7a0d1eb38e2aa2335fdf001e41801e9797 \ - --hash=sha256:7640e86835d44ae118c2916a803d8081f40e214ee18a5a92a0202994ca60a4b4 +django==4.2.14 \ + --hash=sha256:3ec32bc2c616ab02834b9cac93143a7dc1cdcd5b822d78ac95fc20a38c534240 \ + --hash=sha256:fc6919875a6226c7ffcae1a7d51e0f2ceaf6f160393180818f6c95f51b1e7b96 # via # dj-rest-auth # django-allauth @@ -363,8 +361,8 @@ django==4.2.12 \ # djangorestframework # djangorestframework-simplejwt # drf-spectacular -django-allauth==0.61.1 \ - --hash=sha256:5b4ae515ea74f54f0041210692eee10c309ad15ddbbd03d3620693c75e3f7945 +django-allauth[openid, saml]==0.63.3 \ + --hash=sha256:2374164c468a309e6badf70bc3405136df6036f24a20a13387f2a063066bdaa9 # via django-allauth-2fa django-allauth-2fa==0.11.1 \ --hash=sha256:02ffdf1025836f072c2f6ec0964494589cf1d52362f663f9ff6d9ca61a7b6962 \ @@ -372,9 +370,9 @@ django-allauth-2fa==0.11.1 \ django-cleanup==8.1.0 \ --hash=sha256:70df905076a44e7a111b31198199af633dee08876e199e6dce36ca8dd6b8b10f \ --hash=sha256:7903873ea73b3f7e61e055340d27dba49b70634f60c87a573ad748e172836458 -django-cors-headers==4.3.1 \ - --hash=sha256:0b1fd19297e37417fc9f835d39e45c8c642938ddba1acce0c1753d3edef04f36 \ - --hash=sha256:0bf65ef45e606aff1994d35503e6b677c0b26cafff6506f8fd7187f3be840207 +django-cors-headers==4.4.0 \ + --hash=sha256:5c6e3b7fe870876a1efdfeb4f433782c3524078fa0dc9e0195f6706ce7a242f6 \ + --hash=sha256:92cf4633e22af67a230a1456cb1b7a02bb213d6536d2dcb2a4a24092ea9cebc2 django-crispy-forms==1.14.0 \ --hash=sha256:35887b8851a931374dd697207a8f56c57a9c5cb9dbf0b9fa54314da5666cea5b \ --hash=sha256:bc4d2037f6de602d39c0bc452ac3029d1f5d65e88458872cc4dbc01c3a400604 @@ -396,9 +394,9 @@ django-formtools==2.5.1 \ django-ical==1.9.2 \ --hash=sha256:44c9b6fa90d09f25e9ebaa91ed9eb007f079afbc23d6aac909cfc18188a8e90c \ --hash=sha256:74a16bca05735f91a00120cad7250f3c3aa292a9f698a6cfdc544a922c11de70 -django-import-export==3.3.7 \ - --hash=sha256:39a4216c26a2dba6429b64c68b3fe282a6279bb71afb4015c13df0696bdbb4cd \ - --hash=sha256:dffedd53bed33cfcceb3b2f13d4fd93a21826f9a2ae37b9926a1e1f4be24bcb9 +django-import-export==3.3.9 \ + --hash=sha256:16797965e93a8001fe812c61e3b71fb858c57c1bd16da195fe276d6de685348e \ + --hash=sha256:dd6cabc08ed6d1bd37a392e7fb542bd7d196b615c800168f5c69f0f55f49b103 django-js-asset==2.2.0 \ --hash=sha256:0c57a82cae2317e83951d956110ce847f58ff0cdc24e314dbc18b35033917e94 \ --hash=sha256:7ef3e858e13d06f10799b56eea62b1e76706f42cf4e709be4e13356bc0ae30d8 @@ -406,9 +404,9 @@ django-js-asset==2.2.0 \ django-maintenance-mode==0.21.1 \ --hash=sha256:b79afddb671c59972ae542e4fafbc99117d2d37991843eaaa837e328eed12b1b \ --hash=sha256:c02fff0e386b7f8b2ab54479d3a0d336ae34014da22a7a2365ca96d5a2c1db94 -django-markdownify==0.9.3 \ - --hash=sha256:acf42614a418aef55535a66d4b3426b181cf8c8f990e265f453df900c3ad3d25 \ - --hash=sha256:df00291bc338400b9ef999402751fc12c30623d266b7c04e43336d27d0eadee6 +django-markdownify==0.9.5 \ + --hash=sha256:2c4ae44e386c209453caf5e9ea1b74f64535985d338ad2d5ad5e7089cc94be86 \ + --hash=sha256:34c34eba4a797282a5c5bd97b13cec84d6a4c0673ad47ce1c1d000d74dd8d4ab django-money==3.2.0 \ --hash=sha256:2e4174b47993780bf4b61ad3fa0a66ebe140da42fdbe68b628c7ba9788287214 \ --hash=sha256:3099f906407175af06b56ef3ff5c250e2fc525ff00f50d42f77b98597e625459 @@ -525,103 +523,103 @@ et-xmlfile==1.1.0 \ feedparser==6.0.11 \ --hash=sha256:0be7ee7b395572b19ebeb1d6aafb0028dee11169f1c934e0ed67d54992f4ad45 \ --hash=sha256:c9d0407b64c6f2a065d0ebb292c2b35c01050cc0dc33757461aaabdc4c4184d5 -fonttools[woff]==4.51.0 \ - --hash=sha256:0118ef998a0699a96c7b28457f15546815015a2710a1b23a7bf6c1be60c01636 \ - --hash=sha256:0d145976194a5242fdd22df18a1b451481a88071feadf251221af110ca8f00ce \ - --hash=sha256:0e19bd9e9964a09cd2433a4b100ca7f34e34731e0758e13ba9a1ed6e5468cc0f \ - --hash=sha256:0f08c901d3866a8905363619e3741c33f0a83a680d92a9f0e575985c2634fcc1 \ - --hash=sha256:1250e818b5f8a679ad79660855528120a8f0288f8f30ec88b83db51515411fcc \ - --hash=sha256:15c94eeef6b095831067f72c825eb0e2d48bb4cea0647c1b05c981ecba2bf39f \ - --hash=sha256:1621ee57da887c17312acc4b0e7ac30d3a4fb0fec6174b2e3754a74c26bbed1e \ - --hash=sha256:180194c7fe60c989bb627d7ed5011f2bef1c4d36ecf3ec64daec8302f1ae0716 \ - --hash=sha256:278e50f6b003c6aed19bae2242b364e575bcb16304b53f2b64f6551b9c000e15 \ - --hash=sha256:32b17504696f605e9e960647c5f64b35704782a502cc26a37b800b4d69ff3c77 \ - --hash=sha256:3bee3f3bd9fa1d5ee616ccfd13b27ca605c2b4270e45715bd2883e9504735034 \ - --hash=sha256:4060acc2bfa2d8e98117828a238889f13b6f69d59f4f2d5857eece5277b829ba \ - --hash=sha256:54dcf21a2f2d06ded676e3c3f9f74b2bafded3a8ff12f0983160b13e9f2fb4a7 \ - --hash=sha256:56fc244f2585d6c00b9bcc59e6593e646cf095a96fe68d62cd4da53dd1287b55 \ - --hash=sha256:599bdb75e220241cedc6faebfafedd7670335d2e29620d207dd0378a4e9ccc5a \ - --hash=sha256:5f6bc991d1610f5c3bbe997b0233cbc234b8e82fa99fc0b2932dc1ca5e5afec0 \ - --hash=sha256:60a3409c9112aec02d5fb546f557bca6efa773dcb32ac147c6baf5f742e6258b \ - --hash=sha256:68b3fb7775a923be73e739f92f7e8a72725fd333eab24834041365d2278c3671 \ - --hash=sha256:76f1777d8b3386479ffb4a282e74318e730014d86ce60f016908d9801af9ca2a \ - --hash=sha256:806e7912c32a657fa39d2d6eb1d3012d35f841387c8fc6cf349ed70b7c340039 \ - --hash=sha256:84d7751f4468dd8cdd03ddada18b8b0857a5beec80bce9f435742abc9a851a74 \ - --hash=sha256:865a58b6e60b0938874af0968cd0553bcd88e0b2cb6e588727117bd099eef836 \ - --hash=sha256:8ac27f436e8af7779f0bb4d5425aa3535270494d3bc5459ed27de3f03151e4c2 \ - --hash=sha256:8b4850fa2ef2cfbc1d1f689bc159ef0f45d8d83298c1425838095bf53ef46308 \ - --hash=sha256:8b5ad456813d93b9c4b7ee55302208db2b45324315129d85275c01f5cb7e61a2 \ - --hash=sha256:8e2f1a4499e3b5ee82c19b5ee57f0294673125c65b0a1ff3764ea1f9db2f9ef5 \ - --hash=sha256:9696fe9f3f0c32e9a321d5268208a7cc9205a52f99b89479d1b035ed54c923f1 \ - --hash=sha256:96a48e137c36be55e68845fc4284533bda2980f8d6f835e26bca79d7e2006438 \ - --hash=sha256:a8feca65bab31479d795b0d16c9a9852902e3a3c0630678efb0b2b7941ea9c74 \ - --hash=sha256:aefa011207ed36cd280babfaa8510b8176f1a77261833e895a9d96e57e44802f \ - --hash=sha256:b2b92381f37b39ba2fc98c3a45a9d6383bfc9916a87d66ccb6553f7bdd129097 \ - --hash=sha256:b3c61423f22165541b9403ee39874dcae84cd57a9078b82e1dce8cb06b07fa2e \ - --hash=sha256:b5b48a1121117047d82695d276c2af2ee3a24ffe0f502ed581acc2673ecf1037 \ - --hash=sha256:c18b49adc721a7d0b8dfe7c3130c89b8704baf599fb396396d07d4aa69b824a1 \ - --hash=sha256:c5b8cab0c137ca229433570151b5c1fc6af212680b58b15abd797dcdd9dd5051 \ - --hash=sha256:c7e91abdfae1b5c9e3a543f48ce96013f9a08c6c9668f1e6be0beabf0a569c1b \ - --hash=sha256:cadf4e12a608ef1d13e039864f484c8a968840afa0258b0b843a0556497ea9ed \ - --hash=sha256:dc0673361331566d7a663d7ce0f6fdcbfbdc1f59c6e3ed1165ad7202ca183c68 \ - --hash=sha256:de7c29bdbdd35811f14493ffd2534b88f0ce1b9065316433b22d63ca1cd21f14 \ - --hash=sha256:e9d9298be7a05bb4801f558522adbe2feea1b0b103d5294ebf24a92dd49b78e5 \ - --hash=sha256:ee1af4be1c5afe4c96ca23badd368d8dc75f611887fb0c0dac9f71ee5d6f110e \ - --hash=sha256:f7e89853d8bea103c8e3514b9f9dc86b5b4120afb4583b57eb10dfa5afbe0936 +fonttools[woff]==4.53.0 \ + --hash=sha256:099634631b9dd271d4a835d2b2a9e042ccc94ecdf7e2dd9f7f34f7daf333358d \ + --hash=sha256:0c555e039d268445172b909b1b6bdcba42ada1cf4a60e367d68702e3f87e5f64 \ + --hash=sha256:1e677bfb2b4bd0e5e99e0f7283e65e47a9814b0486cb64a41adf9ef110e078f2 \ + --hash=sha256:2367d47816cc9783a28645bc1dac07f8ffc93e0f015e8c9fc674a5b76a6da6e4 \ + --hash=sha256:28d072169fe8275fb1a0d35e3233f6df36a7e8474e56cb790a7258ad822b6fd6 \ + --hash=sha256:31f0e3147375002aae30696dd1dc596636abbd22fca09d2e730ecde0baad1d6b \ + --hash=sha256:3e0ad3c6ea4bd6a289d958a1eb922767233f00982cf0fe42b177657c86c80a8f \ + --hash=sha256:45b4afb069039f0366a43a5d454bc54eea942bfb66b3fc3e9a2c07ef4d617380 \ + --hash=sha256:4a2a6ba400d386e904fd05db81f73bee0008af37799a7586deaa4aef8cd5971e \ + --hash=sha256:4f520d9ac5b938e6494f58a25c77564beca7d0199ecf726e1bd3d56872c59749 \ + --hash=sha256:52a6e0a7a0bf611c19bc8ec8f7592bdae79c8296c70eb05917fd831354699b20 \ + --hash=sha256:5a4788036201c908079e89ae3f5399b33bf45b9ea4514913f4dbbe4fac08efe0 \ + --hash=sha256:6b4f04b1fbc01a3569d63359f2227c89ab294550de277fd09d8fca6185669fa4 \ + --hash=sha256:715b41c3e231f7334cbe79dfc698213dcb7211520ec7a3bc2ba20c8515e8a3b5 \ + --hash=sha256:73121a9b7ff93ada888aaee3985a88495489cc027894458cb1a736660bdfb206 \ + --hash=sha256:74ae2441731a05b44d5988d3ac2cf784d3ee0a535dbed257cbfff4be8bb49eb9 \ + --hash=sha256:7d6166192dcd925c78a91d599b48960e0a46fe565391c79fe6de481ac44d20ac \ + --hash=sha256:7f193f060391a455920d61684a70017ef5284ccbe6023bb056e15e5ac3de11d1 \ + --hash=sha256:907fa0b662dd8fc1d7c661b90782ce81afb510fc4b7aa6ae7304d6c094b27bce \ + --hash=sha256:93156dd7f90ae0a1b0e8871032a07ef3178f553f0c70c386025a808f3a63b1f4 \ + --hash=sha256:93bc9e5aaa06ff928d751dc6be889ff3e7d2aa393ab873bc7f6396a99f6fbb12 \ + --hash=sha256:95db0c6581a54b47c30860d013977b8a14febc206c8b5ff562f9fe32738a8aca \ + --hash=sha256:973d030180eca8255b1bce6ffc09ef38a05dcec0e8320cc9b7bcaa65346f341d \ + --hash=sha256:9cd7a6beec6495d1dffb1033d50a3f82dfece23e9eb3c20cd3c2444d27514068 \ + --hash=sha256:9fe9096a60113e1d755e9e6bda15ef7e03391ee0554d22829aa506cdf946f796 \ + --hash=sha256:a209d2e624ba492df4f3bfad5996d1f76f03069c6133c60cd04f9a9e715595ec \ + --hash=sha256:a239afa1126b6a619130909c8404070e2b473dd2b7fc4aacacd2e763f8597fea \ + --hash=sha256:ba9f09ff17f947392a855e3455a846f9855f6cf6bec33e9a427d3c1d254c712f \ + --hash=sha256:bb7273789f69b565d88e97e9e1da602b4ee7ba733caf35a6c2affd4334d4f005 \ + --hash=sha256:bd5bc124fae781a4422f61b98d1d7faa47985f663a64770b78f13d2c072410c2 \ + --hash=sha256:bff98816cb144fb7b85e4b5ba3888a33b56ecef075b0e95b95bcd0a5fbf20f06 \ + --hash=sha256:c4ee5a24e281fbd8261c6ab29faa7fd9a87a12e8c0eed485b705236c65999109 \ + --hash=sha256:c93ed66d32de1559b6fc348838c7572d5c0ac1e4a258e76763a5caddd8944002 \ + --hash=sha256:d1a24f51a3305362b94681120c508758a88f207fa0a681c16b5a4172e9e6c7a9 \ + --hash=sha256:d8f191a17369bd53a5557a5ee4bab91d5330ca3aefcdf17fab9a497b0e7cff7a \ + --hash=sha256:daaef7390e632283051e3cf3e16aff2b68b247e99aea916f64e578c0449c9c68 \ + --hash=sha256:e40013572bfb843d6794a3ce076c29ef4efd15937ab833f520117f8eccc84fd6 \ + --hash=sha256:eceef49f457253000e6a2d0f7bd08ff4e9fe96ec4ffce2dbcb32e34d9c1b8161 \ + --hash=sha256:ee595d7ba9bba130b2bec555a40aafa60c26ce68ed0cf509983e0f12d88674fd \ + --hash=sha256:ef50ec31649fbc3acf6afd261ed89d09eb909b97cc289d80476166df8438524d \ + --hash=sha256:fa1f3e34373aa16045484b4d9d352d4c6b5f9f77ac77a178252ccbc851e8b2ee \ + --hash=sha256:fca66d9ff2ac89b03f5aa17e0b21a97c21f3491c46b583bb131eb32c7bab33af # via weasyprint -googleapis-common-protos==1.63.0 \ - --hash=sha256:17ad01b11d5f1d0171c06d3ba5c04c54474e883b66b949722b4938ee2694ef4e \ - --hash=sha256:ae45f75702f7c08b541f750854a678bd8f534a1a6bace6afe975f1d0a82d6632 +googleapis-common-protos==1.63.2 \ + --hash=sha256:27a2499c7e8aff199665b22741997e485eccc8645aa9176c7c988e6fae507945 \ + --hash=sha256:27c5abdffc4911f28101e635de1533fb4cfd2c37fbaa9174587c799fac90aa87 # via # opentelemetry-exporter-otlp-proto-grpc # opentelemetry-exporter-otlp-proto-http -grpcio==1.63.0 \ - --hash=sha256:01799e8649f9e94ba7db1aeb3452188048b0019dc37696b0f5ce212c87c560c3 \ - --hash=sha256:0697563d1d84d6985e40ec5ec596ff41b52abb3fd91ec240e8cb44a63b895094 \ - --hash=sha256:08e1559fd3b3b4468486b26b0af64a3904a8dbc78d8d936af9c1cf9636eb3e8b \ - --hash=sha256:166e5c460e5d7d4656ff9e63b13e1f6029b122104c1633d5f37eaea348d7356d \ - --hash=sha256:1ff737cf29b5b801619f10e59b581869e32f400159e8b12d7a97e7e3bdeee6a2 \ - --hash=sha256:219bb1848cd2c90348c79ed0a6b0ea51866bc7e72fa6e205e459fedab5770172 \ - --hash=sha256:259e11932230d70ef24a21b9fb5bb947eb4703f57865a404054400ee92f42f5d \ - --hash=sha256:2e93aca840c29d4ab5db93f94ed0a0ca899e241f2e8aec6334ab3575dc46125c \ - --hash=sha256:3a6d1f9ea965e750db7b4ee6f9fdef5fdf135abe8a249e75d84b0a3e0c668a1b \ - --hash=sha256:50344663068041b34a992c19c600236e7abb42d6ec32567916b87b4c8b8833b3 \ - --hash=sha256:56cdf96ff82e3cc90dbe8bac260352993f23e8e256e063c327b6cf9c88daf7a9 \ - --hash=sha256:5c039ef01516039fa39da8a8a43a95b64e288f79f42a17e6c2904a02a319b357 \ - --hash=sha256:6426e1fb92d006e47476d42b8f240c1d916a6d4423c5258ccc5b105e43438f61 \ - --hash=sha256:65bf975639a1f93bee63ca60d2e4951f1b543f498d581869922910a476ead2f5 \ - --hash=sha256:6a1a3642d76f887aa4009d92f71eb37809abceb3b7b5a1eec9c554a246f20e3a \ - --hash=sha256:6ef0ad92873672a2a3767cb827b64741c363ebaa27e7f21659e4e31f4d750280 \ - --hash=sha256:756fed02dacd24e8f488f295a913f250b56b98fb793f41d5b2de6c44fb762434 \ - --hash=sha256:75f701ff645858a2b16bc8c9fc68af215a8bb2d5a9b647448129de6e85d52bce \ - --hash=sha256:8064d986d3a64ba21e498b9a376cbc5d6ab2e8ab0e288d39f266f0fca169b90d \ - --hash=sha256:878b1d88d0137df60e6b09b74cdb73db123f9579232c8456f53e9abc4f62eb3c \ - --hash=sha256:8f3f6883ce54a7a5f47db43289a0a4c776487912de1a0e2cc83fdaec9685cc9f \ - --hash=sha256:91b73d3f1340fefa1e1716c8c1ec9930c676d6b10a3513ab6c26004cb02d8b3f \ - --hash=sha256:93a46794cc96c3a674cdfb59ef9ce84d46185fe9421baf2268ccb556f8f81f57 \ - --hash=sha256:93f45f27f516548e23e4ec3fbab21b060416007dbe768a111fc4611464cc773f \ - --hash=sha256:9e350cb096e5c67832e9b6e018cf8a0d2a53b2a958f6251615173165269a91b0 \ - --hash=sha256:a2d60cd1d58817bc5985fae6168d8b5655c4981d448d0f5b6194bbcc038090d2 \ - --hash=sha256:a3abfe0b0f6798dedd2e9e92e881d9acd0fdb62ae27dcbbfa7654a57e24060c0 \ - --hash=sha256:a44624aad77bf8ca198c55af811fd28f2b3eaf0a50ec5b57b06c034416ef2d0a \ - --hash=sha256:a7b19dfc74d0be7032ca1eda0ed545e582ee46cd65c162f9e9fc6b26ef827dc6 \ - --hash=sha256:ad2ac8903b2eae071055a927ef74121ed52d69468e91d9bcbd028bd0e554be6d \ - --hash=sha256:b005292369d9c1f80bf70c1db1c17c6c342da7576f1c689e8eee4fb0c256af85 \ - --hash=sha256:b2e44f59316716532a993ca2966636df6fbe7be4ab6f099de6815570ebe4383a \ - --hash=sha256:b3afbd9d6827fa6f475a4f91db55e441113f6d3eb9b7ebb8fb806e5bb6d6bd0d \ - --hash=sha256:b416252ac5588d9dfb8a30a191451adbf534e9ce5f56bb02cd193f12d8845b7f \ - --hash=sha256:b5194775fec7dc3dbd6a935102bb156cd2c35efe1685b0a46c67b927c74f0cfb \ - --hash=sha256:cacdef0348a08e475a721967f48206a2254a1b26ee7637638d9e081761a5ba86 \ - --hash=sha256:cd1e68776262dd44dedd7381b1a0ad09d9930ffb405f737d64f505eb7f77d6c7 \ - --hash=sha256:cdcda1156dcc41e042d1e899ba1f5c2e9f3cd7625b3d6ebfa619806a4c1aadda \ - --hash=sha256:cf8dae9cc0412cb86c8de5a8f3be395c5119a370f3ce2e69c8b7d46bb9872c8d \ - --hash=sha256:d2497769895bb03efe3187fb1888fc20e98a5f18b3d14b606167dacda5789434 \ - --hash=sha256:e3b77eaefc74d7eb861d3ffbdf91b50a1bb1639514ebe764c47773b833fa2d91 \ - --hash=sha256:e48cee31bc5f5a31fb2f3b573764bd563aaa5472342860edcc7039525b53e46a \ - --hash=sha256:e4cbb2100ee46d024c45920d16e888ee5d3cf47c66e316210bc236d5bebc42b3 \ - --hash=sha256:f28f8b2db7b86c77916829d64ab21ff49a9d8289ea1564a2b2a3a8ed9ffcccd3 \ - --hash=sha256:f3023e14805c61bc439fb40ca545ac3d5740ce66120a678a3c6c2c55b70343d1 \ - --hash=sha256:fdf348ae69c6ff484402cfdb14e18c1b0054ac2420079d575c53a60b9b2853ae +grpcio==1.64.1 \ + --hash=sha256:03b43d0ccf99c557ec671c7dede64f023c7da9bb632ac65dbc57f166e4970040 \ + --hash=sha256:0a12ddb1678ebc6a84ec6b0487feac020ee2b1659cbe69b80f06dbffdb249122 \ + --hash=sha256:0a2813093ddb27418a4c99f9b1c223fab0b053157176a64cc9db0f4557b69bd9 \ + --hash=sha256:0cc79c982ccb2feec8aad0e8fb0d168bcbca85bc77b080d0d3c5f2f15c24ea8f \ + --hash=sha256:1257b76748612aca0f89beec7fa0615727fd6f2a1ad580a9638816a4b2eb18fd \ + --hash=sha256:1262402af5a511c245c3ae918167eca57342c72320dffae5d9b51840c4b2f86d \ + --hash=sha256:19264fc964576ddb065368cae953f8d0514ecc6cb3da8903766d9fb9d4554c33 \ + --hash=sha256:198908f9b22e2672a998870355e226a725aeab327ac4e6ff3a1399792ece4762 \ + --hash=sha256:1de403fc1305fd96cfa75e83be3dee8538f2413a6b1685b8452301c7ba33c294 \ + --hash=sha256:20405cb8b13fd779135df23fabadc53b86522d0f1cba8cca0e87968587f50650 \ + --hash=sha256:2981c7365a9353f9b5c864595c510c983251b1ab403e05b1ccc70a3d9541a73b \ + --hash=sha256:2c3c1b90ab93fed424e454e93c0ed0b9d552bdf1b0929712b094f5ecfe7a23ad \ + --hash=sha256:39b9d0acaa8d835a6566c640f48b50054f422d03e77e49716d4c4e8e279665a1 \ + --hash=sha256:3b64ae304c175671efdaa7ec9ae2cc36996b681eb63ca39c464958396697daff \ + --hash=sha256:4657d24c8063e6095f850b68f2d1ba3b39f2b287a38242dcabc166453e950c59 \ + --hash=sha256:4d6dab6124225496010bd22690f2d9bd35c7cbb267b3f14e7a3eb05c911325d4 \ + --hash=sha256:55260032b95c49bee69a423c2f5365baa9369d2f7d233e933564d8a47b893027 \ + --hash=sha256:55697ecec192bc3f2f3cc13a295ab670f51de29884ca9ae6cd6247df55df2502 \ + --hash=sha256:5841dd1f284bd1b3d8a6eca3a7f062b06f1eec09b184397e1d1d43447e89a7ae \ + --hash=sha256:58b1041e7c870bb30ee41d3090cbd6f0851f30ae4eb68228955d973d3efa2e61 \ + --hash=sha256:5e42634a989c3aa6049f132266faf6b949ec2a6f7d302dbb5c15395b77d757eb \ + --hash=sha256:5e56462b05a6f860b72f0fa50dca06d5b26543a4e88d0396259a07dc30f4e5aa \ + --hash=sha256:5f8b75f64d5d324c565b263c67dbe4f0af595635bbdd93bb1a88189fc62ed2e5 \ + --hash=sha256:62b4e6eb7bf901719fce0ca83e3ed474ae5022bb3827b0a501e056458c51c0a1 \ + --hash=sha256:6503b64c8b2dfad299749cad1b595c650c91e5b2c8a1b775380fcf8d2cbba1e9 \ + --hash=sha256:6c024ffc22d6dc59000faf8ad781696d81e8e38f4078cb0f2630b4a3cf231a90 \ + --hash=sha256:73819689c169417a4f978e562d24f2def2be75739c4bed1992435d007819da1b \ + --hash=sha256:75dbbf415026d2862192fe1b28d71f209e2fd87079d98470db90bebe57b33179 \ + --hash=sha256:8caee47e970b92b3dd948371230fcceb80d3f2277b3bf7fbd7c0564e7d39068e \ + --hash=sha256:8d51dd1c59d5fa0f34266b80a3805ec29a1f26425c2a54736133f6d87fc4968a \ + --hash=sha256:940e3ec884520155f68a3b712d045e077d61c520a195d1a5932c531f11883489 \ + --hash=sha256:a011ac6c03cfe162ff2b727bcb530567826cec85eb8d4ad2bfb4bd023287a52d \ + --hash=sha256:a3a035c37ce7565b8f4f35ff683a4db34d24e53dc487e47438e434eb3f701b2a \ + --hash=sha256:a5e771d0252e871ce194d0fdcafd13971f1aae0ddacc5f25615030d5df55c3a2 \ + --hash=sha256:ac15b6c2c80a4d1338b04d42a02d376a53395ddf0ec9ab157cbaf44191f3ffdd \ + --hash=sha256:b1a82e0b9b3022799c336e1fc0f6210adc019ae84efb7321d668129d28ee1efb \ + --hash=sha256:bac71b4b28bc9af61efcdc7630b166440bbfbaa80940c9a697271b5e1dabbc61 \ + --hash=sha256:bbc5b1d78a7822b0a84c6f8917faa986c1a744e65d762ef6d8be9d75677af2ca \ + --hash=sha256:c1a786ac592b47573a5bb7e35665c08064a5d77ab88a076eec11f8ae86b3e3f6 \ + --hash=sha256:c84ad903d0d94311a2b7eea608da163dace97c5fe9412ea311e72c3684925602 \ + --hash=sha256:d4d29cc612e1332237877dfa7fe687157973aab1d63bd0f84cf06692f04c0367 \ + --hash=sha256:e3d9f8d1221baa0ced7ec7322a981e28deb23749c76eeeb3d33e18b72935ab62 \ + --hash=sha256:e7cd5c1325f6808b8ae31657d281aadb2a51ac11ab081ae335f4f7fc44c1721d \ + --hash=sha256:ed6091fa0adcc7e4ff944090cf203a52da35c37a130efa564ded02b7aff63bcd \ + --hash=sha256:ee73a2f5ca4ba44fa33b4d7d2c71e2c8a9e9f78d53f6507ad68e7d2ad5f64a22 \ + --hash=sha256:f10193c69fc9d3d726e83bbf0f3d316f1847c3071c8c93d8090cf5f326b14309 # via opentelemetry-exporter-otlp-proto-grpc gunicorn==22.0.0 \ --hash=sha256:350679f91b24062c86e386e198a15438d53a7a8207235a78ba1b53df4c4378d9 \ @@ -630,17 +628,17 @@ html5lib==1.1 \ --hash=sha256:0d78f8fde1c230e99fe37986a60526d7049ed4bf8a9fadbad5f00e22e58e041d \ --hash=sha256:b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f # via weasyprint -icalendar==5.0.12 \ - --hash=sha256:73f9be68477722c98320621400943705dcfdbbc6c2b565253f72d3f87e514db8 \ - --hash=sha256:d873bb859df9c6d0e597b16d247436e0f83f7ac1b90a06429b8393fe8afeba40 +icalendar==5.0.13 \ + --hash=sha256:5ded5415e2e1edef5ab230024a75878a7a81d518a3b1ae4f34bf20b173c84dc2 \ + --hash=sha256:92799fde8cce0b61daa8383593836d1e19136e504fa1671f471f98be9b029706 # via django-ical idna==3.7 \ --hash=sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc \ --hash=sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0 # via requests -importlib-metadata==7.0.0 \ - --hash=sha256:7fc841f8b8332803464e5dc1c63a2e59121f46ca186c0e2e182e80bf8c1319f7 \ - --hash=sha256:d97503976bb81f40a193d41ee6570868479c69d5068651eb039c40d850c59d67 +importlib-metadata==7.1.0 \ + --hash=sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570 \ + --hash=sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2 # via # django-q2 # markdown @@ -649,6 +647,10 @@ inflection==0.5.1 \ --hash=sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417 \ --hash=sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2 # via drf-spectacular +isodate==0.6.1 \ + --hash=sha256:0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96 \ + --hash=sha256:48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9 + # via python3-saml itypes==1.2.0 \ --hash=sha256:03da6872ca89d29aef62773672b2d408f490f80db48b23079a4b194c86dd04c6 \ --hash=sha256:af886f129dea4a2a1e3d36595a2d139589e4dd287f5cab0b40e799ee81570ff1 @@ -665,6 +667,152 @@ jsonschema-specifications==2023.12.1 \ --hash=sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc \ --hash=sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c # via jsonschema +lxml==5.2.2 \ + --hash=sha256:02437fb7308386867c8b7b0e5bc4cd4b04548b1c5d089ffb8e7b31009b961dc3 \ + --hash=sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a \ + --hash=sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0 \ + --hash=sha256:06668e39e1f3c065349c51ac27ae430719d7806c026fec462e5693b08b95696b \ + --hash=sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f \ + --hash=sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6 \ + --hash=sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73 \ + --hash=sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d \ + --hash=sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad \ + --hash=sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b \ + --hash=sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a \ + --hash=sha256:19b4e485cd07b7d83e3fe3b72132e7df70bfac22b14fe4bf7a23822c3a35bff5 \ + --hash=sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab \ + --hash=sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316 \ + --hash=sha256:1b590b39ef90c6b22ec0be925b211298e810b4856909c8ca60d27ffbca6c12e6 \ + --hash=sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df \ + --hash=sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca \ + --hash=sha256:2304d3c93f2258ccf2cf7a6ba8c761d76ef84948d87bf9664e14d203da2cd264 \ + --hash=sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8 \ + --hash=sha256:23cfafd56887eaed93d07bc4547abd5e09d837a002b791e9767765492a75883f \ + --hash=sha256:28bf95177400066596cdbcfc933312493799382879da504633d16cf60bba735b \ + --hash=sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3 \ + --hash=sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5 \ + --hash=sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed \ + --hash=sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab \ + --hash=sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5 \ + --hash=sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726 \ + --hash=sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d \ + --hash=sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632 \ + --hash=sha256:38b67afb0a06b8575948641c1d6d68e41b83a3abeae2ca9eed2ac59892b36706 \ + --hash=sha256:3a745cc98d504d5bd2c19b10c79c61c7c3df9222629f1b6210c0368177589fb8 \ + --hash=sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472 \ + --hash=sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835 \ + --hash=sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf \ + --hash=sha256:3d98de734abee23e61f6b8c2e08a88453ada7d6486dc7cdc82922a03968928db \ + --hash=sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d \ + --hash=sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545 \ + --hash=sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9 \ + --hash=sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be \ + --hash=sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe \ + --hash=sha256:4bc6cb140a7a0ad1f7bc37e018d0ed690b7b6520ade518285dc3171f7a117905 \ + --hash=sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438 \ + --hash=sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db \ + --hash=sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776 \ + --hash=sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c \ + --hash=sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed \ + --hash=sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd \ + --hash=sha256:55ce6b6d803890bd3cc89975fca9de1dff39729b43b73cb15ddd933b8bc20484 \ + --hash=sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d \ + --hash=sha256:57f0a0bbc9868e10ebe874e9f129d2917750adf008fe7b9c1598c0fbbfdde6a6 \ + --hash=sha256:5b8c041b6265e08eac8a724b74b655404070b636a8dd6d7a13c3adc07882ef30 \ + --hash=sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182 \ + --hash=sha256:60499fe961b21264e17a471ec296dcbf4365fbea611bf9e303ab69db7159ce61 \ + --hash=sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425 \ + --hash=sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb \ + --hash=sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1 \ + --hash=sha256:69ab77a1373f1e7563e0fb5a29a8440367dec051da6c7405333699d07444f511 \ + --hash=sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e \ + --hash=sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207 \ + --hash=sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b \ + --hash=sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585 \ + --hash=sha256:739e36ef7412b2bd940f75b278749106e6d025e40027c0b94a17ef7968d55d56 \ + --hash=sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391 \ + --hash=sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85 \ + --hash=sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147 \ + --hash=sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18 \ + --hash=sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1 \ + --hash=sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa \ + --hash=sha256:7ce7ad8abebe737ad6143d9d3bf94b88b93365ea30a5b81f6877ec9c0dee0a48 \ + --hash=sha256:7ed07b3062b055d7a7f9d6557a251cc655eed0b3152b76de619516621c56f5d3 \ + --hash=sha256:7ff762670cada8e05b32bf1e4dc50b140790909caa8303cfddc4d702b71ea184 \ + --hash=sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67 \ + --hash=sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7 \ + --hash=sha256:89feb82ca055af0fe797a2323ec9043b26bc371365847dbe83c7fd2e2f181c34 \ + --hash=sha256:8a7e24cb69ee5f32e003f50e016d5fde438010c1022c96738b04fc2423e61706 \ + --hash=sha256:8ab6a358d1286498d80fe67bd3d69fcbc7d1359b45b41e74c4a26964ca99c3f8 \ + --hash=sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c \ + --hash=sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115 \ + --hash=sha256:8e8d351ff44c1638cb6e980623d517abd9f580d2e53bfcd18d8941c052a5a009 \ + --hash=sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466 \ + --hash=sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526 \ + --hash=sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d \ + --hash=sha256:9cd5323344d8ebb9fb5e96da5de5ad4ebab993bbf51674259dbe9d7a18049525 \ + --hash=sha256:9d6c6ea6a11ca0ff9cd0390b885984ed31157c168565702959c25e2191674a14 \ + --hash=sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3 \ + --hash=sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0 \ + --hash=sha256:a2f6a1bc2460e643785a2cde17293bd7a8f990884b822f7bca47bee0a82fc66b \ + --hash=sha256:a6d17e0370d2516d5bb9062c7b4cb731cff921fc875644c3d751ad857ba9c5b1 \ + --hash=sha256:a6d2092797b388342c1bc932077ad232f914351932353e2e8706851c870bca1f \ + --hash=sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf \ + --hash=sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf \ + --hash=sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0 \ + --hash=sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b \ + --hash=sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff \ + --hash=sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88 \ + --hash=sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2 \ + --hash=sha256:b16db2770517b8799c79aa80f4053cd6f8b716f21f8aca962725a9565ce3ee40 \ + --hash=sha256:b336b0416828022bfd5a2e3083e7f5ba54b96242159f83c7e3eebaec752f1716 \ + --hash=sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2 \ + --hash=sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2 \ + --hash=sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a \ + --hash=sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734 \ + --hash=sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87 \ + --hash=sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48 \ + --hash=sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36 \ + --hash=sha256:be49ad33819d7dcc28a309b86d4ed98e1a65f3075c6acd3cd4fe32103235222b \ + --hash=sha256:bec4bd9133420c5c52d562469c754f27c5c9e36ee06abc169612c959bd7dbb07 \ + --hash=sha256:c2faf60c583af0d135e853c86ac2735ce178f0e338a3c7f9ae8f622fd2eb788c \ + --hash=sha256:c689d0d5381f56de7bd6966a4541bff6e08bf8d3871bbd89a0c6ab18aa699573 \ + --hash=sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001 \ + --hash=sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9 \ + --hash=sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3 \ + --hash=sha256:cf2a978c795b54c539f47964ec05e35c05bd045db5ca1e8366988c7f2fe6b3ce \ + --hash=sha256:d14a0d029a4e176795cef99c056d58067c06195e0c7e2dbb293bf95c08f772a3 \ + --hash=sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04 \ + --hash=sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927 \ + --hash=sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083 \ + --hash=sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d \ + --hash=sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32 \ + --hash=sha256:d8bbcd21769594dbba9c37d3c819e2d5847656ca99c747ddb31ac1701d0c0ed9 \ + --hash=sha256:d9b342c76003c6b9336a80efcc766748a333573abf9350f4094ee46b006ec18f \ + --hash=sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2 \ + --hash=sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c \ + --hash=sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d \ + --hash=sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393 \ + --hash=sha256:e3d9d13603410b72787579769469af730c38f2f25505573a5888a94b62b920f8 \ + --hash=sha256:e481bba1e11ba585fb06db666bfc23dbe181dbafc7b25776156120bf12e0d5a6 \ + --hash=sha256:e49b052b768bb74f58c7dda4e0bdf7b79d43a9204ca584ffe1fb48a6f3c84c66 \ + --hash=sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5 \ + --hash=sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97 \ + --hash=sha256:edcfa83e03370032a489430215c1e7783128808fd3e2e0a3225deee278585196 \ + --hash=sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836 \ + --hash=sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae \ + --hash=sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297 \ + --hash=sha256:f60fdd125d85bf9c279ffb8e94c78c51b3b6a37711464e1f5f31078b45002421 \ + --hash=sha256:f61efaf4bed1cc0860e567d2ecb2363974d414f7f1f124b1df368bbf183453a6 \ + --hash=sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981 \ + --hash=sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30 \ + --hash=sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30 \ + --hash=sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f \ + --hash=sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324 \ + --hash=sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b + # via + # python3-saml + # xmlsec markdown==3.6 \ --hash=sha256:48f276f4d8cfb8ce6527c8f79e2ee29708508bf4d40aa410fbc3b4ee832c850f \ --hash=sha256:ed4f41f6daecbeeb96e576ce414c41d2d876daa9a16cb35fa8ed8c2ddfad0224 @@ -734,20 +882,16 @@ markupsafe==2.1.5 \ --hash=sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd \ --hash=sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68 # via jinja2 -oauthlib==3.2.2 \ - --hash=sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca \ - --hash=sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918 - # via requests-oauthlib odfpy==1.4.1 \ --hash=sha256:db766a6e59c5103212f3cc92ec8dd50a0f3a02790233ed0b52148b70d3c438ec # via tablib -openpyxl==3.1.2 \ - --hash=sha256:a6f5977418eff3b2d5500d54d9db50c8277a368436f4e4f8ddb1be3422870184 \ - --hash=sha256:f91456ead12ab3c6c2e9491cf33ba6d08357d802192379bb482f1033ade496f5 +openpyxl==3.1.4 \ + --hash=sha256:8d2c8adf5d20d6ce8f9bca381df86b534835e974ed0156dacefa76f68c1d69fb \ + --hash=sha256:ec17f6483f2b8f7c88c57e5e5d3b0de0e3fb9ac70edc084d28e864f5b33bbefd # via tablib -opentelemetry-api==1.24.0 \ - --hash=sha256:0f2c363d98d10d1ce93330015ca7fd3a65f60be64e05e30f557c61de52c80ca2 \ - --hash=sha256:42719f10ce7b5a9a73b10a4baf620574fb8ad495a9cbe5c18d76b75d8689c67e +opentelemetry-api==1.25.0 \ + --hash=sha256:757fa1aa020a0f8fa139f8959e53dec2051cc26b832e76fa839a6d76ecefd737 \ + --hash=sha256:77c4985f62f2614e42ce77ee4c9da5fa5f0bc1e1821085e9a47533a9323ae869 # via # opentelemetry-exporter-otlp-proto-grpc # opentelemetry-exporter-otlp-proto-http @@ -757,76 +901,77 @@ opentelemetry-api==1.24.0 \ # opentelemetry-instrumentation-requests # opentelemetry-instrumentation-wsgi # opentelemetry-sdk -opentelemetry-exporter-otlp==1.24.0 \ - --hash=sha256:1dfe2e4befe1f0efc193a896837740407669b2929233b406ac0a813151200cac \ - --hash=sha256:649c6e249e55cbdebe99ba2846e3851c04c9f328570328c35b3af9c094314b55 -opentelemetry-exporter-otlp-proto-common==1.24.0 \ - --hash=sha256:5d31fa1ff976cacc38be1ec4e3279a3f88435c75b38b1f7a099a1faffc302461 \ - --hash=sha256:e51f2c9735054d598ad2df5d3eca830fecfb5b0bda0a2fa742c9c7718e12f641 + # opentelemetry-semantic-conventions +opentelemetry-exporter-otlp==1.25.0 \ + --hash=sha256:ce03199c1680a845f82e12c0a6a8f61036048c07ec7a0bd943142aca8fa6ced0 \ + --hash=sha256:d67a831757014a3bc3174e4cd629ae1493b7ba8d189e8a007003cacb9f1a6b60 +opentelemetry-exporter-otlp-proto-common==1.25.0 \ + --hash=sha256:15637b7d580c2675f70246563363775b4e6de947871e01d0f4e3881d1848d693 \ + --hash=sha256:c93f4e30da4eee02bacd1e004eb82ce4da143a2f8e15b987a9f603e0a85407d3 # via # opentelemetry-exporter-otlp-proto-grpc # opentelemetry-exporter-otlp-proto-http -opentelemetry-exporter-otlp-proto-grpc==1.24.0 \ - --hash=sha256:217c6e30634f2c9797999ea9da29f7300479a94a610139b9df17433f915e7baa \ - --hash=sha256:f40d62aa30a0a43cc1657428e59fcf82ad5f7ea8fff75de0f9d9cb6f739e0a3b +opentelemetry-exporter-otlp-proto-grpc==1.25.0 \ + --hash=sha256:3131028f0c0a155a64c430ca600fd658e8e37043cb13209f0109db5c1a3e4eb4 \ + --hash=sha256:c0b1661415acec5af87625587efa1ccab68b873745ca0ee96b69bb1042087eac # via opentelemetry-exporter-otlp -opentelemetry-exporter-otlp-proto-http==1.24.0 \ - --hash=sha256:25af10e46fdf4cd3833175e42f4879a1255fc01655fe14c876183a2903949836 \ - --hash=sha256:704c066cc96f5131881b75c0eac286cd73fc735c490b054838b4513254bd7850 +opentelemetry-exporter-otlp-proto-http==1.25.0 \ + --hash=sha256:2eca686ee11b27acd28198b3ea5e5863a53d1266b91cda47c839d95d5e0541a6 \ + --hash=sha256:9f8723859e37c75183ea7afa73a3542f01d0fd274a5b97487ea24cb683d7d684 # via opentelemetry-exporter-otlp -opentelemetry-instrumentation==0.45b0 \ - --hash=sha256:06c02e2c952c1b076e8eaedf1b82f715e2937ba7eeacab55913dd434fbcec258 \ - --hash=sha256:6c47120a7970bbeb458e6a73686ee9ba84b106329a79e4a4a66761f933709c7e +opentelemetry-instrumentation==0.46b0 \ + --hash=sha256:89cd721b9c18c014ca848ccd11181e6b3fd3f6c7669e35d59c48dc527408c18b \ + --hash=sha256:974e0888fb2a1e01c38fbacc9483d024bb1132aad92d6d24e2e5543887a7adda # via # opentelemetry-instrumentation-django # opentelemetry-instrumentation-redis # opentelemetry-instrumentation-requests # opentelemetry-instrumentation-wsgi -opentelemetry-instrumentation-django==0.45b0 \ - --hash=sha256:1e612c90eb4c69e1f0aa2e38dea89c47616596d3600392640fa7c0a201e299fa \ - --hash=sha256:d8b55747d6784167ab3a50dc128cc13b6966a2215ce55f4043392ac1c83b5bb2 -opentelemetry-instrumentation-redis==0.45b0 \ - --hash=sha256:44500fb0e767d219d3453af9804111f46d11127b603ff67d7eda9945f766d8ca \ - --hash=sha256:a506772c5afe15b23cb6b7c1c5c67861111b71fce81c85a452f0bc66a319c648 -opentelemetry-instrumentation-requests==0.45b0 \ - --hash=sha256:275851d04de518507b0411b98524602101b228b72e61f39dc627c0421ff2a81f \ - --hash=sha256:6bf1359284105ab50fa7465ea6c60b4a62c699408cb0260af3ac8895e8a7451a -opentelemetry-instrumentation-wsgi==0.45b0 \ - --hash=sha256:7a6f9c71b25f5c5e112827540008882f6a9088447cb65745e7f2083749516663 \ - --hash=sha256:f53a2a38e6582406e207d404e4c1b859b83bec11a68ad6c7366642d01c873ad0 +opentelemetry-instrumentation-django==0.46b0 \ + --hash=sha256:cc11b2e24f9bdd20759570390ed8619d9c5acbf788b4a5401e36e280dfc20feb \ + --hash=sha256:ecc85941263122f99dbd96463a981b2d1eeea618ca287a58abe0af9fd67631ee +opentelemetry-instrumentation-redis==0.46b0 \ + --hash=sha256:8b4639fe52edb6ccdc633c54c01630005ab63faeffd97754cddbf6bdc1f04c5e \ + --hash=sha256:e796530808829a9c32f19eaf470f0b01caef13bd89f1d964f536198de881e460 +opentelemetry-instrumentation-requests==0.46b0 \ + --hash=sha256:a8c2472800d8686f3f286cd524b8746b386154092e85a791ba14110d1acc9b81 \ + --hash=sha256:ef0ad63bfd0d52631daaf7d687e763dbd89b465f5cb052f12a4e67e5e3d181e4 +opentelemetry-instrumentation-wsgi==0.46b0 \ + --hash=sha256:2386014b026f5307c802417eeab74265785ae3dd6eee8c5581a830e3b2d3435b \ + --hash=sha256:f4e1001e8477eb546cac7c13cff0b0cf127812b1188a37bcaa3e43eb741451e2 # via opentelemetry-instrumentation-django -opentelemetry-proto==1.24.0 \ - --hash=sha256:bcb80e1e78a003040db71ccf83f2ad2019273d1e0828089d183b18a1476527ce \ - --hash=sha256:ff551b8ad63c6cabb1845ce217a6709358dfaba0f75ea1fa21a61ceddc78cab8 +opentelemetry-proto==1.25.0 \ + --hash=sha256:35b6ef9dc4a9f7853ecc5006738ad40443701e52c26099e197895cbda8b815a3 \ + --hash=sha256:f07e3341c78d835d9b86665903b199893befa5e98866f63d22b00d0b7ca4972f # via # opentelemetry-exporter-otlp-proto-common # opentelemetry-exporter-otlp-proto-grpc # opentelemetry-exporter-otlp-proto-http -opentelemetry-sdk==1.24.0 \ - --hash=sha256:75bc0563affffa827700e0f4f4a68e1e257db0df13372344aebc6f8a64cde2e5 \ - --hash=sha256:fa731e24efe832e98bcd90902085b359dcfef7d9c9c00eb5b9a18587dae3eb59 +opentelemetry-sdk==1.25.0 \ + --hash=sha256:ce7fc319c57707ef5bf8b74fb9f8ebdb8bfafbe11898410e0d2a761d08a98ec7 \ + --hash=sha256:d97ff7ec4b351692e9d5a15af570c693b8715ad78b8aafbec5c7100fe966b4c9 # via # opentelemetry-exporter-otlp-proto-grpc # opentelemetry-exporter-otlp-proto-http -opentelemetry-semantic-conventions==0.45b0 \ - --hash=sha256:7c84215a44ac846bc4b8e32d5e78935c5c43482e491812a0bb8aaf87e4d92118 \ - --hash=sha256:a4a6fb9a7bacd9167c082aa4681009e9acdbfa28ffb2387af50c2fef3d30c864 +opentelemetry-semantic-conventions==0.46b0 \ + --hash=sha256:6daef4ef9fa51d51855d9f8e0ccd3a1bd59e0e545abe99ac6203804e36ab3e07 \ + --hash=sha256:fbc982ecbb6a6e90869b15c1673be90bd18c8a56ff1cffc0864e38e2edffaefa # via # opentelemetry-instrumentation-django # opentelemetry-instrumentation-redis # opentelemetry-instrumentation-requests # opentelemetry-instrumentation-wsgi # opentelemetry-sdk -opentelemetry-util-http==0.45b0 \ - --hash=sha256:4ce08b6a7d52dd7c96b7705b5b4f06fdb6aa3eac1233b3b0bfef8a0cab9a92cd \ - --hash=sha256:6628868b501b3004e1860f976f410eeb3d3499e009719d818000f24ce17b6e33 +opentelemetry-util-http==0.46b0 \ + --hash=sha256:03b6e222642f9c7eae58d9132343e045b50aca9761fcb53709bd2b663571fdf6 \ + --hash=sha256:8dc1949ce63caef08db84ae977fdc1848fe6dc38e6bbaad0ae3e6ecd0d451629 # via # opentelemetry-instrumentation-django # opentelemetry-instrumentation-requests # opentelemetry-instrumentation-wsgi -packaging==24.0 \ - --hash=sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5 \ - --hash=sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9 +packaging==24.1 \ + --hash=sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002 \ + --hash=sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124 # via gunicorn pdf2image==1.17.0 \ --hash=sha256:eaa959bc116b420dd7ec415fcae49b98100dda3dd18cd2fdfa86d09f112f6d57 \ @@ -944,12 +1089,10 @@ pydyf==0.10.0 \ --hash=sha256:357194593efaf61d7b48ab97c3d59722114934967c3df3d7878ca6dd25b04c30 \ --hash=sha256:ef76b6c0976a091a9e15827fb5800e5e37e7cd1a3ca4d4bd19d10a14ea8c0ae3 # via weasyprint -pyjwt[crypto]==2.8.0 \ +pyjwt==2.8.0 \ --hash=sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de \ --hash=sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320 - # via - # django-allauth - # djangorestframework-simplejwt + # via djangorestframework-simplejwt pyphen==0.15.0 \ --hash=sha256:999b430916ab42ae9912537cd95c074e0c6691e89a9d05999f9b610a68f34858 \ --hash=sha256:a430623decac53dc3691241253263cba36b9dd7a44ffd2680b706af368cda2f2 @@ -978,6 +1121,11 @@ python3-openid==3.2.0 \ --hash=sha256:33fbf6928f401e0b790151ed2b5290b02545e8775f982485205a066f874aaeaf \ --hash=sha256:6626f771e0417486701e0b4daff762e7212e820ca5b29fcc0d05f6f8736dfa6b # via django-allauth +python3-saml==1.16.0 \ + --hash=sha256:20b97d11b04f01ee22e98f4a38242e2fea2e28fbc7fbc9bdd57cab5ac7fc2d0d \ + --hash=sha256:97c9669aecabc283c6e5fb4eb264f446b6e006f5267d01c9734f9d8bffdac133 \ + --hash=sha256:c49097863c278ff669a337a96c46dc1f25d16307b4bb2679d2d1733cc4f5176a + # via django-allauth pytz==2024.1 \ --hash=sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812 \ --hash=sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319 @@ -1044,100 +1192,103 @@ qrcode[pil]==7.4.2 \ --hash=sha256:581dca7a029bcb2deef5d01068e39093e80ef00b4a61098a2182eac59d01643a \ --hash=sha256:9dd969454827e127dbd93696b20747239e6d540e082937c90f14ac95b30f5845 # via django-allauth-2fa -rapidfuzz==3.9.0 \ - --hash=sha256:014ac55b03f4074f903248ded181f3000f4cdbd134e6155cbf643f0eceb4f70f \ - --hash=sha256:08d8b49b3a4fb8572e480e73fcddc750da9cbb8696752ee12cca4bf8c8220d52 \ - --hash=sha256:0bb28ab5300cf974c7eb68ea21125c493e74b35b1129e629533468b2064ae0a2 \ - --hash=sha256:0c5b8f9a7b177af6ce7c6ad5b95588b4b73e37917711aafa33b2e79ee80fe709 \ - --hash=sha256:0ca799f882364e69d0872619afb19efa3652b7133c18352e4a3d86a324fb2bb1 \ - --hash=sha256:0dcb95fde22f98e6d0480db8d6038c45fe2d18a338690e6f9bba9b82323f3469 \ - --hash=sha256:0e2e106cc66453bb80d2ad9c0044f8287415676df5c8036d737d05d4b9cdbf8e \ - --hash=sha256:0e86e39c1c1a0816ceda836e6f7bd3743b930cbc51a43a81bb433b552f203f25 \ - --hash=sha256:1179dcd3d150a67b8a678cd9c84f3baff7413ff13c9e8fe85e52a16c97e24c9b \ - --hash=sha256:11a7ec4676242c8a430509cff42ce98bca2fbe30188a63d0f60fdcbfd7e84970 \ - --hash=sha256:134b7098ac109834eeea81424b6822f33c4c52bf80b81508295611e7a21be12a \ - --hash=sha256:13857f9070600ea1f940749f123b02d0b027afbaa45e72186df0f278915761d0 \ - --hash=sha256:170822a1b1719f02b58e3dce194c8ad7d4c5b39be38c0fdec603bd19c6f9cf81 \ - --hash=sha256:182b4e11de928fb4834e8f8b5ecd971b5b10a86fabe8636ab65d3a9b7e0e9ca7 \ - --hash=sha256:1b1f74997b6d94d66375479fa55f70b1c18e4d865d7afcd13f0785bfd40a9d3c \ - --hash=sha256:1d536f8beb8dd82d6efb20fe9f82c2cfab9ffa0384b5d184327e393a4edde91d \ - --hash=sha256:2003071aa633477a01509890c895f9ef56cf3f2eaa72c7ec0b567f743c1abcba \ - --hash=sha256:2444d8155d9846f206e2079bb355b85f365d9457480b0d71677a112d0a7f7128 \ - --hash=sha256:28da953eb2ef9ad527e536022da7afff6ace7126cdd6f3e21ac20f8762e76d2c \ - --hash=sha256:2a96209f046fe328be30fc43f06e3d4b91f0d5b74e9dcd627dbfd65890fa4a5e \ - --hash=sha256:2bc5559b9b94326922c096b30ae2d8e5b40b2e9c2c100c2cc396ad91bcb84d30 \ - --hash=sha256:2d267d4c982ab7d177e994ab1f31b98ff3814f6791b90d35dda38307b9e7c989 \ - --hash=sha256:3083512e9bf6ed2bb3d25883922974f55e21ae7f8e9f4e298634691ae1aee583 \ - --hash=sha256:30f7609da871510583f87484a10820b26555a473a90ab356cdda2f3b4456256c \ - --hash=sha256:33cfabcb7fd994938a6a08e641613ce5fe46757832edc789c6a5602e7933d6fa \ - --hash=sha256:36bf35df2d6c7d5820da20a6720aee34f67c15cd2daf8cf92e8141995c640c25 \ - --hash=sha256:3733aede16ea112728ffeafeb29ccc62e095ed8ec816822fa2a82e92e2c08696 \ - --hash=sha256:3904d0084ab51f82e9f353031554965524f535522a48ec75c30b223eb5a0a488 \ - --hash=sha256:3a16c48c6df8fb633efbbdea744361025d01d79bca988f884a620e63e782fe5b \ - --hash=sha256:3c42a238bf9dd48f4ccec4c6934ac718225b00bb3a438a008c219e7ccb3894c7 \ - --hash=sha256:3f4a2468432a1db491af6f547fad8f6d55fa03e57265c2f20e5eaceb68c7907e \ - --hash=sha256:413ac49bae291d7e226a5c9be65c71b2630b3346bce39268d02cb3290232e4b7 \ - --hash=sha256:4514980a5d204c076dd5b756960f6b1b7598f030009456e6109d76c4c331d03c \ - --hash=sha256:47b7c0840afa724db3b1a070bc6ed5beab73b4e659b1d395023617fc51bf68a2 \ - --hash=sha256:47d97e28c42f1efb7781993b67c749223f198f6653ef177a0c8f2b1c516efcaf \ - --hash=sha256:48105991ff6e4a51c7f754df500baa070270ed3d41784ee0d097549bc9fcb16d \ - --hash=sha256:488f74126904db6b1bea545c2f3567ea882099f4c13f46012fe8f4b990c683df \ - --hash=sha256:491274080742110427f38a6085bb12dffcaff1eef12dccf9e8758398c7e3957e \ - --hash=sha256:4eea3bf72c4fe68e957526ffd6bcbb403a21baa6b3344aaae2d3252313df6199 \ - --hash=sha256:544b0bf9d17170720809918e9ccd0d482d4a3a6eca35630d8e1459f737f71755 \ - --hash=sha256:55e2c5076f38fc1dbaacb95fa026a3e409eee6ea5ac4016d44fb30e4cad42b20 \ - --hash=sha256:5c396562d304e974b4b0d5cd3afc4f92c113ea46a36e6bc62e45333d6aa8837e \ - --hash=sha256:623883fb78e692d54ed7c43b09beec52c6685f10a45a7518128e25746667403b \ - --hash=sha256:633b9d03fc04abc585c197104b1d0af04b1f1db1abc99f674d871224cd15557a \ - --hash=sha256:65d9250a4b0bf86320097306084bc3ca479c8f5491927c170d018787793ebe95 \ - --hash=sha256:68da1b70458fea5290ec9a169fcffe0c17ff7e5bb3c3257e63d7021a50601a8e \ - --hash=sha256:6993d361f28b9ef5f0fa4e79b8541c2f3507be7471b9f9cb403a255e123b31e1 \ - --hash=sha256:6a7f273906b3c7cc6d63a76e088200805947aa0bc1ada42c6a0e582e19c390d7 \ - --hash=sha256:6a83128d505cac76ea560bb9afcb3f6986e14e50a6f467db9a31faef4bd9b347 \ - --hash=sha256:6c1ed63345d1581c39d4446b1a8c8f550709656ce2a3c88c47850b258167f3c2 \ - --hash=sha256:731269812ea837e0b93d913648e404736407408e33a00b75741e8f27c590caa2 \ - --hash=sha256:7988363b3a415c5194ce1a68d380629247f8713e669ad81db7548eb156c4f365 \ - --hash=sha256:7c09f4e87e82a164c9db769474bc61f8c8b677f2aeb0234b8abac73d2ecf9799 \ - --hash=sha256:849160dc0f128acb343af514ca827278005c1d00148d025e4035e034fc2d8c7f \ - --hash=sha256:8e5ff882d3a3d081157ceba7e0ebc7fac775f95b08cbb143accd4cece6043819 \ - --hash=sha256:905b01a9b633394ff6bb5ebb1c5fd660e0e180c03fcf9d90199cc6ed74b87cf7 \ - --hash=sha256:9a06a99f1335fe43464d7121bc6540de7cd9c9475ac2025babb373fe7f27846b \ - --hash=sha256:9bc0f7e6256a9c668482c41c8a3de5d0aa12e8ca346dcc427b97c7edb82cba48 \ - --hash=sha256:9d6478957fb35c7844ad08f2442b62ba76c1857a56370781a707eefa4f4981e1 \ - --hash=sha256:a2de844e0e971d7bd8aa41284627dbeacc90e750b90acfb016836553c7a63192 \ - --hash=sha256:a365886c42177b2beab475a50ba311b59b04f233ceaebc4c341f6f91a86a78e2 \ - --hash=sha256:ab872cb57ae97c54ba7c71a9e3c9552beb57cb907c789b726895576d1ea9af6f \ - --hash=sha256:ae643220584518cbff8bf2974a0494d3e250763af816b73326a512c86ae782ce \ - --hash=sha256:b11e602987bcb4ea22b44178851f27406fca59b0836298d0beb009b504dba266 \ - --hash=sha256:b1256915f7e7a5cf2c151c9ac44834b37f9bd1c97e8dec6f936884f01b9dfc7d \ - --hash=sha256:b182f0fb61f6ac435e416eb7ab330d62efdbf9b63cf0c7fa12d1f57c2eaaf6f3 \ - --hash=sha256:b33c6d4b3a1190bc0b6c158c3981535f9434e8ed9ffa40cf5586d66c1819fb4b \ - --hash=sha256:b9bf90b3d96925cbf8ef44e5ee3cf39ef0c422f12d40f7a497e91febec546650 \ - --hash=sha256:bd375c4830fee11d502dd93ecadef63c137ae88e1aaa29cc15031fa66d1e0abb \ - --hash=sha256:bdd8c15c3a14e409507fdf0c0434ec481d85c6cbeec8bdcd342a8cd1eda03825 \ - --hash=sha256:c4ef34b2ddbf448f1d644b4ec6475df8bbe5b9d0fee173ff2e87322a151663bd \ - --hash=sha256:c56d2efdfaa1c642029f3a7a5bb76085c5531f7a530777be98232d2ce142553c \ - --hash=sha256:c74f2da334ce597f31670db574766ddeaee5d9430c2c00e28d0fbb7f76172036 \ - --hash=sha256:cd2e6e97daf17ebb3254285cf8dd86c60d56d6cf35c67f0f9a557ef26bd66290 \ - --hash=sha256:ce897b5dafb7fb7587a95fe4d449c1ea0b6d9ac4462fbafefdbbeef6eee4cf6a \ - --hash=sha256:d20ab9abc7e19767f1951772a6ab14cb4eddd886493c2da5ee12014596ad253f \ - --hash=sha256:d5d5684f54d82d9b0cf0b2701e55a630527a9c3dd5ddcf7a2e726a475ac238f2 \ - --hash=sha256:dcb523243e988c849cf81220164ec3bbed378a699e595a8914fffe80596dc49f \ - --hash=sha256:e2218d62ab63f3c5ad48eced898854d0c2c327a48f0fb02e2288d7e5332a22c8 \ - --hash=sha256:e33362e98c7899b5f60dcb06ada00acd8673ce0d59aefe9a542701251fd00423 \ - --hash=sha256:e3f2d1ea7cd57dfcd34821e38b4924c80a31bcf8067201b1ab07386996a9faee \ - --hash=sha256:e65b8f7921bf60cbb207c132842a6b45eefef48c4c3b510eb16087d6c08c70af \ - --hash=sha256:e721842e6b601ebbeb8cc5e12c75bbdd1d9e9561ea932f2f844c418c31256e82 \ - --hash=sha256:f81fe99a69ac8ee3fd905e70c62f3af033901aeb60b69317d1d43d547b46e510 \ - --hash=sha256:f83bd3d01f04061c3660742dc85143a89d49fd23eb31eccbf60ad56c4b955617 \ - --hash=sha256:fb67cf43ad83cb886cbbbff4df7dcaad7aedf94d64fca31aea0da7d26684283c \ - --hash=sha256:fc02157f521af15143fae88f92ef3ddcc4e0cff05c40153a9549dc0fbdb9adb3 \ - --hash=sha256:fc4e26f592b51f97acf0a3f8dfed95e4d830c6a8fbf359361035df836381ab81 \ - --hash=sha256:ff08081c49b18ba253a99e6a47f492e6ee8019e19bbb6ddc3ed360cd3ecb2f62 \ - --hash=sha256:ff8982fc3bd49d55a91569fc8a3feba0de4cef0b391ff9091be546e9df075b81 -redis==5.0.4 \ - --hash=sha256:7adc2835c7a9b5033b7ad8f8918d09b7344188228809c98df07af226d39dec91 \ - --hash=sha256:ec31f2ed9675cc54c21ba854cfe0462e6faf1d83c8ce5944709db8a4700b9c61 +rapidfuzz==3.9.3 \ + --hash=sha256:05ee0696ebf0dfe8f7c17f364d70617616afc7dafe366532730ca34056065b8a \ + --hash=sha256:0c34139df09a61b1b557ab65782ada971b4a3bce7081d1b2bee45b0a52231adb \ + --hash=sha256:0d055da0e801c71dd74ba81d72d41b2fa32afa182b9fea6b4b199d2ce937450d \ + --hash=sha256:119c010e20e561249b99ca2627f769fdc8305b07193f63dbc07bca0a6c27e892 \ + --hash=sha256:143caf7247449055ecc3c1e874b69e42f403dfc049fc2f3d5f70e1daf21c1318 \ + --hash=sha256:14c9f268ade4c88cf77ab007ad0fdf63699af071ee69378de89fff7aa3cae134 \ + --hash=sha256:153f23c03d4917f6a1fc2fb56d279cc6537d1929237ff08ee7429d0e40464a18 \ + --hash=sha256:15e4158ac4b3fb58108072ec35b8a69165f651ba1c8f43559a36d518dbf9fb3f \ + --hash=sha256:17ff7f7eecdb169f9236e3b872c96dbbaf116f7787f4d490abd34b0116e3e9c8 \ + --hash=sha256:21047f55d674614eb4b0ab34e35c3dc66f36403b9fbfae645199c4a19d4ed447 \ + --hash=sha256:256e07d3465173b2a91c35715a2277b1ee3ae0b9bbab4e519df6af78570741d0 \ + --hash=sha256:282d55700a1a3d3a7980746eb2fcd48c9bbc1572ebe0840d0340d548a54d01fe \ + --hash=sha256:2bc8391749e5022cd9e514ede5316f86e332ffd3cfceeabdc0b17b7e45198a8c \ + --hash=sha256:2c1d3ef3878f871abe6826e386c3d61b5292ef5f7946fe646f4206b85836b5da \ + --hash=sha256:35b7286f177e4d8ba1e48b03612f928a3c4bdac78e5651379cec59f95d8651e6 \ + --hash=sha256:3617d1aa7716c57d120b6adc8f7c989f2d65bc2b0cbd5f9288f1fc7bf469da11 \ + --hash=sha256:378d1744828e27490a823fc6fe6ebfb98c15228d54826bf4e49e4b76eb5f5579 \ + --hash=sha256:3bb6546e7b6bed1aefbe24f68a5fb9b891cc5aef61bca6c1a7b1054b7f0359bb \ + --hash=sha256:3d8a57261ef7996d5ced7c8cba9189ada3fbeffd1815f70f635e4558d93766cb \ + --hash=sha256:3e6d27dad8c990218b8cd4a5c99cbc8834f82bb46ab965a7265d5aa69fc7ced7 \ + --hash=sha256:41a81a9f311dc83d22661f9b1a1de983b201322df0c4554042ffffd0f2040c37 \ + --hash=sha256:505d99131afd21529293a9a7b91dfc661b7e889680b95534756134dc1cc2cd86 \ + --hash=sha256:51fa1ba84653ab480a2e2044e2277bd7f0123d6693051729755addc0d015c44f \ + --hash=sha256:5276df395bd8497397197fca2b5c85f052d2e6a66ffc3eb0544dd9664d661f95 \ + --hash=sha256:53c7f27cdf899e94712972237bda48cfd427646aa6f5d939bf45d084780e4c16 \ + --hash=sha256:53e06e4b81f552da04940aa41fc556ba39dee5513d1861144300c36c33265b76 \ + --hash=sha256:5410dc848c947a603792f4f51b904a3331cf1dc60621586bfbe7a6de72da1091 \ + --hash=sha256:57e7c5bf7b61c7320cfa5dde1e60e678d954ede9bb7da8e763959b2138391401 \ + --hash=sha256:58c6a4936190c558d5626b79fc9e16497e5df7098589a7e80d8bff68148ff096 \ + --hash=sha256:5b422c0a6fe139d5447a0766268e68e6a2a8c2611519f894b1f31f0a392b9167 \ + --hash=sha256:5c7ca5b6050f18fdcacdada2dc5fb7619ff998cd9aba82aed2414eee74ebe6cd \ + --hash=sha256:5d0abbacdb06e27ff803d7ae0bd0624020096802758068ebdcab9bd49cf53115 \ + --hash=sha256:5d0cb272d43e6d3c0dedefdcd9d00007471f77b52d2787a4695e9dd319bb39d2 \ + --hash=sha256:5d6a210347d6e71234af5c76d55eeb0348b026c9bb98fe7c1cca89bac50fb734 \ + --hash=sha256:5e2b827258beefbe5d3f958243caa5a44cf46187eff0c20e0b2ab62d1550327a \ + --hash=sha256:5e33f779391caedcba2ba3089fb6e8e557feab540e9149a5c3f7fea7a3a7df37 \ + --hash=sha256:604e0502a39cf8e67fa9ad239394dddad4cdef6d7008fdb037553817d420e108 \ + --hash=sha256:6073a46f61479a89802e3f04655267caa6c14eb8ac9d81a635a13805f735ebc1 \ + --hash=sha256:6175682a829c6dea4d35ed707f1dadc16513270ef64436568d03b81ccb6bdb74 \ + --hash=sha256:65f45be77ec82da32ce5709a362e236ccf801615cc7163b136d1778cf9e31b14 \ + --hash=sha256:67201c02efc596923ad950519e0b75ceb78d524177ea557134d6567b9ac2c283 \ + --hash=sha256:754b719a4990735f66653c9e9261dcf52fd4d925597e43d6b9069afcae700d21 \ + --hash=sha256:77b5c4f3e72924d7845f0e189c304270066d0f49635cf8a3938e122c437e58de \ + --hash=sha256:790b0b244f3213581d42baa2fed8875f9ee2b2f9b91f94f100ec80d15b140ba9 \ + --hash=sha256:802ca2cc8aa6b8b34c6fdafb9e32540c1ba05fca7ad60b3bbd7ec89ed1797a87 \ + --hash=sha256:8319838fb5b7b5f088d12187d91d152b9386ce3979ed7660daa0ed1bff953791 \ + --hash=sha256:83ea7ca577d76778250421de61fb55a719e45b841deb769351fc2b1740763050 \ + --hash=sha256:858ba57c05afd720db8088a8707079e8d024afe4644001fe0dbd26ef7ca74a65 \ + --hash=sha256:8709918da8a88ad73c9d4dd0ecf24179a4f0ceba0bee21efc6ea21a8b5290349 \ + --hash=sha256:875b581afb29a7213cf9d98cb0f98df862f1020bce9d9b2e6199b60e78a41d14 \ + --hash=sha256:87bb8d84cb41446a808c4b5f746e29d8a53499381ed72f6c4e456fe0f81c80a8 \ + --hash=sha256:8add34061e5cd561c72ed4febb5c15969e7b25bda2bb5102d02afc3abc1f52d0 \ + --hash=sha256:8f917eaadf5388466a95f6a236f678a1588d231e52eda85374077101842e794e \ + --hash=sha256:930b4e6fdb4d914390141a2b99a6f77a52beacf1d06aa4e170cba3a98e24c1bc \ + --hash=sha256:93981895602cf5944d89d317ae3b1b4cc684d175a8ae2a80ce5b65615e72ddd0 \ + --hash=sha256:959a15186d18425d19811bea86a8ffbe19fd48644004d29008e636631420a9b7 \ + --hash=sha256:964c08481aec2fe574f0062e342924db2c6b321391aeb73d68853ed42420fd6d \ + --hash=sha256:a24603dd05fb4e3c09d636b881ce347e5f55f925a6b1b4115527308a323b9f8e \ + --hash=sha256:a39890013f6d5b056cc4bfdedc093e322462ece1027a57ef0c636537bdde7531 \ + --hash=sha256:a4fc7b784cf987dbddc300cef70e09a92ed1bce136f7bb723ea79d7e297fe76d \ + --hash=sha256:a56da3aff97cb56fe85d9ca957d1f55dbac7c27da927a86a2a86d8a7e17f80aa \ + --hash=sha256:a93250bd8fae996350c251e1752f2c03335bb8a0a5b0c7e910a593849121a435 \ + --hash=sha256:a96c5225e840f1587f1bac8fa6f67562b38e095341576e82b728a82021f26d62 \ + --hash=sha256:aca21c0a34adee582775da997a600283e012a608a107398d80a42f9a57ad323d \ + --hash=sha256:acbe4b6f1ccd5b90c29d428e849aa4242e51bb6cab0448d5f3c022eb9a25f7b1 \ + --hash=sha256:ad04a3f5384b82933213bba2459f6424decc2823df40098920856bdee5fd6e88 \ + --hash=sha256:afe7c72d3f917b066257f7ff48562e5d462d865a25fbcabf40fca303a9fa8d35 \ + --hash=sha256:b300708c917ce52f6075bdc6e05b07c51a085733650f14b732c087dc26e0aaad \ + --hash=sha256:b398ea66e8ed50451bce5997c430197d5e4b06ac4aa74602717f792d8d8d06e2 \ + --hash=sha256:b3bd0d9632088c63a241f217742b1cf86e2e8ae573e01354775bd5016d12138c \ + --hash=sha256:b5bc0fdbf419493163c5c9cb147c5fbe95b8e25844a74a8807dcb1a125e630cf \ + --hash=sha256:b770f85eab24034e6ef7df04b2bfd9a45048e24f8a808e903441aa5abde8ecdd \ + --hash=sha256:b777cd910ceecd738adc58593d6ed42e73f60ad04ecdb4a841ae410b51c92e0e \ + --hash=sha256:b80eb7cbe62348c61d3e67e17057cddfd6defab168863028146e07d5a8b24a89 \ + --hash=sha256:b8ab0fa653d9225195a8ff924f992f4249c1e6fa0aea563f685e71b81b9fcccf \ + --hash=sha256:bc1991b4cde6c9d3c0bbcb83d5581dc7621bec8c666c095c65b4277233265a82 \ + --hash=sha256:bdb8c5b8e29238ec80727c2ba3b301efd45aa30c6a7001123a6647b8e6f77ea4 \ + --hash=sha256:c52970f7784518d7c82b07a62a26e345d2de8c2bd8ed4774e13342e4b3ff4200 \ + --hash=sha256:c6e65a301fcd19fbfbee3a514cc0014ff3f3b254b9fd65886e8a9d6957fb7bca \ + --hash=sha256:c8444e921bfc3757c475c4f4d7416a7aa69b2d992d5114fe55af21411187ab0d \ + --hash=sha256:cbe93ba1725a8d47d2b9dca6c1f435174859427fbc054d83de52aea5adc65729 \ + --hash=sha256:cde6b9d9ba5007077ee321ec722fa714ebc0cbd9a32ccf0f4dd3cc3f20952d71 \ + --hash=sha256:d36447d21b05f90282a6f98c5a33771805f9222e5d0441d03eb8824e33e5bbb4 \ + --hash=sha256:d861bf326ee7dabc35c532a40384541578cd1ec1e1b7db9f9ecbba56eb76ca22 \ + --hash=sha256:dc1037507810833646481f5729901a154523f98cbebb1157ba3a821012e16402 \ + --hash=sha256:dd789100fc852cffac1449f82af0da139d36d84fd9faa4f79fc4140a88778343 \ + --hash=sha256:de077c468c225d4c18f7188c47d955a16d65f21aab121cbdd98e3e2011002c37 \ + --hash=sha256:e53ed2e9b32674ce96eed80b3b572db9fd87aae6742941fb8e4705e541d861ce \ + --hash=sha256:e6e4b9380ed4758d0cb578b0d1970c3f32dd9e87119378729a5340cb3169f879 \ + --hash=sha256:efe6e200a75a792d37b960457904c4fce7c928a96ae9e5d21d2bd382fe39066e \ + --hash=sha256:f50fed4a9b0c9825ff37cf0bccafd51ff5792090618f7846a7650f21f85579c9 \ + --hash=sha256:f57e8305c281e8c8bc720515540e0580355100c0a7a541105c6cafc5de71daae \ + --hash=sha256:fd84b7f652a5610733400307dc732f57c4a907080bef9520412e6d9b55bc9adc +redis==5.0.7 \ + --hash=sha256:0e479e24da960c690be5d9b96d21f7b918a98c0cf49af3b6fafaa0753f93a0db \ + --hash=sha256:8f611490b93c8109b50adc317b31bfd84fff31def3475b92e7e80bf39f48175b # via django-redis referencing==0.35.1 \ --hash=sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c \ @@ -1225,18 +1376,12 @@ regex==2024.4.28 \ --hash=sha256:fd24fd140b69f0b0bcc9165c397e9b2e89ecbeda83303abf2a072609f60239e2 \ --hash=sha256:fdae0120cddc839eb8e3c15faa8ad541cc6d906d3eb24d82fb041cfe2807bc1e \ --hash=sha256:fe00f4fe11c8a521b173e6324d862ee7ee3412bf7107570c9b564fe1119b56fb -requests==2.32.0 \ - --hash=sha256:f2c3881dddb70d056c5bd7600a4fae312b2a300e39be6a118d30b90bd27262b5 \ - --hash=sha256:fa5490319474c82ef1d2c9bc459d3652e3ae4ef4c4ebdd18a21145a47ca4b6b8 +requests==2.32.3 \ + --hash=sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760 \ + --hash=sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6 # via # coreapi - # django-allauth # opentelemetry-exporter-otlp-proto-http - # requests-oauthlib -requests-oauthlib==2.0.0 \ - --hash=sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36 \ - --hash=sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9 - # via django-allauth rpds-py==0.18.1 \ --hash=sha256:05f3d615099bd9b13ecf2fc9cf2d839ad3f20239c678f461c753e93755d629ee \ --hash=sha256:06d218939e1bf2ca50e6b0ec700ffe755e5216a8230ab3e87c059ebb4ea06afc \ @@ -1340,13 +1485,13 @@ rpds-py==0.18.1 \ # via # jsonschema # referencing -sentry-sdk==2.1.1 \ - --hash=sha256:95d8c0bb41c8b0bc37ab202c2c4a295bb84398ee05f4cdce55051cd75b926ec1 \ - --hash=sha256:99aeb78fb76771513bd3b2829d12613130152620768d00cd3e45ac00cb17950f +sentry-sdk==2.7.0 \ + --hash=sha256:d846a211d4a0378b289ced3c434480945f110d0ede00450ba631fc2852e7a0d4 \ + --hash=sha256:db9594c27a4d21c1ebad09908b1f0dc808ef65c2b89c1c8e7e455143262e37c1 # via django-q-sentry -setuptools==70.0.0 \ - --hash=sha256:54faa7f2e8d2d11bcd2c07bed282eef1046b5c080d1c32add737d7b5817b1ad4 \ - --hash=sha256:f211a66637b8fa059bb28183da127d4e86396c991a942b028c6650d4319c3fd0 +setuptools==70.3.0 \ + --hash=sha256:f171bab1dfbc86b132997f26a119f6056a57950d058587841a0082e8830f9dc5 \ + --hash=sha256:fe384da74336c398e0d956d1cae0669bc02eed936cdb1d49b57de1990dc11ffc # via # django-money # opentelemetry-instrumentation @@ -1359,6 +1504,7 @@ six==1.16.0 \ # via # bleach # html5lib + # isodate # python-dateutil sqlparse==0.5.0 \ --hash=sha256:714d0a4932c059d16189f58ef5411ec2287a4360f17cdd0edd2d09d4c5087c93 \ @@ -1377,9 +1523,9 @@ tinycss2==1.2.1 \ # bleach # cssselect2 # weasyprint -typing-extensions==4.11.0 \ - --hash=sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0 \ - --hash=sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a +typing-extensions==4.12.2 \ + --hash=sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d \ + --hash=sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8 # via # asgiref # drf-spectacular @@ -1392,9 +1538,9 @@ uritemplate==4.1.1 \ # via # coreapi # drf-spectacular -urllib3==2.2.1 \ - --hash=sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d \ - --hash=sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19 +urllib3==2.2.2 \ + --hash=sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472 \ + --hash=sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168 # via # dulwich # requests @@ -1415,9 +1561,9 @@ webencodings==0.5.1 \ # cssselect2 # html5lib # tinycss2 -whitenoise==6.6.0 \ - --hash=sha256:8998f7370973447fac1e8ef6e8ded2c5209a7b1f67c1012866dbcd09681c3251 \ - --hash=sha256:b1f9db9bf67dc183484d760b99f4080185633136a273a03f6436034a41064146 +whitenoise==6.7.0 \ + --hash=sha256:58c7a6cd811e275a6c91af22e96e87da0b1109e9a53bb7464116ef4c963bf636 \ + --hash=sha256:a1ae85e01fdc9815d12fa33f17765bc132ed2c54fa76daf9e39e879dd93566f6 wrapt==1.16.0 \ --hash=sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc \ --hash=sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81 \ @@ -1501,9 +1647,69 @@ xlwt==1.3.0 \ --hash=sha256:a082260524678ba48a297d922cc385f58278b8aa68741596a87de01a9c628b2e \ --hash=sha256:c59912717a9b28f1a3c2a98fd60741014b06b043936dcecbc113eaaada156c88 # via tablib -zipp==3.18.1 \ - --hash=sha256:206f5a15f2af3dbaee80769fb7dc6f249695e940acca08dfb2a4769fe61e538b \ - --hash=sha256:2884ed22e7d8961de1c9a05142eb69a247f120291bc0206a00a7642f09b5b715 +xmlsec==1.3.14 \ + --hash=sha256:004e8a82e26728bf8a60f8ece1ef3ffafdac30ef538139dfe28870e8503ca64a \ + --hash=sha256:03ccba7dacf197850de954666af0221c740a5de631a80136362a1559223fab75 \ + --hash=sha256:0bae37b2920115cf00759ee9fb7841cbdebcef3a8a92734ab93ae8fa41ac581d \ + --hash=sha256:0be3b7a28e54a03b87faf07fb3c6dc3e50a2c79b686718c3ad08300b8bf6bb67 \ + --hash=sha256:1072878301cb9243a54679e0520e6a5be2266c07a28b0ecef9e029d05a90ffcd \ + --hash=sha256:12d90059308bb0c1b94bde065784e6852999d08b91bcb2048c17e62b954acb07 \ + --hash=sha256:147934bd39dfd840663fb6b920ea9201455fa886427975713f1b42d9f20b9b29 \ + --hash=sha256:19c86bab1498e4c2e56d8e2c878f461ccb6e56b67fd7522b0c8fda46d8910781 \ + --hash=sha256:1b9b5de6bc69fdec23147e5f712cb05dc86df105462f254f140d743cc680cc7b \ + --hash=sha256:1eb3dcf244a52f796377112d8f238dbb522eb87facffb498425dc8582a84a6bf \ + --hash=sha256:1fa1311f7489d050dde9028f5a2b5849c2927bb09c9a93491cb2f28fdc563912 \ + --hash=sha256:1fe23c2dd5f5dbcb24f40e2c1061e2672a32aabee7cf8ac5337036a485607d72 \ + --hash=sha256:204d3c586b8bd6f02a5d4c59850a8157205569d40c32567f49576fa5795d897d \ + --hash=sha256:2401e162aaab7d9416c3405bac7a270e5f370988a0f1f46f0f29b735edba87e1 \ + --hash=sha256:28cd9f513cf01dc0c5b9d9f0728714ecde2e7f46b3b6f63de91f4ae32f3008b3 \ + --hash=sha256:2f84a1c509c52773365645a87949081ee9ea9c535cd452048cc8ca4ad3b45666 \ + --hash=sha256:330147ce59fbe56a9be5b2085d739c55a569f112576b3f1b33681f87416eaf33 \ + --hash=sha256:34c61ec0c0e70fda710290ae74b9efe1928d9242ed82c4eecf97aa696cff68e6 \ + --hash=sha256:38e035bf48300b7dbde2dd01d3b8569f8584fc9c73809be13886e6b6c77b74fb \ + --hash=sha256:48e894ad3e7de373f56efc09d6a56f7eae73a8dd4cec8943313134849e9c6607 \ + --hash=sha256:4922afa9234d1c5763950b26c328a5320019e55eb6000272a79dfe54fee8e704 \ + --hash=sha256:4af81ce8044862ec865782efd353d22abdcd95b92364eef3c934de57ae6d5852 \ + --hash=sha256:4dea6df3ffcb65d0b215678c3a0fe7bbc66785d6eae81291296e372498bad43a \ + --hash=sha256:4edd8db4df04bbac9c4a5ab4af855b74fe2bf2c248d07cac2e6d92a485f1a685 \ + --hash=sha256:4fac2a787ae3b9fb761f9aec6b9f10f2d1c1b87abb574ebd8ff68435bdc97e3d \ + --hash=sha256:57fed3bc7943681c9ed4d2221600ab440f060d8d1a8f92f346f2b41effe175b8 \ + --hash=sha256:6566434e2e5c58e472362a6187f208601f1627a148683a6f92bd16479f1d9e20 \ + --hash=sha256:6679cec780386d848e7351d4b0de92c4483289ea4f0a2187e216159f939a4c6b \ + --hash=sha256:73eabf5ef58189d81655058cf328c1dfa9893d89f1bff5fc941481f08533f338 \ + --hash=sha256:774d5d1e45f07f953c1cc14fd055c1063f0725f7248b6b0e681f59fd8638934d \ + --hash=sha256:77749b338503fb6e151052c664064b34264f4168e2cb0cca1de78b7e5312a783 \ + --hash=sha256:7799a9ff3593f9dd43464e18b1a621640bffc40456c47c23383727f937dca7fc \ + --hash=sha256:7882963e9cb9c0bd0e8c2715a29159a366417ff4a30d8baf42b05bc5cf249446 \ + --hash=sha256:7e8e0171916026cbe8e2022c959558d02086655fd3c3466f2bc0451b09cf9ee8 \ + --hash=sha256:82ac81deb7d7bf5cc8a748148948e5df5386597ff43fb92ec651cc5c7addb0e7 \ + --hash=sha256:86ff7b2711557c1087b72b0a1a88d82eafbf2a6d38b97309a6f7101d4a7041c3 \ + --hash=sha256:934f804f2f895bcdb86f1eaee236b661013560ee69ec108d29cdd6e5f292a2d9 \ + --hash=sha256:995e87acecc263a2f6f2aa3cc204268f651cac8f4d7a2047f11b2cd49979cc38 \ + --hash=sha256:a487c3d144f791c32f5e560aa27a705fba23171728b8a8511f36de053ff6bc93 \ + --hash=sha256:a98eadfcb0c3b23ccceb7a2f245811f8d784bd287640dcfe696a26b9db1e2fc0 \ + --hash=sha256:ad1634cabe0915fe2a12e142db0ed2daf5be80cbe3891a2cecbba0750195cc6b \ + --hash=sha256:b109cdf717257fd4daa77c1d3ec8a3fb2a81318a6d06a36c55a8a53ae381ae5e \ + --hash=sha256:b6dd86f440fec9242515c64f0be93fec8b4289287db1f6de2651eee9995aaecb \ + --hash=sha256:b7ba2ea38e3d9efa520b14f3c0b7d99a7c055244ae5ba8bc9f4ca73b18f3a215 \ + --hash=sha256:ba3b39c493e3b04354615068a3218f30897fcc2f42c6d8986d0c1d63aca87782 \ + --hash=sha256:bd10ca3201f164482775a7ce61bf7ee9aade2e7d032046044dd0f6f52c91d79d \ + --hash=sha256:bddd2a2328b4e08c8a112e06cf2cd2b4d281f4ad94df15b4cef18f06cdc49d78 \ + --hash=sha256:c12900e1903e289deb84eb893dca88591d6884d3e3cda4fb711b8812118416e8 \ + --hash=sha256:c42735cc68fdb4c6065cf0a0701dfff3a12a1734c63a36376349af9a5481f27b \ + --hash=sha256:c4d41c83c8a2b8d8030204391ebeb6174fbdb044f0331653c4b5a4ce4150bcc0 \ + --hash=sha256:ce4e165a1436697e5e39587c4fba24db4545a5c9801e0d749f1afd09ad3ab901 \ + --hash=sha256:cf35a25be3eb6263b2e0544ba26294651113fab79064f994d347a2ca5973e8e2 \ + --hash=sha256:d0762f4232bce2c7f6c0af329db8b821b4460bbe123a2528fb5677d03db7a4b5 \ + --hash=sha256:dba457ff87c39cbae3c5020475a728d24bbd9d00376df9af9724cd3bb59ff07a \ + --hash=sha256:df4aa0782a53032fd35e18dcd6d328d6126324bfcfdef0cb5c2856f25b4b6f94 \ + --hash=sha256:e6cbc914d77678db0c8bc39e723d994174633d18f9d6be4665ec29cce978a96d \ + --hash=sha256:e732a75fcb6b84872b168f972fbbf3749baf76308635f14015d1d35ed0c5719c \ + --hash=sha256:ed4034939d8566ccdcd3b4e4f23c63fd807fb8763ae5668d59a19e11640a8242 + # via python3-saml +zipp==3.19.2 \ + --hash=sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19 \ + --hash=sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c # via importlib-metadata zopfli==0.2.3 \ --hash=sha256:0574372283befa5af98fb31407e1fe6822f2f9c437ef69e7fa260e49022d8a65 \ diff --git a/src/frontend/.linguirc b/src/frontend/.linguirc index db0ade6fbe..5295430412 100644 --- a/src/frontend/.linguirc +++ b/src/frontend/.linguirc @@ -1,5 +1,6 @@ { "locales": [ + "ar", "bg", "cs", "da", @@ -8,6 +9,7 @@ "en", "es", "es-mx", + "et", "fa", "fi", "fr", diff --git a/src/frontend/package.json b/src/frontend/package.json index af2378e32b..6abad83d32 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -11,79 +11,79 @@ "compile": "lingui compile --typescript" }, "dependencies": { - "@codemirror/autocomplete": ">=6.0.0", + "@codemirror/autocomplete": ">=6.16.3", "@codemirror/lang-liquid": "^6.2.1", - "@codemirror/language": ">=6.0.0", - "@codemirror/lint": ">=6.0.0", + "@codemirror/language": ">=6.10.2", + "@codemirror/lint": ">=6.8.1", "@codemirror/search": ">=6.0.0", "@codemirror/state": "^6.0.0", "@codemirror/theme-one-dark": ">=6.0.0", - "@codemirror/view": ">=6.0.0", + "@codemirror/view": ">=6.28.3", "@emotion/react": "^11.11.4", "@fortawesome/fontawesome-svg-core": "^6.5.2", "@fortawesome/free-regular-svg-icons": "^6.5.2", "@fortawesome/free-solid-svg-icons": "^6.5.2", - "@fortawesome/react-fontawesome": "^0.2.0", - "@lingui/core": "^4.10.0", - "@lingui/react": "^4.10.0", - "@mantine/carousel": "^7.8.0", - "@mantine/charts": "^7.10.1", - "@mantine/core": "^7.10.0", - "@mantine/dates": "^7.8.0", - "@mantine/dropzone": "^7.8.0", - "@mantine/form": "^7.8.0", - "@mantine/hooks": "^7.8.0", - "@mantine/modals": "^7.8.0", - "@mantine/notifications": "^7.8.0", - "@mantine/spotlight": "^7.8.0", - "@mantine/vanilla-extract": "^7.8.0", - "@mdxeditor/editor": "^3.0.7", + "@fortawesome/react-fontawesome": "^0.2.2", + "@lingui/core": "^4.11.1", + "@lingui/react": "^4.11.1", + "@mantine/carousel": "^7.11.0", + "@mantine/charts": "^7.11.0", + "@mantine/core": "^7.11.0", + "@mantine/dates": "^7.11.0", + "@mantine/dropzone": "^7.11.0", + "@mantine/form": "^7.11.0", + "@mantine/hooks": "^7.11.0", + "@mantine/modals": "^7.11.0", + "@mantine/notifications": "^7.11.0", + "@mantine/spotlight": "^7.11.0", + "@mantine/vanilla-extract": "^7.11.0", + "@mdxeditor/editor": "^3.6.1", "@naisutech/react-tree": "^3.1.0", - "@sentry/react": "^7.110.0", - "@tabler/icons-react": "^3.2.0", - "@tanstack/react-query": "^5.29.2", - "@uiw/codemirror-theme-vscode": "^4.21.25", - "@uiw/react-codemirror": "^4.21.25", + "@sentry/react": "^8.13.0", + "@tabler/icons-react": "^3.7.0", + "@tanstack/react-query": "^5.49.2", + "@uiw/codemirror-theme-vscode": "^4.22.2", + "@uiw/react-codemirror": "^4.22.2", "@uiw/react-split": "^5.9.3", - "@vanilla-extract/css": "^1.14.2", - "axios": "^1.6.8", + "@vanilla-extract/css": "^1.15.3", + "axios": "^1.7.2", "clsx": "^2.1.0", "codemirror": ">=6.0.0", "dayjs": "^1.11.10", - "embla-carousel-react": "^8.0.2", + "embla-carousel-react": "^8.1.6", "html5-qrcode": "^2.3.8", - "mantine-datatable": "^7.8.1", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "mantine-datatable": "^7.11.1", + "react": "^18.3.1", + "react-dom": "^18.3.1", "react-grid-layout": "^1.4.4", "react-hook-form": "^7.51.3", - "react-is": "^18.2.0", - "react-router-dom": "^6.22.3", + "react-is": "^18.3.1", + "react-router-dom": "^6.24.0", "react-select": "^5.8.0", "recharts": "^2.12.4", - "styled-components": "^6.1.8", - "zustand": "^4.5.2" + "styled-components": "^6.1.11", + "zustand": "^4.5.4" }, "devDependencies": { - "@babel/core": "^7.24.4", - "@babel/preset-react": "^7.24.1", - "@babel/preset-typescript": "^7.24.1", - "@lingui/cli": "^4.10.0", - "@lingui/macro": "^4.10.0", - "@playwright/test": "^1.43.1", - "@types/node": "^20.12.7", - "@types/react": "^18.2.79", - "@types/react-dom": "^18.2.25", + "@babel/core": "^7.24.7", + "@babel/preset-react": "^7.24.7", + "@babel/preset-typescript": "^7.24.7", + "@lingui/cli": "^4.11.1", + "@lingui/macro": "^4.11.1", + "@playwright/test": "^1.45.0", + "@types/node": "^20.14.9", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", "@types/react-grid-layout": "^1.3.5", "@types/react-router-dom": "^5.3.3", - "@vanilla-extract/vite-plugin": "^4.0.7", - "@vitejs/plugin-react": "^4.2.1", + "@vanilla-extract/vite-plugin": "^4.0.12", + "@vitejs/plugin-react": "^4.3.1", "babel-plugin-macros": "^3.1.0", - "nyc": "^15.1.0", - "rollup-plugin-license": "^3.3.1", - "typescript": "^5.4.5", - "vite": "^5.2.8", + "nyc": "^17.0.0", + "rollup-plugin-license": "^3.5.1", + "typescript": "^5.5.2", + "vite": "^5.3.2", "vite-plugin-babel-macros": "^1.0.6", - "vite-plugin-istanbul": "^6.0.0" + "vite-plugin-istanbul": "^6.0.2" } } diff --git a/src/frontend/src/App.tsx b/src/frontend/src/App.tsx index 1adaf03d04..24818dccbe 100644 --- a/src/frontend/src/App.tsx +++ b/src/frontend/src/App.tsx @@ -29,4 +29,10 @@ export function setApiDefaults() { } } -export const queryClient = new QueryClient(); +export const queryClient = new QueryClient({ + defaultOptions: { + queries: { + refetchOnWindowFocus: false + } + } +}); diff --git a/src/frontend/src/components/Boundary.tsx b/src/frontend/src/components/Boundary.tsx index 6f317efb03..1ad6529883 100644 --- a/src/frontend/src/components/Boundary.tsx +++ b/src/frontend/src/components/Boundary.tsx @@ -26,7 +26,7 @@ export function Boundary({ fallback?: React.ReactElement | FallbackRender | undefined; }): ReactNode { const onError = useCallback( - (error: Error, componentStack: string, eventId: string) => { + (error: unknown, componentStack: string | undefined, eventId: string) => { console.error(`Error rendering component: ${label}`); console.error(error, componentStack); }, diff --git a/src/frontend/src/components/buttons/ActionButton.tsx b/src/frontend/src/components/buttons/ActionButton.tsx index 089cb98995..dce1209dc1 100644 --- a/src/frontend/src/components/buttons/ActionButton.tsx +++ b/src/frontend/src/components/buttons/ActionButton.tsx @@ -43,7 +43,7 @@ export function ActionButton(props: ActionButtonProps) { props.tooltip ?? props.text ?? '' )}`} onClick={props.onClick ?? notYetImplemented} - variant={props.variant ?? 'light'} + variant={props.variant ?? 'transparent'} > {props.icon} diff --git a/src/frontend/src/components/buttons/CopyButton.tsx b/src/frontend/src/components/buttons/CopyButton.tsx index bf51eebd0b..3ac02e5da2 100644 --- a/src/frontend/src/components/buttons/CopyButton.tsx +++ b/src/frontend/src/components/buttons/CopyButton.tsx @@ -20,8 +20,12 @@ export function CopyButton({ size="compact-md" > - {label &&
     
    } - {label && label} + {label && ( + <> +
     
    + {label} + + )} )} diff --git a/src/frontend/src/components/buttons/PrintingActions.tsx b/src/frontend/src/components/buttons/PrintingActions.tsx index 3f14e49eeb..f355f4f00c 100644 --- a/src/frontend/src/components/buttons/PrintingActions.tsx +++ b/src/frontend/src/components/buttons/PrintingActions.tsx @@ -1,6 +1,7 @@ import { t } from '@lingui/macro'; import { notifications } from '@mantine/notifications'; import { IconPrinter, IconReport, IconTags } from '@tabler/icons-react'; +import { useQuery } from '@tanstack/react-query'; import { useCallback, useEffect, useMemo, useState } from 'react'; import { api } from '../../App'; @@ -32,31 +33,28 @@ export function PrintingActions({ const [pluginKey, setPluginKey] = useState(''); - const loadFields = useCallback(() => { - if (!enableLabels) { - return; - } - - api - .options(apiUrl(ApiEndpoints.label_print), { - params: { - plugin: pluginKey || undefined - } - }) - .then((response: any) => { - setExtraFields(extractAvailableFields(response, 'POST') || {}); - }) - .catch(() => {}); - }, [enableLabels, pluginKey]); - - useEffect(() => { - loadFields(); - }, [loadFields, pluginKey]); - - const [extraFields, setExtraFields] = useState({}); + // Fetch available printing fields via OPTIONS request + const printingFields = useQuery({ + enabled: enableLabels, + queryKey: ['printingFields', modelType, pluginKey], + gcTime: 500, + queryFn: () => + api + .options(apiUrl(ApiEndpoints.label_print), { + params: { + plugin: pluginKey || undefined + } + }) + .then((response: any) => { + return extractAvailableFields(response, 'POST') || {}; + }) + .catch(() => { + return {}; + }) + }); const labelFields: ApiFormFieldSet = useMemo(() => { - let fields: ApiFormFieldSet = extraFields; + let fields: ApiFormFieldSet = printingFields.data || {}; // Override field values fields['template'] = { @@ -88,7 +86,7 @@ export function PrintingActions({ }; return fields; - }, [extraFields, items, loadFields]); + }, [printingFields.data, items]); const labelModal = useCreateApiFormModal({ url: apiUrl(ApiEndpoints.label_print), @@ -98,6 +96,7 @@ export function PrintingActions({ onClose: () => { setPluginKey(''); }, + submitText: t`Print`, successMessage: t`Label printing completed successfully`, onFormSuccess: (response: any) => { setPluginKey(''); @@ -136,6 +135,7 @@ export function PrintingActions({ value: items } }, + submitText: t`Generate`, successMessage: t`Report printing completed successfully`, onFormSuccess: (response: any) => { if (!response.complete) { diff --git a/src/frontend/src/components/buttons/YesNoButton.tsx b/src/frontend/src/components/buttons/YesNoButton.tsx index ec12af7f90..d18b492857 100644 --- a/src/frontend/src/components/buttons/YesNoButton.tsx +++ b/src/frontend/src/components/buttons/YesNoButton.tsx @@ -22,6 +22,7 @@ export function PassFailButton({ variant="filled" radius="lg" size="sm" + style={{ maxWidth: '50px' }} > {v ? pass : fail} diff --git a/src/frontend/src/components/details/Details.tsx b/src/frontend/src/components/details/Details.tsx index 2819e3245c..d3675bceaa 100644 --- a/src/frontend/src/components/details/Details.tsx +++ b/src/frontend/src/components/details/Details.tsx @@ -30,17 +30,6 @@ import { StylishText } from '../items/StylishText'; import { getModelInfo } from '../render/ModelType'; import { StatusRenderer } from '../render/StatusRenderer'; -export type PartIconsType = { - assembly: boolean; - template: boolean; - component: boolean; - trackable: boolean; - purchaseable: boolean; - saleable: boolean; - virtual: boolean; - active: boolean; -}; - export type DetailsField = | { hidden?: boolean; @@ -400,10 +389,10 @@ export function DetailsTableField({ > - + {field.label} - + diff --git a/src/frontend/src/components/details/PartIcons.tsx b/src/frontend/src/components/details/PartIcons.tsx deleted file mode 100644 index 5a39a85be1..0000000000 --- a/src/frontend/src/components/details/PartIcons.tsx +++ /dev/null @@ -1,90 +0,0 @@ -import { Trans, t } from '@lingui/macro'; -import { Badge, Tooltip } from '@mantine/core'; - -import { InvenTreeIcon, InvenTreeIconType } from '../../functions/icons'; - -/** - * Fetches and wraps an InvenTreeIcon in a flex div - * @param icon name of icon - * - */ -function PartIcon(icon: InvenTreeIconType) { - return ( -
    - -
    - ); -} - -/** - * Generates a table cell with Part icons. - * Only used for Part Model Details - */ -export function PartIcons({ part }: { part: any }) { - return ( -
    - ); -} diff --git a/src/frontend/src/components/editors/NotesEditor.tsx b/src/frontend/src/components/editors/NotesEditor.tsx index c849311f99..30343af5fa 100644 --- a/src/frontend/src/components/editors/NotesEditor.tsx +++ b/src/frontend/src/components/editors/NotesEditor.tsx @@ -142,7 +142,12 @@ export default function NotesEditor({ // Callback to save notes to the server const saveNotes = useCallback(() => { - const markdown = ref.current?.getMarkdown() ?? ''; + const markdown = ref.current?.getMarkdown(); + + if (!noteUrl || markdown === undefined) { + return; + } + api .patch(noteUrl, { notes: markdown }) .then(() => { @@ -163,7 +168,7 @@ export default function NotesEditor({ id: 'notes' }); }); - }, [noteUrl, ref.current]); + }, [api, noteUrl, ref.current]); const plugins: any[] = useMemo(() => { let plg = [ diff --git a/src/frontend/src/components/editors/TemplateEditor/PdfPreview/PdfPreview.tsx b/src/frontend/src/components/editors/TemplateEditor/PdfPreview/PdfPreview.tsx index c38e65f8a0..c0e48ae0a5 100644 --- a/src/frontend/src/components/editors/TemplateEditor/PdfPreview/PdfPreview.tsx +++ b/src/frontend/src/components/editors/TemplateEditor/PdfPreview/PdfPreview.tsx @@ -81,7 +81,9 @@ export const PdfPreviewComponent: PreviewAreaComponent = forwardRef( Preview not available, click "Reload Preview". )} - {pdfUrl &&
    ${batch_input}
    {% trans "Packaging" %}${packaging_input}
    {% trans "Serials" %} ${sn_input}
    {% trans "Note" %}${note_input}
    ${buttons}
    {% trans "Batch" %}${batch_input}
    {% trans "Packaging" %}${packaging_input}
    -
    - {!part.active && ( - - -
    - {' '} - Inactive -
    -
    -
    - )} - {part.template && ( - - )} - {part.assembly && ( - - )} - {part.component && ( - - )} - {part.trackable && ( - - )} - {part.purchaseable && ( - - )} - {part.saleable && ( - - )} - {part.virtual && ( - - -
    - {' '} - Virtual -
    -
    -
    - )} -
    -